/* * 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. */ #ifndef FOUNDATION_DM_DISPLAY_MANAGER_ADAPTER_H #define FOUNDATION_DM_DISPLAY_MANAGER_ADAPTER_H #include #include #include #include "display.h" #include "screen.h" #include "screen_group.h" #include "dm_common.h" #include "display_manager_interface.h" #include "fold_screen_info.h" #include "singleton_delegator.h" namespace OHOS::Rosen { class BaseAdapter { public: virtual ~BaseAdapter(); virtual DMError RegisterDisplayManagerAgent(const sptr& displayManagerAgent, DisplayManagerAgentType type); virtual DMError UnregisterDisplayManagerAgent(const sptr& displayManagerAgent, DisplayManagerAgentType type); virtual void Clear(); protected: bool InitDMSProxy(); std::recursive_mutex mutex_; sptr displayManagerServiceProxy_ = nullptr; sptr dmsDeath_ = nullptr; bool isProxyValid_ { false }; }; class DMSDeathRecipient : public IRemoteObject::DeathRecipient { public: explicit DMSDeathRecipient(BaseAdapter& adapter); virtual void OnRemoteDied(const wptr& wptrDeath) override; private: BaseAdapter& adapter_; }; class DisplayManagerAdapter : public BaseAdapter { WM_DECLARE_SINGLE_INSTANCE(DisplayManagerAdapter); public: virtual sptr GetDefaultDisplayInfo(); virtual sptr GetDisplayInfoByScreenId(ScreenId screenId); virtual std::vector GetAllDisplayIds(); virtual std::shared_ptr GetDisplaySnapshot(DisplayId displayId, DmErrorCode* errorCode = nullptr); virtual DMError HasImmersiveWindow(bool& immersive); virtual DMError HasPrivateWindow(DisplayId displayId, bool& hasPrivateWindow); virtual bool WakeUpBegin(PowerStateChangeReason reason); virtual bool WakeUpEnd(); virtual bool SuspendBegin(PowerStateChangeReason reason); virtual bool SuspendEnd(); virtual bool SetDisplayState(DisplayState state); virtual DisplayState GetDisplayState(DisplayId displayId); virtual void NotifyDisplayEvent(DisplayEvent event); virtual bool SetFreeze(std::vector displayIds, bool isFreeze); virtual sptr GetDisplayInfo(DisplayId displayId); virtual DMError GetAvailableArea(DisplayId displayId, DMRect& area); virtual sptr GetCutoutInfo(DisplayId displayId); virtual DMError AddSurfaceNodeToDisplay(DisplayId displayId, std::shared_ptr& surfaceNode); virtual DMError RemoveSurfaceNodeFromDisplay(DisplayId displayId, std::shared_ptr& surfaceNode); virtual bool ConvertScreenIdToRsScreenId(ScreenId screenId, ScreenId& rsScreenId); virtual bool IsFoldable(); virtual FoldStatus GetFoldStatus(); virtual FoldDisplayMode GetFoldDisplayMode(); virtual void SetFoldDisplayMode(const FoldDisplayMode); virtual void SetFoldStatusLocked(bool locked); virtual sptr GetCurrentFoldCreaseRegion(); private: static inline SingletonDelegator delegator; }; class ScreenManagerAdapter : public BaseAdapter { WM_DECLARE_SINGLE_INSTANCE(ScreenManagerAdapter); public: virtual ScreenId CreateVirtualScreen(VirtualScreenOption option, const sptr& displayManagerAgent); virtual DMError DestroyVirtualScreen(ScreenId screenId); virtual DMError SetVirtualScreenSurface(ScreenId screenId, sptr surface); virtual DMError SetVirtualMirrorScreenCanvasRotation(ScreenId screenId, bool canvasRotation); virtual bool SetSpecifiedScreenPower(ScreenId screenId, ScreenPowerState state, PowerStateChangeReason reason); virtual bool SetScreenPowerForAll(ScreenPowerState state, PowerStateChangeReason reason); virtual ScreenPowerState GetScreenPower(ScreenId dmsScreenId); virtual DMError SetOrientation(ScreenId screenId, Orientation orientation); virtual sptr GetScreenGroupInfoById(ScreenId screenId); virtual DMError GetAllScreenInfos(std::vector>& screenInfos); virtual DMError MakeMirror(ScreenId mainScreenId, std::vector mirrorScreenId, ScreenId& screenGroupId); virtual DMError MakeExpand(std::vector screenId, std::vector startPoint, ScreenId& screenGroupId); virtual DMError StopMirror(const std::vector& mirrorScreenIds); virtual DMError StopExpand(const std::vector& expandScreenIds); virtual DMError DisableMirror(bool disableOrNot); virtual void RemoveVirtualScreenFromGroup(std::vector); virtual DMError SetScreenActiveMode(ScreenId screenId, uint32_t modeId); virtual sptr GetScreenInfo(ScreenId screenId); virtual DMError SetVirtualPixelRatio(ScreenId screenId, float virtualPixelRatio); virtual DMError SetResolution(ScreenId screenId, uint32_t width, uint32_t height, float virtualPixelRatio); virtual DMError GetDensityInCurResolution(ScreenId screenId, float& virtualPixelRatio); virtual DMError ResizeVirtualScreen(ScreenId screenId, uint32_t width, uint32_t height); virtual DMError SetScreenRotationLocked(bool isLocked); virtual DMError IsScreenRotationLocked(bool& isLocked); // colorspace, gamut virtual DMError GetScreenSupportedColorGamuts(ScreenId screenId, std::vector& colorGamuts); virtual DMError GetScreenColorGamut(ScreenId screenId, ScreenColorGamut& colorGamut); virtual DMError SetScreenColorGamut(ScreenId screenId, int32_t colorGamutIdx); virtual DMError GetScreenGamutMap(ScreenId screenId, ScreenGamutMap& gamutMap); virtual DMError SetScreenGamutMap(ScreenId screenId, ScreenGamutMap gamutMap); virtual DMError SetScreenColorTransform(ScreenId screenId); virtual DMError GetPixelFormat(ScreenId screenId, GraphicPixelFormat& pixelFormat); virtual DMError SetPixelFormat(ScreenId screenId, GraphicPixelFormat pixelFormat); virtual DMError GetSupportedHDRFormats(ScreenId screenId, std::vector& hdrFormats); virtual DMError GetScreenHDRFormat(ScreenId screenId, ScreenHDRFormat& hdrFormat); virtual DMError SetScreenHDRFormat(ScreenId screenId, int32_t modeIdx); virtual DMError GetSupportedColorSpaces(ScreenId screenId, std::vector& colorSpaces); virtual DMError GetScreenColorSpace(ScreenId screenId, GraphicCM_ColorSpaceType& colorSpace); virtual DMError SetScreenColorSpace(ScreenId screenId, GraphicCM_ColorSpaceType colorSpace); virtual DMError GetSupportedHDRFormats(ScreenId screenId, std::vector& hdrFormats); virtual DMError GetSupportedColorSpaces(ScreenId screenId, std::vector& colorSpaces); // unique screen virtual DMError MakeUniqueScreen(const std::vector& screenIds); private: static inline SingletonDelegator delegator; }; } // namespace OHOS::Rosen #endif // FOUNDATION_DM_DISPLAY_MANAGER_ADAPTER_H