blob: d9d04d2a7cccc8e79d7ae10be0e1fa3b97f93772 [file] [log] [blame]
#include "trigger_manager.hpp"
#include "interfaces/trigger_types.hpp"
#include "trigger.hpp"
#include "utils/conversion_trigger.hpp"
#include "utils/transform.hpp"
#include <phosphor-logging/log.hpp>
TriggerManager::TriggerManager(
std::unique_ptr<interfaces::TriggerFactory> triggerFactoryIn,
std::unique_ptr<interfaces::JsonStorage> triggerStorageIn,
const std::shared_ptr<sdbusplus::asio::object_server>& objServer) :
triggerFactory(std::move(triggerFactoryIn)),
triggerStorage(std::move(triggerStorageIn))
{
loadFromPersistent();
managerIface = objServer->add_unique_interface(
triggerManagerPath, triggerManagerIfaceName, [this](auto& iface) {
iface.register_method(
"AddTrigger",
[this](boost::asio::yield_context& yield,
const std::string& name, bool isDiscrete,
bool logToJournal, bool logToRedfish, bool updateReport,
const SensorsInfo& sensors,
const std::vector<std::string>& reportNames,
const TriggerThresholdParamsExt& thresholds) {
LabeledTriggerThresholdParams
labeledTriggerThresholdParams = std::visit(
utils::ToLabeledThresholdParamConversion(),
thresholds);
std::vector<LabeledSensorInfo> labeledSensorsInfo =
triggerFactory->getLabeledSensorsInfo(yield, sensors);
return addTrigger(name, isDiscrete, logToJournal,
logToRedfish, updateReport,
labeledSensorsInfo, reportNames,
labeledTriggerThresholdParams)
.getPath();
});
});
}
void TriggerManager::removeTrigger(const interfaces::Trigger* trigger)
{
triggers.erase(
std::remove_if(triggers.begin(), triggers.end(),
[trigger](const auto& x) { return trigger == x.get(); }),
triggers.end());
}
void TriggerManager::verifyAddTrigger(
const std::string& triggerName, bool isDiscrete,
const LabeledTriggerThresholdParams& thresholdParams)
{
if (triggers.size() >= maxTriggers)
{
throw sdbusplus::exception::SdBusError(
static_cast<int>(std::errc::too_many_files_open),
"Reached maximal trigger count");
}
for (const auto& trigger : triggers)
{
if (trigger->getName() == triggerName)
{
throw sdbusplus::exception::SdBusError(
static_cast<int>(std::errc::file_exists), "Duplicate trigger");
}
}
}
interfaces::Trigger& TriggerManager::addTrigger(
const std::string& triggerName, bool isDiscrete, bool logToJournal,
bool logToRedfish, bool updateReport,
const std::vector<LabeledSensorInfo>& labeledSensorsInfo,
const std::vector<std::string>& reportNames,
const LabeledTriggerThresholdParams& labeledThresholdParams)
{
verifyAddTrigger(triggerName, isDiscrete, labeledThresholdParams);
triggers.emplace_back(triggerFactory->make(
triggerName, isDiscrete, logToJournal, logToRedfish, updateReport,
reportNames, *this, *triggerStorage, labeledThresholdParams,
labeledSensorsInfo));
return *triggers.back();
}
void TriggerManager::loadFromPersistent()
{
std::vector<interfaces::JsonStorage::FilePath> paths =
triggerStorage->list();
for (const auto& path : paths)
{
std::optional<nlohmann::json> data = triggerStorage->load(path);
try
{
if (!data.has_value())
{
throw std::runtime_error("Empty storage");
}
size_t version = data->at("Version").get<size_t>();
if (version != Trigger::triggerVersion)
{
throw std::runtime_error("Invalid version");
}
const std::string& name = data->at("Name").get_ref<std::string&>();
int thresholdParamsDiscriminator =
data->at("ThresholdParamsDiscriminator").get<int>();
bool isDiscrete = data->at("IsDiscrete").get<bool>();
bool logToJournal = data->at("LogToJournal").get<bool>();
bool logToRedfish = data->at("LogToRedfish").get<bool>();
bool updateReport = data->at("UpdateReport").get<bool>();
LabeledTriggerThresholdParams labeledThresholdParams;
if (0 == thresholdParamsDiscriminator)
{
labeledThresholdParams =
data->at("ThresholdParams")
.get<std::vector<numeric::LabeledThresholdParam>>();
}
else
{
labeledThresholdParams =
data->at("ThresholdParams")
.get<std::vector<discrete::LabeledThresholdParam>>();
}
auto reportNames =
data->at("ReportNames").get<std::vector<std::string>>();
auto labeledSensorsInfo =
data->at("Sensors").get<std::vector<LabeledSensorInfo>>();
addTrigger(name, isDiscrete, logToJournal, logToRedfish,
updateReport, labeledSensorsInfo, reportNames,
labeledThresholdParams);
}
catch (const std::exception& e)
{
phosphor::logging::log<phosphor::logging::level::ERR>(
"Failed to load trigger from storage",
phosphor::logging::entry(
"FILENAME=%s",
static_cast<std::filesystem::path>(path).c_str()),
phosphor::logging::entry("EXCEPTION_MSG=%s", e.what()));
triggerStorage->remove(path);
}
}
}