You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
120 lines
3.5 KiB
120 lines
3.5 KiB
/**
|
|
* Copyright 2019-2020 Huawei Technologies 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 ERROR_MANAGER_H_
|
|
#define ERROR_MANAGER_H_
|
|
|
|
#include <map>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <mutex>
|
|
|
|
class ErrorManager {
|
|
public:
|
|
///
|
|
/// @brief Obtain ErrorManager instance
|
|
/// @return ErrorManager instance
|
|
///
|
|
static ErrorManager &GetInstance();
|
|
|
|
///
|
|
/// @brief init
|
|
/// @param [in] path: current so path
|
|
/// @return int 0(success) -1(fail)
|
|
///
|
|
int Init(std::string path);
|
|
|
|
///
|
|
/// @brief Report error message
|
|
/// @param [in] error_code: error code
|
|
/// @param [in] args_map: parameter map
|
|
/// @return int 0(success) -1(fail)
|
|
///
|
|
int ReportErrMessage(std::string error_code, const std::map<std::string, std::string> &args_map);
|
|
|
|
///
|
|
/// @brief output error message
|
|
/// @param [in] handle: print handle
|
|
/// @return int 0(success) -1(fail)
|
|
///
|
|
int OutputErrMessage(int handle);
|
|
|
|
///
|
|
/// @brief output message
|
|
/// @param [in] handle: print handle
|
|
/// @return int 0(success) -1(fail)
|
|
///
|
|
int OutputMessage(int handle);
|
|
|
|
///
|
|
/// @brief Report error message
|
|
/// @param [in] key: vector parameter key
|
|
/// @param [in] value: vector parameter value
|
|
///
|
|
void ATCReportErrMessage(std::string error_code, const std::vector<std::string> &key = {},
|
|
const std::vector<std::string> &value = {});
|
|
|
|
///
|
|
/// @brief report graph compile failed message such as error code and op_name in mstune case
|
|
/// @param [in] msg: failed message map, key is error code, value is op_name
|
|
/// @return int 0(success) -1(fail)
|
|
///
|
|
int ReportMstuneCompileFailedMsg(const std::map<std::string, std::string> &msg);
|
|
|
|
///
|
|
/// @brief save graph compile failed message from thread local map to global map
|
|
/// @param [in] graph_name: graph name
|
|
///
|
|
void SaveMstuneCompileFailedMsg(const std::string &graph_name);
|
|
|
|
///
|
|
/// @brief get graph compile failed message in mstune case
|
|
/// @param [in] graph_name: graph name
|
|
/// @param [out] msg_map: failed message map, key is error code, value is op_name list
|
|
/// @return int 0(success) -1(fail)
|
|
///
|
|
int GetMstuneCompileFailedMsg(const std::string &graph_name,
|
|
std::map<std::string, std::vector<std::string>> &msg_map);
|
|
|
|
private:
|
|
struct ErrorInfo {
|
|
std::string error_id;
|
|
std::string error_message;
|
|
std::vector<std::string> arg_list;
|
|
};
|
|
|
|
ErrorManager() {}
|
|
~ErrorManager() {}
|
|
|
|
ErrorManager(const ErrorManager &) = delete;
|
|
ErrorManager(ErrorManager &&) = delete;
|
|
ErrorManager &operator=(const ErrorManager &) = delete;
|
|
ErrorManager &operator=(ErrorManager &&) = delete;
|
|
|
|
int ParseJsonFile(std::string path);
|
|
|
|
int ReadJsonFile(const std::string &file_path, void *handle);
|
|
|
|
bool is_init_ = false;
|
|
std::mutex mutex_;
|
|
std::map<std::string, ErrorInfo> error_map_;
|
|
std::vector<std::string> error_messages_;
|
|
std::vector<std::string> warning_messages_;
|
|
std::map<std::string, std::map<std::string, std::vector<std::string>>> compile_failed_msg_map_;
|
|
};
|
|
|
|
#endif // ERROR_MANAGER_H_
|