1 /*
2 * Copyright (c) 2021 Huawei Device Co., Ltd.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16 #include "core/common/window.h"
17
18 #include "base/log/log.h"
19 #include "base/utils/macros.h"
20
21 namespace OHOS::Ace {
22
Window(std::unique_ptr<PlatformWindow> platformWindow)23 Window::Window(std::unique_ptr<PlatformWindow> platformWindow) : platformWindow_(std::move(platformWindow))
24 {
25 if (platformWindow_ != nullptr) {
26 auto&& callback = [this](uint64_t nanoTimestamp, uint32_t frameCount) {
27 OnVsync(nanoTimestamp, frameCount);
28 };
29 platformWindow_->RegisterVsyncCallback(callback);
30 LOGI("Window Created success.");
31 } else {
32 LOGE("Window Created failed, platformWindow is nullptr.");
33 }
34 }
35
RequestFrame()36 void Window::RequestFrame()
37 {
38 if (!onShow_) {
39 LOGD("window is not show, stop request frame");
40 return;
41 }
42 if (!isRequestVsync_ && platformWindow_ != nullptr) {
43 LOGD("request next vsync");
44 platformWindow_->RequestFrame();
45 isRequestVsync_ = true;
46 }
47 }
48
SetRootRenderNode(const RefPtr<RenderNode> & root)49 void Window::SetRootRenderNode(const RefPtr<RenderNode>& root)
50 {
51 if (platformWindow_ == nullptr) {
52 LOGE("SetRootRenderNode failed, platformWindow is nullptr.");
53 return;
54 }
55 platformWindow_->SetRootRenderNode(root);
56 }
57
OnVsync(uint64_t nanoTimestamp,uint32_t frameCount)58 void Window::OnVsync(uint64_t nanoTimestamp, uint32_t frameCount)
59 {
60 isRequestVsync_ = false;
61
62 for (auto& callback : callbacks_) {
63 if (callback) {
64 callback(nanoTimestamp, frameCount);
65 }
66 }
67 }
68
69 } // namespace OHOS::Ace
70