mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-20 20:20:13 -04:00
583d44380b
Signed-off-by: l00574490 <liuqi149@huawei.com> Change-Id: I66b20e3148ddc2bab00b38b8a0e1d0f37e6764f3
111 lines
3.7 KiB
C++
111 lines
3.7 KiB
C++
/*
|
|
* Copyright (c) 2021-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 permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "vsync_station.h"
|
|
|
|
#include "transaction/rs_interfaces.h"
|
|
#include "window_manager_hilog.h"
|
|
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
namespace {
|
|
constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, HILOG_DOMAIN_WINDOW, "VsyncStation"};
|
|
const std::string VSYNC_TIME_OUT_TASK = "vsync_time_out_task";
|
|
constexpr int64_t VSYNC_TIME_OUT_MILLISECONDS = 600;
|
|
}
|
|
WM_IMPLEMENT_SINGLE_INSTANCE(VsyncStation)
|
|
|
|
void VsyncStation::RequestVsync(const std::shared_ptr<VsyncCallback>& vsyncCallback)
|
|
{
|
|
{
|
|
std::lock_guard<std::mutex> lock(mtx_);
|
|
vsyncCallbacks_.insert(vsyncCallback);
|
|
|
|
if (!hasInitVsyncReceiver_ || !vsyncHandler_) {
|
|
auto mainEventRunner = AppExecFwk::EventRunner::GetMainEventRunner();
|
|
if (mainEventRunner != nullptr && isMainHandlerAvailable_) {
|
|
WLOGFI("MainEventRunner is available");
|
|
vsyncHandler_ = std::make_shared<AppExecFwk::EventHandler>(mainEventRunner);
|
|
} else {
|
|
WLOGFI("MainEventRunner is not available");
|
|
if (!vsyncHandler_) {
|
|
vsyncHandler_ = std::make_shared<AppExecFwk::EventHandler>(
|
|
AppExecFwk::EventRunner::Create(VSYNC_THREAD_ID));
|
|
}
|
|
}
|
|
auto& rsClient = OHOS::Rosen::RSInterfaces::GetInstance();
|
|
while (receiver_ == nullptr) {
|
|
receiver_ = rsClient.CreateVSyncReceiver("WM_" + std::to_string(::getpid()), vsyncHandler_);
|
|
}
|
|
receiver_->Init();
|
|
hasInitVsyncReceiver_ = true;
|
|
}
|
|
if (hasRequestedVsync_) {
|
|
return;
|
|
}
|
|
hasRequestedVsync_ = true;
|
|
vsyncCount_++;
|
|
if (vsyncCount_ & 0x01) { // write log every 2 vsync
|
|
WLOGFD("Request next vsync.");
|
|
}
|
|
vsyncHandler_->RemoveTask(VSYNC_TIME_OUT_TASK);
|
|
vsyncHandler_->PostTask(vsyncTimeoutCallback_, VSYNC_TIME_OUT_TASK, VSYNC_TIME_OUT_MILLISECONDS);
|
|
}
|
|
receiver_->RequestNextVSync(frameCallback_);
|
|
}
|
|
|
|
void VsyncStation::RemoveCallback()
|
|
{
|
|
std::lock_guard<std::mutex> lock(mtx_);
|
|
WLOGFI("[WM] Remove Vsync callback");
|
|
vsyncCallbacks_.clear();
|
|
}
|
|
|
|
void VsyncStation::VsyncCallbackInner(int64_t timestamp)
|
|
{
|
|
std::unordered_set<std::shared_ptr<VsyncCallback>> vsyncCallbacks;
|
|
{
|
|
std::lock_guard<std::mutex> lock(mtx_);
|
|
hasRequestedVsync_ = false;
|
|
vsyncCallbacks = vsyncCallbacks_;
|
|
vsyncCallbacks_.clear();
|
|
vsyncHandler_->RemoveTask(VSYNC_TIME_OUT_TASK);
|
|
if (vsyncCount_ & 0x01) { // write log every 2 vsync
|
|
WLOGFD("[WM] On vsync callback.");
|
|
}
|
|
}
|
|
for (const auto& callback: vsyncCallbacks) {
|
|
callback->onCallback(timestamp);
|
|
}
|
|
}
|
|
|
|
void VsyncStation::OnVsync(int64_t timestamp, void* client)
|
|
{
|
|
auto vsyncClient = static_cast<VsyncStation*>(client);
|
|
if (vsyncClient) {
|
|
vsyncClient->VsyncCallbackInner(timestamp);
|
|
} else {
|
|
WLOGFE("VsyncClient is null");
|
|
}
|
|
}
|
|
|
|
void VsyncStation::OnVsyncTimeOut()
|
|
{
|
|
std::lock_guard<std::mutex> lock(mtx_);
|
|
WLOGFI("[WM] Vsync time out");
|
|
hasRequestedVsync_ = false;
|
|
}
|
|
}
|
|
} |