1c5e268c6Sopenharmony_ci/* 2c5e268c6Sopenharmony_ci * Copyright (c) 2023 Huawei Device Co., Ltd. 3c5e268c6Sopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4c5e268c6Sopenharmony_ci * you may not use this file except in compliance with the License. 5c5e268c6Sopenharmony_ci * You may obtain a copy of the License at 6c5e268c6Sopenharmony_ci * 7c5e268c6Sopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8c5e268c6Sopenharmony_ci * 9c5e268c6Sopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10c5e268c6Sopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11c5e268c6Sopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12c5e268c6Sopenharmony_ci * See the License for the specific language governing permissions and 13c5e268c6Sopenharmony_ci * limitations under the License. 14c5e268c6Sopenharmony_ci */ 15c5e268c6Sopenharmony_ci 16c5e268c6Sopenharmony_ci#ifndef OHOS_HDI_DISPLAY_V1_0_DEVICE_CACHE_MANAGER_H 17c5e268c6Sopenharmony_ci#define OHOS_HDI_DISPLAY_V1_0_DEVICE_CACHE_MANAGER_H 18c5e268c6Sopenharmony_ci 19c5e268c6Sopenharmony_ci#include <mutex> 20c5e268c6Sopenharmony_ci#include <memory> 21c5e268c6Sopenharmony_ci#include <unordered_map> 22c5e268c6Sopenharmony_ci#include "cache_manager.h" 23c5e268c6Sopenharmony_ci#include "device_cache.h" 24c5e268c6Sopenharmony_ci#include "nocopyable.h" 25c5e268c6Sopenharmony_ci 26c5e268c6Sopenharmony_cinamespace OHOS { 27c5e268c6Sopenharmony_cinamespace HDI { 28c5e268c6Sopenharmony_cinamespace Display { 29c5e268c6Sopenharmony_cinamespace Composer { 30c5e268c6Sopenharmony_ci 31c5e268c6Sopenharmony_ciclass DeviceCacheManager : public NoCopyable { 32c5e268c6Sopenharmony_cipublic: 33c5e268c6Sopenharmony_ci DeviceCacheManager(); 34c5e268c6Sopenharmony_ci ~DeviceCacheManager(); 35c5e268c6Sopenharmony_ci static std::shared_ptr<DeviceCacheManager> GetInstance(); 36c5e268c6Sopenharmony_ci int32_t AddDeviceCache(uint32_t deviceId); 37c5e268c6Sopenharmony_ci int32_t RemoveDeviceCache(uint32_t deviceId); 38c5e268c6Sopenharmony_ci int32_t CreateVirtualDisplayCache(uint32_t deviceId); 39c5e268c6Sopenharmony_ci int32_t DestroyVirtualDisplayCache(uint32_t deviceId); 40c5e268c6Sopenharmony_ci int32_t DestroyCaches(); 41c5e268c6Sopenharmony_ci DeviceCache* DeviceCacheInstance(uint32_t deviceId) const; 42c5e268c6Sopenharmony_ci LayerCache* LayerCacheInstance(uint32_t deviceId, uint32_t layerId) const; 43c5e268c6Sopenharmony_ci void Dump() const; 44c5e268c6Sopenharmony_ci static std::mutex& GetCacheMgrMutex(); 45c5e268c6Sopenharmony_ciprivate: 46c5e268c6Sopenharmony_ci int32_t Init(); 47c5e268c6Sopenharmony_ci int32_t AddCacheInternal(uint32_t deviceId, DeviceCache::DeviceType type); 48c5e268c6Sopenharmony_ci std::unique_ptr<CacheManager<uint32_t, DeviceCache>> deviceCaches_; 49c5e268c6Sopenharmony_ci}; 50c5e268c6Sopenharmony_ci} // namespace Composer 51c5e268c6Sopenharmony_ci} // namespace Display 52c5e268c6Sopenharmony_ci} // namespace HDI 53c5e268c6Sopenharmony_ci} // namespace OHOS 54c5e268c6Sopenharmony_ci#endif // OHOS_HDI_DISPLAY_V1_0_DEVICE_CACHE_MANAGER_H 55