* 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.
*/
#ifndef AIR_DEVICE_DEBUG_CONFIG_H
#define AIR_DEVICE_DEBUG_CONFIG_H
#include <cstdint>
#include <string>
#include <map>
#include <vector>
#include "ge/ge_api_types.h"
#include "nlohmann/json.hpp"
#include "common/dump/dump_manager.h"
namespace ge {
class DeviceDebugConfig {
public:
enum class ConfigType : int32_t {
kLogConfigType = 0,
kDumpConfigType = 1,
kProfilingConfigType = 2,
kConfigTypeEnd = 0xFF
};
DeviceDebugConfig() = default;
virtual ~DeviceDebugConfig() = default;
static nlohmann::json global_configs_;
protected:
mutable std::map<ConfigType, nlohmann::json> configs_{};
};
class DeviceMaintenanceMasterCfg : public DeviceDebugConfig {
public:
DeviceMaintenanceMasterCfg() = default;
~DeviceMaintenanceMasterCfg() override = default;
void InitDevMaintenanceConfigs();
static Status InitGlobalMaintenanceConfigs();
Status GetJsonDataByType(ConfigType config_type, std::string &data) const;
private:
void InitProfilingConfig();
static Status InitLogConfig();
void InitDumpConfig();
};
class DeviceMaintenanceCfgManager {
public:
Status CreateDevMaintenanceConfig(int32_t device_id);
void CloseDevMaintenanceConfig(int32_t device_id);
const DeviceMaintenanceMasterCfg *GetDevMaintenanceConfig(int32_t dev_id);
static DeviceMaintenanceCfgManager &GetInstance() {
static DeviceMaintenanceCfgManager instance;
return instance;
}
private:
std::mutex mu_;
std::map<int32_t, std::unique_ptr<DeviceMaintenanceMasterCfg>> device_configs_;
};
class DeviceMaintenanceClientCfg : public DeviceDebugConfig {
public:
DeviceMaintenanceClientCfg() = default;
~DeviceMaintenanceClientCfg() override = default;
Status DecodeConfig(std::map<std::string, std::string> &env_option,
std::map<std::string, std::string> &args_option) const;
Status LoadJsonData(const std::string &data);
static Status DecodeLogConfig(std::map<std::string, std::string> &env_option,
std::map<std::string, std::string> &args_option);
private:
Status DecodeDumpConfig(std::map<std::string, std::string> &env_option,
std::map<std::string, std::string> &args_option) const;
Status DecodeProfilingConfig(std::map<std::string, std::string> &env_option,
std::map<std::string, std::string> &args_option) const;
};
class DevMaintenanceCfgUtils {
public:
DevMaintenanceCfgUtils() = default;
~DevMaintenanceCfgUtils() = default;
static std::vector<std::string> TransArgsOption2Array(std::map<std::string, std::string> &args_option);
static void GetLogEnvs(std::map<std::string, std::string> &log_envs);
static Status DecodeJsonConfig(const nlohmann::json ¶m_list_jsons,
std::map<std::string, std::string> &env_option,
std::map<std::string, std::string> &args_option);
};
}
#endif