Files
windowmanager/utils/include/future.h
T
xiaojianfeng fd69235220 add future in AbstractDisplayController
Signed-off-by: xiaojianfeng <xiaojianfeng3@huawei.com>
Change-Id: Ife15eaf8916b5c2af4c2edc51cbece369d5393ae
2022-01-26 11:55:48 +08:00

55 lines
1.6 KiB
C++

/*
* Copyright (c) 2022 Huawei Device Co., Ltd.
* 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 p ermissions and
* limitations under the License.
*/
#ifndef OHOS_WM_INCLUDE_FUTURE_H
#define OHOS_WM_INCLUDE_FUTURE_H
#include "hilog/log.h"
namespace OHOS::Rosen {
template<class T>
class Future {
constexpr static HiviewDFX::HiLogLabel LABEL = {LOG_CORE, 0, "Future"};
public:
T GetResult(long timeOut)
{
std::unique_lock <std::mutex> lock(mutex_);
if (!conditionVariable_.wait_for(lock, std::chrono::milliseconds(timeOut), [this] { return IsReady(); })) {
OHOS::HiviewDFX::HiLog::Error(LABEL, "wait for %{public}ld, timeout.", timeOut);
}
return FetchResult();
}
protected:
virtual bool IsReady() = 0;
virtual T FetchResult() = 0;
virtual void Call(T) = 0;
void FutureCall(T t)
{
std::unique_lock <std::mutex> lock(mutex_);
Call(t);
conditionVariable_.notify_one();
}
private:
std::condition_variable conditionVariable_;
std::mutex mutex_;
};
} // namespace OHOS::Rosen
#endif // OHOS_WM_INCLUDE_FUTURE_H