Files
developtools_global_resourc…/include/resource_check.h
T
fangyunzhong de7fd9f728 针对png资源图片进行校验
Signed-off-by: fangyunzhong <fangyunzhong2@huawei.com>
2023-07-15 02:29:53 +00:00

50 lines
1.5 KiB
C++
Executable File

/*
* Copyright (c) 2023 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_RESTOOL_RESOURCE_CHECK_H
#define OHOS_RESTOOL_RESOURCE_CHECK_H
#include "config_parser.h"
#include "resource_append.h"
#include "resource_item.h"
#include <iostream>
#include <stdint.h>
#include <map>
#include <set>
namespace OHOS {
namespace Global {
namespace Restool {
class ResourceCheck {
public:
ResourceCheck(const ConfigParser &configJson, const std::shared_ptr<ResourceAppend> &resourceAppend = nullptr);
virtual ~ResourceCheck() {};
void CheckConfigJson();
void CheckConfigJsonForCombine();
private:
const ConfigParser configJson_;
const std::shared_ptr<ResourceAppend> resourceAppend_;
void CheckNodeInResourceItem(const std::string &key, const ResourceItem &resourceItem);
bool GetPngWidthAndHeight(const std::string &filePath, uint32_t *width, uint32_t *height);
bool IsValidPngImage(FILE *&in) const;
void CloseFile(FILE *fp);
};
}
}
}
#endif