* 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 FOUNDATION_ACE_ADAPTER_PREVIEW_OSAL_RESOURCE_ADAPTER_IMPL_H
#define FOUNDATION_ACE_ADAPTER_PREVIEW_OSAL_RESOURCE_ADAPTER_IMPL_H
#include "ResourceManager.h"
#include "TypeAttribute.h"
#include "core/components/theme/resource_adapter.h"
namespace OHOS::Ace {
class ResourceAdapterImpl : public ResourceAdapter {
DECLARE_ACE_TYPE(ResourceAdapterImpl, ResourceAdapter);
public:
ResourceAdapterImpl() = default;
explicit ResourceAdapterImpl(std::shared_ptr<Global::Resource::ResourceManager> resourceManager);
~ResourceAdapterImpl() override = default;
void Init(const ResourceInfo& resourceInfo) override;
void UpdateConfig(const ResourceConfiguration& config, bool themeFlag = false) override;
RefPtr<ThemeStyle> GetTheme(int32_t themeId) override;
Color GetColor(uint32_t resId) override;
Dimension GetDimension(uint32_t resId) override;
std::string GetString(uint32_t resId) override;
std::string GetPluralString(uint32_t resId, int quantity) override;
std::vector<std::string> GetStringArray(uint32_t resId) const override;
double GetDouble(uint32_t resId) override;
int32_t GetInt(uint32_t resId) override;
bool GetResource(uint32_t resId, std::ostream& dest) const override;
bool GetResource(const std::string& path, std::ostream& dest) const override;
bool GetIdByName(const std::string& resName, const std::string& resType, uint32_t& resId) const override;
std::string GetMediaPath(uint32_t resId) override;
std::string GetRawfile(const std::string& fileName) override;
uint32_t GetSymbolById(uint32_t resId) const override;
private:
bool ConvertToGlobalResourceType(const std::string& resTypeName, Global::Resource::ResourceType& resType) const;
Global::Resource::ResourceManager resourceManger_;
ACE_DISALLOW_COPY_AND_MOVE(ResourceAdapterImpl);
};
}
#endif