blob: fc6bbcd11ae1b7085f547c41d06d24f7993e621f [file] [log] [blame]
Wludzik, Jozef76833cb2020-12-21 14:42:41 +01001#include "trigger_manager.hpp"
2
Cezary Zwolak4416fce2021-03-17 03:21:06 +01003#include "trigger.hpp"
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +00004#include "types/trigger_types.hpp"
Cezary Zwolak4416fce2021-03-17 03:21:06 +01005#include "utils/conversion_trigger.hpp"
Szymon Dompke1cdd7e42022-06-08 14:43:13 +02006#include "utils/dbus_path_utils.hpp"
Szymon Dompke32305f12022-07-05 15:37:21 +02007#include "utils/make_id_name.hpp"
Cezary Zwolak4416fce2021-03-17 03:21:06 +01008#include "utils/transform.hpp"
Szymon Dompke32305f12022-07-05 15:37:21 +02009#include "utils/tstring.hpp"
Cezary Zwolak4416fce2021-03-17 03:21:06 +010010
11#include <phosphor-logging/log.hpp>
12
Szymon Dompkeb4ef22e2022-02-07 15:15:12 +010013#include <unordered_set>
14
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010015TriggerManager::TriggerManager(
16 std::unique_ptr<interfaces::TriggerFactory> triggerFactoryIn,
Cezary Zwolaka4e67612021-02-18 13:16:16 +010017 std::unique_ptr<interfaces::JsonStorage> triggerStorageIn,
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010018 const std::shared_ptr<sdbusplus::asio::object_server>& objServer) :
Cezary Zwolaka4e67612021-02-18 13:16:16 +010019 triggerFactory(std::move(triggerFactoryIn)),
20 triggerStorage(std::move(triggerStorageIn))
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010021{
Cezary Zwolak4416fce2021-03-17 03:21:06 +010022 loadFromPersistent();
23
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010024 managerIface = objServer->add_unique_interface(
25 triggerManagerPath, triggerManagerIfaceName, [this](auto& iface) {
26 iface.register_method(
27 "AddTrigger",
Szymon Dompke1cdd7e42022-06-08 14:43:13 +020028 [this](
29 boost::asio::yield_context& yield, const std::string& id,
30 const std::string& name,
31 const std::vector<std::string>& triggerActions,
32 const SensorsInfo& sensors,
33 const std::vector<sdbusplus::message::object_path>& reports,
34 const TriggerThresholdParamsExt& thresholds) {
Cezary Zwolak4416fce2021-03-17 03:21:06 +010035 LabeledTriggerThresholdParams
36 labeledTriggerThresholdParams = std::visit(
37 utils::ToLabeledThresholdParamConversion(),
38 thresholds);
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010039
Cezary Zwolak4416fce2021-03-17 03:21:06 +010040 std::vector<LabeledSensorInfo> labeledSensorsInfo =
41 triggerFactory->getLabeledSensorsInfo(yield, sensors);
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010042
Szymon Dompke1cdd7e42022-06-08 14:43:13 +020043 auto reportIds = utils::transform<std::vector>(
44 reports, [](const auto& item) {
45 return utils::reportPathToId(item);
46 });
47
Szymon Dompkee28aa532021-10-27 12:33:12 +020048 return addTrigger(id, name, triggerActions,
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010049 labeledSensorsInfo, reportIds,
Cezary Zwolak4416fce2021-03-17 03:21:06 +010050 labeledTriggerThresholdParams)
51 .getPath();
Wludzik, Jozef76833cb2020-12-21 14:42:41 +010052 });
53 });
54}
55
56void TriggerManager::removeTrigger(const interfaces::Trigger* trigger)
57{
58 triggers.erase(
59 std::remove_if(triggers.begin(), triggers.end(),
60 [trigger](const auto& x) { return trigger == x.get(); }),
61 triggers.end());
62}
Cezary Zwolak4416fce2021-03-17 03:21:06 +010063
Szymon Dompkeb4ef22e2022-02-07 15:15:12 +010064void TriggerManager::verifyReportIds(
65 const std::vector<std::string>& newReportIds)
66{
67 if (std::unordered_set(newReportIds.begin(), newReportIds.end()).size() !=
68 newReportIds.size())
69 {
70 throw sdbusplus::exception::SdBusError(
71 static_cast<int>(std::errc::invalid_argument),
72 "Duplicate element in ReportIds");
73 }
74}
75
Szymon Dompke32305f12022-07-05 15:37:21 +020076void TriggerManager::verifyThresholdParams(
77 const LabeledTriggerThresholdParams& thresholdParams)
78{
79 namespace ts = utils::tstring;
80
81 if (auto discreteParams =
82 std::get_if<std::vector<discrete::LabeledThresholdParam>>(
83 &thresholdParams);
84 discreteParams != nullptr)
85 {
86 for (auto discreteParam : *discreteParams)
87 {
88 if (discreteParam.at_label<ts::UserId>().length() >
89 utils::constants::maxIdNameLength)
90 {
Krzysztof Grobelny62c08e92022-09-16 10:28:53 +020091 throw errors::InvalidArgument("ThresholdParams.Id",
92 "UserId too long.");
Szymon Dompke32305f12022-07-05 15:37:21 +020093 }
94 }
95 }
96}
97
Szymon Dompkeb4ef22e2022-02-07 15:15:12 +010098void TriggerManager::verifyAddTrigger(
Szymon Dompke32305f12022-07-05 15:37:21 +020099 const std::vector<std::string>& reportIds,
100 const LabeledTriggerThresholdParams& thresholdParams) const
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100101{
102 if (triggers.size() >= maxTriggers)
103 {
104 throw sdbusplus::exception::SdBusError(
105 static_cast<int>(std::errc::too_many_files_open),
106 "Reached maximal trigger count");
107 }
108
Szymon Dompke32305f12022-07-05 15:37:21 +0200109 verifyReportIds(reportIds);
110 verifyThresholdParams(thresholdParams);
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100111}
112
113interfaces::Trigger& TriggerManager::addTrigger(
Szymon Dompkee28aa532021-10-27 12:33:12 +0200114 const std::string& triggerIdIn, const std::string& triggerNameIn,
Szymon Dompke20013012021-07-23 09:54:20 +0200115 const std::vector<std::string>& triggerActions,
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100116 const std::vector<LabeledSensorInfo>& labeledSensorsInfo,
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100117 const std::vector<std::string>& reportIds,
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100118 const LabeledTriggerThresholdParams& labeledThresholdParams)
119{
Krzysztof Grobelnya950e422021-12-31 13:49:00 +0100120 const auto existingTriggerIds = utils::transform(
121 triggers, [](const auto& trigger) { return trigger->getId(); });
Szymon Dompkee28aa532021-10-27 12:33:12 +0200122
Szymon Dompke32305f12022-07-05 15:37:21 +0200123 auto [id, name] = utils::makeIdName(triggerIdIn, triggerNameIn,
124 triggerNameDefault, existingTriggerIds);
Szymon Dompkee28aa532021-10-27 12:33:12 +0200125
Szymon Dompke32305f12022-07-05 15:37:21 +0200126 verifyAddTrigger(reportIds, labeledThresholdParams);
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100127
128 triggers.emplace_back(triggerFactory->make(
Krzysztof Grobelnya950e422021-12-31 13:49:00 +0100129 id, name, triggerActions, reportIds, *this, *triggerStorage,
130 labeledThresholdParams, labeledSensorsInfo));
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100131
132 return *triggers.back();
133}
134
135void TriggerManager::loadFromPersistent()
136{
137 std::vector<interfaces::JsonStorage::FilePath> paths =
138 triggerStorage->list();
139
140 for (const auto& path : paths)
141 {
142 std::optional<nlohmann::json> data = triggerStorage->load(path);
143 try
144 {
145 if (!data.has_value())
146 {
147 throw std::runtime_error("Empty storage");
148 }
149 size_t version = data->at("Version").get<size_t>();
150 if (version != Trigger::triggerVersion)
151 {
152 throw std::runtime_error("Invalid version");
153 }
Szymon Dompkee28aa532021-10-27 12:33:12 +0200154 const std::string& id = data->at("Id").get_ref<std::string&>();
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100155 const std::string& name = data->at("Name").get_ref<std::string&>();
156 int thresholdParamsDiscriminator =
157 data->at("ThresholdParamsDiscriminator").get<int>();
Szymon Dompke20013012021-07-23 09:54:20 +0200158 const std::vector<std::string> triggerActions =
159 data->at("TriggerActions").get<std::vector<std::string>>();
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100160
161 LabeledTriggerThresholdParams labeledThresholdParams;
162 if (0 == thresholdParamsDiscriminator)
163 {
164 labeledThresholdParams =
165 data->at("ThresholdParams")
166 .get<std::vector<numeric::LabeledThresholdParam>>();
167 }
168 else
169 {
170 labeledThresholdParams =
171 data->at("ThresholdParams")
172 .get<std::vector<discrete::LabeledThresholdParam>>();
173 }
174
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100175 auto reportIds =
176 data->at("ReportIds").get<std::vector<std::string>>();
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100177
178 auto labeledSensorsInfo =
179 data->at("Sensors").get<std::vector<LabeledSensorInfo>>();
180
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100181 addTrigger(id, name, triggerActions, labeledSensorsInfo, reportIds,
182 labeledThresholdParams);
Cezary Zwolak4416fce2021-03-17 03:21:06 +0100183 }
184 catch (const std::exception& e)
185 {
186 phosphor::logging::log<phosphor::logging::level::ERR>(
187 "Failed to load trigger from storage",
188 phosphor::logging::entry(
189 "FILENAME=%s",
190 static_cast<std::filesystem::path>(path).c_str()),
191 phosphor::logging::entry("EXCEPTION_MSG=%s", e.what()));
192 triggerStorage->remove(path);
193 }
194 }
195}