* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This program is free software, you can redistribute it and/or modify it under the terms and conditions of
* CANN Open Software License Agreement Version 2.0 (the "License").
* Please refer to the License for details. You may not use this file except in compliance with the License.
* THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
* See LICENSE in the root of the software repository for the full text of the License.
*/
#include "st/parser_st_utils.h"
#include "framework/common/debug/ge_log.h"
#include <limits.h>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <google/protobuf/text_format.h>
#include <fstream>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
namespace ge {
void ParerSTestsUtils::ClearParserInnerCtx() {
ge::GetParserContext().input_nodes_format_map.clear();
ge::GetParserContext().output_formats.clear();
ge::GetParserContext().user_input_dims.clear();
ge::GetParserContext().input_dims.clear();
ge::GetParserContext().op_conf_map.clear();
ge::GetParserContext().user_out_nodes.clear();
ge::GetParserContext().default_out_nodes.clear();
ge::GetParserContext().out_nodes_map.clear();
ge::GetParserContext().user_out_tensors.clear();
ge::GetParserContext().net_out_nodes.clear();
ge::GetParserContext().out_tensor_names.clear();
ge::GetParserContext().data_tensor_names.clear();
ge::GetParserContext().is_dynamic_input = false;
ge::GetParserContext().train_flag = false;
ge::GetParserContext().format = domi::DOMI_TENSOR_ND;
ge::GetParserContext().type = domi::FRAMEWORK_RESERVED;
ge::GetParserContext().run_mode = GEN_OM_MODEL;
ge::GetParserContext().custom_proto_path = "";
ge::GetParserContext().caffe_proto_path = "";
ge::GetParserContext().enable_scope_fusion_passes = "";
GELOGI("Clear parser inner context successfully.");
}
MemBuffer* ParerSTestsUtils::MemBufferFromFile(const char *path) {
char path_temp[PATH_MAX + 1] = {0x00};
if(strlen(path) > PATH_MAX || nullptr == realpath(path, path_temp)) {
return nullptr;
}
FILE *fp = fopen(path_temp, "r+");
if (fp == nullptr) {
return nullptr;
}
if (0 != fseek(fp, 0, SEEK_END)) {
fclose(fp);
return nullptr;
}
long file_length = ftell(fp);
if (fseek(fp, 0, SEEK_SET)) {
fclose(fp);
return nullptr;
}
if (file_length <= 0) {
fclose(fp);
return nullptr;
}
void *data = malloc((unsigned int)file_length);
if (!data) {
fclose(fp);
return nullptr;
}
uint32_t read_size = (uint32_t)fread(data, 1, (unsigned int)file_length, fp);
if ((long)read_size != file_length) {
free(data);
data = nullptr;
fclose(fp);
return nullptr;
}
fclose(fp);
MemBuffer* membuf = new MemBuffer();
if (!membuf) {
free(data);
data = nullptr;
return nullptr;
}
membuf->data = malloc((unsigned int)read_size);
membuf->size = (uint32_t)read_size;
memcpy((char*)membuf->data, (char*)data, read_size);
free(data);
return membuf;
}
bool ParerSTestsUtils::ReadProtoFromText(const char *file, google::protobuf::Message *message) {
std::ifstream fs(file);
if (!fs.is_open()) {
return false;
}
google::protobuf::io::IstreamInputStream input(&fs);
bool ret = google::protobuf::TextFormat::Parse(&input, message);
fs.close();
return ret;
}
void ParerSTestsUtils::WriteProtoToBinaryFile(const google::protobuf::Message &proto, const char *filename) {
size_t size = proto.ByteSizeLong();
char *buf = new char[size];
proto.SerializeToArray(buf, size);
std::ofstream out(filename);
out.write(buf, size);
out.close();
delete[] buf;
}
void ParerSTestsUtils::WriteProtoToTextFile(const google::protobuf::Message &proto, const char *filename) {
const int32_t fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 384U);
if (fd >= 0) {
google::protobuf::io::FileOutputStream output(fd);
google::protobuf::TextFormat::Print(proto, &output);
output.Close();
close(fd);
}
}
}