/* * 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 "zidl/display_manager_agent_stub.h" #include #include "display_info.h" #include "dm_common.h" #include "marshalling_helper.h" #include "screen_info.h" #include "window_manager_hilog.h" namespace OHOS::Rosen { namespace { constexpr HiviewDFX::HiLogLabel LABEL = {LOG_CORE, HILOG_DOMAIN_DISPLAY, "DisplayManagerAgentStub"}; } int32_t DisplayManagerAgentStub::OnRemoteRequest(uint32_t code, MessageParcel& data, MessageParcel& reply, MessageOption& option) { WLOGFI("code:%{public}u", code); if (data.ReadInterfaceToken() != GetDescriptor()) { WLOGFE("InterfaceToken check failed"); return -1; } switch (code) { case TRANS_ID_NOTIFY_DISPLAY_POWER_EVENT: { DisplayPowerEvent event = static_cast(data.ReadUint32()); EventStatus status = static_cast(data.ReadUint32()); NotifyDisplayPowerEvent(event, status); break; } case TRANS_ID_NOTIFY_DISPLAY_STATE_CHANGED: { DisplayState state = static_cast(data.ReadUint32()); DisplayId id = static_cast(data.ReadUint64()); NotifyDisplayStateChanged(id, state); break; } case TRANS_ID_ON_SCREEN_CONNECT: { sptr screenInfo = data.ReadParcelable(); OnScreenConnect(screenInfo); break; } case TRANS_ID_ON_SCREEN_DISCONNECT: { ScreenId screenId; if (!data.ReadUint64(screenId)) { WLOGFE("Read ScreenId failed"); return -1; } OnScreenDisconnect(screenId); break; } case TRANS_ID_ON_SCREEN_CHANGED: { sptr screenInfo = data.ReadParcelable(); uint32_t event; if (!data.ReadUint32(event)) { WLOGFE("Read ScreenChangeEvent failed"); return -1; } OnScreenChange(screenInfo, static_cast(event)); break; } case TRANS_ID_ON_SCREENGROUP_CHANGED: { std::string trigger; if (!data.ReadString(trigger)) { WLOGFE("Read trigger failed"); return -1; } std::vector> screenInfos; if (!MarshallingHelper::UnmarshallingVectorParcelableObj(data, screenInfos)) { WLOGFE("Read ScreenInfo failed"); return -1; } uint32_t event; if (!data.ReadUint32(event)) { WLOGFE("Read ScreenChangeEvent failed"); return -1; } OnScreenGroupChange(trigger, screenInfos, static_cast(event)); break; } case TRANS_ID_ON_DISPLAY_CONNECT: { sptr displayInfo = data.ReadParcelable(); OnDisplayCreate(displayInfo); break; } case TRANS_ID_ON_DISPLAY_DISCONNECT: { DisplayId displayId; if (!data.ReadUint64(displayId)) { WLOGFE("Read DisplayId failed"); return -1; } OnDisplayDestroy(displayId); break; } case TRANS_ID_ON_DISPLAY_CHANGED: { sptr displayInfo = data.ReadParcelable(); uint32_t event; if (!data.ReadUint32(event)) { WLOGFE("Read DisplayChangeEvent failed"); return -1; } OnDisplayChange(displayInfo, static_cast(event)); break; } case TRANS_ID_ON_SCREEN_SHOT: { sptr snapshotInfo = data.ReadParcelable(); OnScreenshot(snapshotInfo); break; } default: break; } return 0; } } // namespace OHOS::Rosen