mirror of
https://github.com/openharmony/windowmanager.git
synced 2026-07-19 08:55:36 -04:00
26edaa6212
Signed-off-by: chenqinxin <chenqinxin1@huawei.com> Change-Id: Ia26ee32cd6f24d096e0333ac930af0b91a18282e
74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
/*
|
|
* 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 OHOS_SINGLETON_CONTAINER_H
|
|
#define OHOS_SINGLETON_CONTAINER_H
|
|
|
|
#include <any>
|
|
#include <cstdint>
|
|
#include <map>
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "wm_single_instance.h"
|
|
namespace OHOS {
|
|
namespace Rosen {
|
|
class SingletonContainer {
|
|
WM_DECLARE_SINGLE_INSTANCE_BASE(SingletonContainer);
|
|
|
|
public:
|
|
void AddSingleton(const std::string& name, void* instance);
|
|
|
|
void SetSingleton(const std::string& name, void* instance);
|
|
|
|
void* GetSingleton(const std::string& name);
|
|
|
|
void* DependOn(const std::string& instance, const std::string& name);
|
|
|
|
template<class T>
|
|
static T& Get()
|
|
{
|
|
std::string nameT = __PRETTY_FUNCTION__;
|
|
nameT = nameT.substr(nameT.find("T = "));
|
|
nameT = nameT.substr(sizeof("T ="), nameT.length() - sizeof("T = "));
|
|
return *(reinterpret_cast<T*>(SingletonContainer::GetInstance().GetSingleton(nameT)));
|
|
}
|
|
|
|
template<class T>
|
|
static void Set(T& instance)
|
|
{
|
|
std::string nameT = __PRETTY_FUNCTION__;
|
|
nameT = nameT.substr(nameT.find("T = "));
|
|
nameT = nameT.substr(sizeof("T ="), nameT.length() - sizeof("T = "));
|
|
SingletonContainer::GetInstance().SetSingleton(nameT, &instance);
|
|
}
|
|
|
|
private:
|
|
SingletonContainer() = default;
|
|
|
|
virtual ~SingletonContainer();
|
|
|
|
struct Singleton {
|
|
void* value;
|
|
int32_t refCount;
|
|
};
|
|
std::map<std::string, int32_t> stringMap;
|
|
std::map<int32_t, SingletonContainer::Singleton> singletonMap;
|
|
std::map<int32_t, std::set<int32_t>> dependencySetMap;
|
|
};
|
|
} // namespace Rosen
|
|
} // namespace OHOS
|
|
#endif // FRAMEWORKS_WM_INCLUDE_SINGLETON_CONTAINER_H
|