/* * 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. */ #ifndef OHOS_SINGLETON_CONTAINER_H #define OHOS_SINGLETON_CONTAINER_H #include #include #include #include #include #include namespace OHOS { namespace Rosen { class SingletonContainer : public RefBase { public: static sptr GetInstance(); void AddSingleton(const std::string &name, const std::any &instance); void SetSingleton(const std::string &name, const std::any &instance); const std::any &GetSingleton(const std::string &name); const std::any &DependOn(const std::string &instance, const std::string &name); template static sptr Get() { std::string nameT = __PRETTY_FUNCTION__; nameT = nameT.substr(nameT.find("T = ")); nameT = nameT.substr(sizeof("T ="), nameT.length() - sizeof("T = ")); using sptrT = sptr; sptrT ret = nullptr; const std::any &instance = SingletonContainer::GetInstance()->GetSingleton(nameT); auto pRet = std::any_cast(&instance); if (pRet != nullptr) { ret = *pRet; } return ret; } template static void Set(const sptr &ptr) { std::string nameT = __PRETTY_FUNCTION__; nameT = nameT.substr(nameT.find("T = ")); nameT = nameT.substr(sizeof("T ="), nameT.length() - sizeof("T = ")); SingletonContainer::GetInstance()->SetSingleton(nameT, ptr); } private: SingletonContainer() = default; virtual ~SingletonContainer() override; static inline sptr instance = nullptr; struct Singleton { std::any value; int32_t refCount; }; std::map stringMap; std::map singletonMap; std::map> dependencySetMap; }; } // namespace Rosen } // namespace OHOS #endif // FRAMEWORKS_WM_INCLUDE_SINGLETON_CONTAINER_H