Files
windowmanager/wmserver/src/window_manager_service.cpp
T
dubj ca106e3778 Add Drag interface
Signed-off-by: dubj <dubingjian@huawei.com>
Change-Id: If5b6876a72bb609190d7d697671f0092b1ff7140
2022-02-08 14:39:51 +08:00

326 lines
12 KiB
C++

/*
* Copyright (c) 2021 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 "window_manager_service.h"
#include <cinttypes>
#include <ipc_skeleton.h>
#include <system_ability_definition.h>
#include <ability_manager_client.h>
#include "dm_common.h"
#include "display_manager_service_inner.h"
#include "drag_controller.h"
#include "singleton_container.h"
#include "window_manager_agent_controller.h"
#include "window_inner_manager.h"
#include "window_manager_hilog.h"
#include "wm_common.h"
#include "wm_trace.h"
namespace OHOS {
namespace Rosen {
namespace {
constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, 0, "WindowManagerService"};
}
WM_IMPLEMENT_SINGLE_INSTANCE(WindowManagerService)
const bool REGISTER_RESULT = SystemAbility::MakeAndRegisterAbility(&SingletonContainer::Get<WindowManagerService>());
WindowManagerService::WindowManagerService() : SystemAbility(WINDOW_MANAGER_SERVICE_ID, true)
{
windowRoot_ = new WindowRoot(mutex_,
std::bind(&WindowManagerService::OnWindowEvent, this, std::placeholders::_1, std::placeholders::_2));
inputWindowMonitor_ = new InputWindowMonitor(windowRoot_);
windowController_ = new WindowController(windowRoot_, inputWindowMonitor_);
snapshotController_ = new SnapshotController(windowRoot_);
dragController_ = new DragController(windowRoot_);
}
void WindowManagerService::OnStart()
{
WLOGFI("WindowManagerService::OnStart start");
if (!Init()) {
return;
}
RegisterSnapshotHandler();
SingletonContainer::Get<WindowInnerManager>().Init();
sptr<IDisplayChangeListener> listener = new DisplayChangeListener();
DisplayManagerServiceInner::GetInstance().RegisterDisplayChangeListener(listener);
}
void WindowManagerService::RegisterSnapshotHandler()
{
if (!snapshotController_) {
snapshotController_ = new SnapshotController(windowRoot_);
}
if (AAFwk::AbilityManagerClient::GetInstance()->RegisterSnapshotHandler(snapshotController_) != ERR_OK) {
WLOGFW("WindowManagerService::RegisterSnapshotHandler failed, create async thread!");
auto fun = [this]() {
WLOGFI("WindowManagerService::RegisterSnapshotHandler async thread enter!");
int counter = 0;
while (AAFwk::AbilityManagerClient::GetInstance()->RegisterSnapshotHandler(snapshotController_) != ERR_OK) {
usleep(10000); // 10000us equals to 10ms
counter++;
if (counter >= 2000) { // wait for 2000 * 10ms = 20s
WLOGFE("WindowManagerService::RegisterSnapshotHandler timeout!");
return;
}
}
WLOGFI("WindowManagerService::RegisterSnapshotHandler async thread register handler successfully!");
};
std::thread thread(fun);
thread.detach();
WLOGFI("WindowManagerService::RegisterSnapshotHandler async thread has been detached!");
} else {
WLOGFI("WindowManagerService::RegisterSnapshotHandler OnStart succeed!");
}
}
bool WindowManagerService::Init()
{
WLOGFI("WindowManagerService::Init start");
bool ret = Publish(this);
if (!ret) {
WLOGFW("WindowManagerService::Init failed");
return false;
}
WLOGFI("WindowManagerService::Init success");
return true;
}
void WindowManagerService::OnStop()
{
SingletonContainer::Get<WindowInnerManager>().SendMessage(INNER_WM_DESTROY_THREAD);
WLOGFI("ready to stop service.");
}
WMError WindowManagerService::CreateWindow(sptr<IWindow>& window, sptr<WindowProperty>& property,
const std::shared_ptr<RSSurfaceNode>& surfaceNode, uint32_t& windowId)
{
WM_SCOPED_TRACE("wms:CreateWindow(%d)", windowId);
if (window == nullptr || property == nullptr || surfaceNode == nullptr) {
WLOGFE("window is invalid");
return WMError::WM_ERROR_NULLPTR;
}
if ((!window) || (!window->AsObject())) {
WLOGFE("failed to get window agent");
return WMError::WM_ERROR_NULLPTR;
}
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->CreateWindow(window, property, surfaceNode, windowId);
}
WMError WindowManagerService::AddWindow(sptr<WindowProperty>& property)
{
Rect rect = property->GetWindowRect();
uint32_t windowId = property->GetWindowId();
WLOGFI("[WMS] Add: %{public}5d %{public}4d %{public}4d %{public}4d [%{public}4d %{public}4d " \
"%{public}4d %{public}4d]", windowId, property->GetWindowType(), property->GetWindowMode(),
property->GetWindowFlags(), rect.posX_, rect.posY_, rect.width_, rect.height_);
WM_SCOPED_TRACE("wms:AddWindow(%d)", windowId);
std::lock_guard<std::recursive_mutex> lock(mutex_);
WMError res = windowController_->AddWindowNode(property);
system::SetParameter("persist.window.boot.inited", "1");
if (property->GetWindowType() == WindowType::WINDOW_TYPE_DRAGGING_EFFECT) {
dragController_->StartDrag(windowId);
}
return res;
}
WMError WindowManagerService::RemoveWindow(uint32_t windowId)
{
WLOGFI("[WMS] Remove: %{public}d", windowId);
WM_SCOPED_TRACE("wms:RemoveWindow(%d)", windowId);
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->RemoveWindowNode(windowId);
}
WMError WindowManagerService::DestroyWindow(uint32_t windowId)
{
WLOGFI("[WMS] Destroy: %{public}d", windowId);
WM_SCOPED_TRACE("wms:DestroyWindow(%d)", windowId);
std::lock_guard<std::recursive_mutex> lock(mutex_);
auto node = windowRoot_->GetWindowNode(windowId);
if (node != nullptr && node->GetWindowType() == WindowType::WINDOW_TYPE_DRAGGING_EFFECT) {
dragController_->FinishDrag(windowId);
}
return windowController_->DestroyWindow(windowId);
}
WMError WindowManagerService::MoveTo(uint32_t windowId, int32_t x, int32_t y)
{
WLOGFI("[WMS] MoveTo: %{public}d [%{public}d, %{public}d]", windowId, x, y);
WM_SCOPED_TRACE("wms:MoveTo");
std::lock_guard<std::recursive_mutex> lock(mutex_);
WMError res = windowController_->MoveTo(windowId, x, y);
if (res == WMError::WM_OK) {
dragController_->UpdateDragInfo(windowId);
}
return res;
}
WMError WindowManagerService::Resize(uint32_t windowId, uint32_t width, uint32_t height)
{
WLOGFI("[WMS] Resize: %{public}d [%{public}d, %{public}d]", windowId, width, height);
WM_SCOPED_TRACE("wms:Resize");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->Resize(windowId, width, height);
}
WMError WindowManagerService::Drag(uint32_t windowId, const Rect& rect)
{
WLOGFI("[WMS] Drag: %{public}d [%{public}d, %{public}d, %{public}d, %{public}d]",
windowId, rect.posX_, rect.posY_, rect.width_, rect.height_);
WM_SCOPED_TRACE("wms:Drag");
std::lock_guard<std::recursive_mutex> lock(mutex_);
WMError res = windowController_->Drag(windowId, rect);
if (res == WMError::WM_OK) {
inputWindowMonitor_->UpdateInputWindow(windowId);
}
return res;
}
WMError WindowManagerService::RequestFocus(uint32_t windowId)
{
WLOGFI("[WMS] RequestFocus: %{public}d", windowId);
WM_SCOPED_TRACE("wms:RequestFocus");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->RequestFocus(windowId);
}
WMError WindowManagerService::SetWindowMode(uint32_t windowId, WindowMode mode)
{
WM_SCOPED_TRACE("wms:SetWindowMode");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->SetWindowMode(windowId, mode);
}
WMError WindowManagerService::SetWindowType(uint32_t windowId, WindowType type)
{
WM_SCOPED_TRACE("wms:SetWindowType");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->SetWindowType(windowId, type);
}
WMError WindowManagerService::SetWindowFlags(uint32_t windowId, uint32_t flags)
{
WM_SCOPED_TRACE("wms:SetWindowFlags");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->SetWindowFlags(windowId, flags);
}
WMError WindowManagerService::SetSystemBarProperty(uint32_t windowId, WindowType type, const SystemBarProperty& prop)
{
WM_SCOPED_TRACE("wms:SetSystemBarProperty");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->SetSystemBarProperty(windowId, type, prop);
}
WMError WindowManagerService::SaveAbilityToken(const sptr<IRemoteObject>& abilityToken, uint32_t windowId)
{
WLOGFI("[WMS] SaveAbilityToken: %{public}d", windowId);
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->SaveAbilityToken(abilityToken, windowId);
}
std::vector<Rect> WindowManagerService::GetAvoidAreaByType(uint32_t windowId, AvoidAreaType avoidAreaType)
{
WLOGFI("[WMS] GetAvoidAreaByType: %{public}u, Type: %{public}u", windowId, static_cast<uint32_t>(avoidAreaType));
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->GetAvoidAreaByType(windowId, avoidAreaType);
}
void WindowManagerService::RegisterWindowManagerAgent(WindowManagerAgentType type,
const sptr<IWindowManagerAgent>& windowManagerAgent)
{
if ((windowManagerAgent == nullptr) || (windowManagerAgent->AsObject() == nullptr)) {
WLOGFE("windowManagerAgent is null");
return;
}
std::lock_guard<std::recursive_mutex> lock(mutex_);
WindowManagerAgentController::GetInstance().RegisterWindowManagerAgent(windowManagerAgent, type);
}
void WindowManagerService::UnregisterWindowManagerAgent(WindowManagerAgentType type,
const sptr<IWindowManagerAgent>& windowManagerAgent)
{
if ((windowManagerAgent == nullptr) || (windowManagerAgent->AsObject() == nullptr)) {
WLOGFE("windowManagerAgent is null");
return;
}
std::lock_guard<std::recursive_mutex> lock(mutex_);
WindowManagerAgentController::GetInstance().UnregisterWindowManagerAgent(windowManagerAgent, type);
}
std::shared_ptr<RSDisplayNode> WindowManagerService::GetDisplayNode(DisplayId displayId) const
{
return windowRoot_->GetOrCreateWindowNodeContainer(displayId)->GetDisplayNode();
}
void WindowManagerService::OnWindowEvent(Event event, uint32_t windowId)
{
switch (event) {
case Event::REMOTE_DIED:
DestroyWindow(windowId);
break;
default:
break;
}
}
WMError WindowManagerService::MinimizeAllAppNodeAbility(uint32_t windowId)
{
WM_SCOPED_TRACE("wms:MinimizeAllAppNodeAbility");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->MinimizeAllAppNodeAbility(windowId);
}
void WindowManagerService::NotifyDisplayStateChange(DisplayStateChangeType type)
{
WLOGFI("NotifyDisplayStateChange");
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->NotifyDisplayStateChange(type);
}
void DisplayChangeListener::OnDisplayStateChange(DisplayStateChangeType type)
{
WindowManagerService::GetInstance().NotifyDisplayStateChange(type);
}
void WindowManagerService::ProcessWindowTouchedEvent(uint32_t windowId)
{
std::lock_guard<std::recursive_mutex> lock(mutex_);
windowController_->ProcessWindowTouchedEvent(windowId);
}
void WindowManagerService::MinimizeAllAppWindows(DisplayId displayId)
{
WLOGFI("displayId %{public}" PRIu64"", displayId);
std::lock_guard<std::recursive_mutex> lock(mutex_);
windowController_->MinimizeAllAppWindows(displayId);
}
WMError WindowManagerService::GetTopWindowId(uint32_t mainWinId, uint32_t& topWinId)
{
WM_SCOPED_TRACE("wms:GetTopWindowId(%d)", mainWinId);
std::lock_guard<std::recursive_mutex> lock(mutex_);
return windowController_->GetTopWindowId(mainWinId, topWinId);
}
}
}