* Copyright (c) 2025 Huawei Technologies Co., Ltd.
* This file is part of the MindStudio project.
*
* MindStudio is licensed under Mulan PSL v2.
* You can use this software according to the terms and conditions of the Mulan PSL v2.
* You may obtain a copy of Mulan PSL v2 at:
*
* http://license.coscl.org.cn/MulanPSL2
*
* 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 FIT FOR A PARTICULAR PURPOSE.
* See the Mulan PSL v2 for more details.
* -------------------------------------------------------------------------*/
#include "analysis/csrc/application/timeline/qos_assembler.h"
#include "analysis/csrc/domain/entities/viewer_data/system/include/qos_data.h"
#include "analysis/csrc/domain/services/environment/context.h"
namespace Analysis {
namespace Application {
using namespace Analysis::Domain::Environment;
using namespace Analysis::Viewer::Database;
using namespace Analysis::Infra;
using namespace Analysis::Utils;
namespace {
const std::string QOS = "QoS";
const std::string SERIES = "value";
const std::unordered_map<uint16_t, std::string> SERIES_MAP {
{0, "die 0"},
{1, "die 1"}
};
}
QosAssembler::QosAssembler() : JsonAssembler(PROCESS_QOS, {{MSPROF_JSON_FILE, FileCategory::MSPROF}}) {}
void GenerateQosTrace(std::vector<QosData> &qosData, const std::unordered_map<uint16_t, uint32_t> &pidMap,
const std::unordered_map<uint16_t, std::vector<std::string>> &qosEventsMap,
std::vector<std::shared_ptr<TraceEvent>> &res)
{
std::shared_ptr<CounterEvent> event;
std::string time;
uint32_t pid;
std::string counter;
for (const auto &data : qosData) {
auto it = qosEventsMap.find(data.deviceId);
if (it == qosEventsMap.end()) {
continue;
}
time = DivideByPowersOfTenWithPrecision(data.timestamp);
if (pidMap.find(data.deviceId) == pidMap.end()) {
continue;
}
pid = pidMap.at(data.deviceId);
std::vector<uint32_t> bandwidth {data.bw1, data.bw2, data.bw3, data.bw4, data.bw5, data.bw6, data.bw7,
data.bw8, data.bw9, data.bw10};
for (size_t i = 0; i < it->second.size(); i++) {
counter.clear();
counter.append(QOS).append(" ").append(it->second[i]);
MAKE_SHARED_RETURN_VOID(event, CounterEvent, pid, DEFAULT_TID, time, counter);
event->SetSeriesIValue(SERIES, bandwidth[i]);
res.push_back(event);
}
}
}
void GenerateQosV6Trace(std::vector<QosData> &qosData, const std::unordered_map<uint16_t, uint32_t> &pidMap,
const std::unordered_map<uint16_t, std::vector<std::string>> &qosEventsMap,
std::vector<std::shared_ptr<TraceEvent>> &res)
{
std::shared_ptr<CounterEvent> event;
std::string time;
uint32_t pid;
std::string counter;
std::string seriesName;
std::unordered_map<std::string, std::shared_ptr<CounterEvent>> eventMap;
for (const auto &data : qosData) {
auto it = qosEventsMap.find(data.deviceId);
if (it == qosEventsMap.end()) {
continue;
}
seriesName = SERIES_MAP.at(data.dieId);
time = DivideByPowersOfTenWithPrecision(data.timestamp);
pid = pidMap.at(data.deviceId);
std::array<uint32_t, 8> bandwidth {data.bw3, data.bw4, data.bw5, data.bw6, data.bw7,
data.bw8, data.bw9, data.bw10};
for (size_t i = 0; i < it->second.size(); i++) {
counter.clear();
counter.append(QOS).append(" ").append(it->second[i]);
std::string tmpKey = counter + time;
auto itV6 = eventMap.find(tmpKey);
if (itV6 != eventMap.end()) {
itV6->second->SetSeriesIValue(seriesName, bandwidth[i]);
} else {
MAKE_SHARED_RETURN_VOID(event, CounterEvent, pid, DEFAULT_TID, time, counter);
event->SetSeriesIValue(seriesName, bandwidth[i]);
eventMap[tmpKey] = event;
}
}
}
for (auto &counterEvent: eventMap) {
res.emplace_back(counterEvent.second);
}
}
uint8_t QosAssembler::AssembleData(DataInventory &dataInventory, JsonWriter &ostream, const std::string &profPath)
{
auto qosData = dataInventory.GetPtr<std::vector<QosData>>();
if (qosData == nullptr) {
WARN("Can't get qosData from dataInventory");
return DATA_NOT_EXIST;
}
std::unordered_map<uint16_t, uint32_t> pidMap;
std::unordered_map<uint16_t, std::vector<std::string>> qosEventsMap;
auto layerInfo = GetLayerInfo(PROCESS_QOS);
auto deviceList = File::GetFilesWithPrefix(profPath, DEVICE_PREFIX);
for (const auto& devicePath: deviceList) {
auto deviceId = GetDeviceIdByDevicePath(devicePath);
auto pid = Context::GetInstance().GetPidFromInfoJson(deviceId, profPath);
uint32_t formatPid = JsonAssembler::GetFormatPid(pid, layerInfo.sortIndex, deviceId);
pidMap[deviceId] = formatPid;
qosEventsMap[deviceId] = Context::GetInstance().GetQosEvents(deviceId, profPath);
}
auto version = Context::GetInstance().GetPlatformVersion(DEFAULT_DEVICE_ID, profPath);
GenerateHWMetaData(pidMap, layerInfo, res_);
if (Context::GetInstance().IsChipV6(version)) {
GenerateQosV6Trace(*qosData, pidMap, qosEventsMap, res_);
} else if (Context::GetInstance().IsChipV4(version) || version == static_cast<int>(Chip::CHIP_V1_1_1)) {
GenerateQosTrace(*qosData, pidMap, qosEventsMap, res_);
}
if (res_.empty()) {
ERROR("Can't Generate any QoS process data");
return ASSEMBLE_FAILED;
}
for (const auto &node : res_) {
node->DumpJson(ostream);
}
ostream << ",";
return ASSEMBLE_SUCCESS;
}
}
}