blob: 8687316cac9e0f33af63adda2d627aca555b53dc [file] [log] [blame]
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +02001#include "report_manager.hpp"
2
Wludzik, Jozefe2362792020-10-27 17:23:55 +01003#include "report.hpp"
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +00004#include "types/report_types.hpp"
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +00005#include "utils/conversion.hpp"
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +01006#include "utils/generate_id.hpp"
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +00007#include "utils/transform.hpp"
Wludzik, Jozefe2362792020-10-27 17:23:55 +01008
9#include <phosphor-logging/log.hpp>
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020010#include <sdbusplus/exception.hpp>
11
Wludzik, Jozefe2362792020-10-27 17:23:55 +010012#include <stdexcept>
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020013#include <system_error>
14
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000015ReadingParameters
16 convertToReadingParameters(ReadingParametersPastVersion params)
17{
18 return utils::transform(params, [](const auto& param) {
19 using namespace std::chrono_literals;
20
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010021 const auto& [sensorPath, operationType, id, metadata] = param;
22
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000023 return ReadingParameters::value_type(
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010024 std::vector<
25 std::tuple<sdbusplus::message::object_path, std::string>>{
26 {sensorPath, metadata}},
27 operationType, id, utils::enumToString(CollectionTimeScope::point),
28 0u);
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000029 });
30}
31
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020032ReportManager::ReportManager(
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020033 std::unique_ptr<interfaces::ReportFactory> reportFactoryIn,
Wludzik, Jozefe2362792020-10-27 17:23:55 +010034 std::unique_ptr<interfaces::JsonStorage> reportStorageIn,
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020035 const std::shared_ptr<sdbusplus::asio::object_server>& objServerIn) :
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020036 reportFactory(std::move(reportFactoryIn)),
Wludzik, Jozefe2362792020-10-27 17:23:55 +010037 reportStorage(std::move(reportStorageIn)), objServer(objServerIn)
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020038{
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020039 reports.reserve(maxReports);
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +010040
Wludzik, Jozefe2362792020-10-27 17:23:55 +010041 loadFromPersistent();
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020042
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020043 reportManagerIface = objServer->add_unique_interface(
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020044 reportManagerPath, reportManagerIfaceName, [this](auto& dbusIface) {
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020045 dbusIface.register_property_r(
Wludzik, Jozef503c1582020-12-11 14:48:01 +010046 "MaxReports", size_t{}, sdbusplus::vtable::property_::const_,
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020047 [](const auto&) { return maxReports; });
48 dbusIface.register_property_r(
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010049 "MaxReportIdLength", size_t{},
Karol Niczyj32859b62021-05-19 10:20:46 +020050 sdbusplus::vtable::property_::const_,
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010051 [](const auto&) { return maxReportIdLength; });
Karol Niczyj32859b62021-05-19 10:20:46 +020052 dbusIface.register_property_r(
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020053 "MinInterval", uint64_t{}, sdbusplus::vtable::property_::const_,
54 [](const auto&) -> uint64_t { return minInterval.count(); });
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +020055
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +020056 dbusIface.register_method(
Wludzik, Jozefe2362792020-10-27 17:23:55 +010057 "AddReport", [this](boost::asio::yield_context& yield,
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010058 const std::string& reportId,
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020059 const std::string& reportingType,
60 const bool emitsReadingsUpdate,
61 const bool logToMetricReportsCollection,
62 const uint64_t interval,
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000063 ReadingParametersPastVersion metricParams) {
Lukasz Kazmierczak7e098e92021-09-16 15:59:56 +020064 constexpr auto enabledDefault = true;
Szymon Dompke3eb56862021-09-20 15:32:04 +020065 constexpr uint64_t appendLimitDefault = 0;
66 constexpr ReportUpdates reportUpdatesDefault =
Krzysztof Grobelny51497a02021-11-09 14:56:22 +010067 ReportUpdates::overwrite;
68
69 std::vector<ReportAction> reportActions;
70
71 if (emitsReadingsUpdate)
72 {
73 reportActions.emplace_back(
74 ReportAction::emitsReadingsUpdate);
75 }
76 if (logToMetricReportsCollection)
77 {
78 reportActions.emplace_back(
79 ReportAction::logToMetricReportsCollection);
80 }
81
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010082 return addReport(yield, reportId, reportId,
Krzysztof Grobelny51497a02021-11-09 14:56:22 +010083 utils::toReportingType(reportingType),
84 reportActions, Milliseconds(interval),
85 appendLimitDefault, reportUpdatesDefault,
86 convertToReadingParameters(
87 std::move(metricParams)),
88 enabledDefault)
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000089 .getPath();
90 });
91
92 dbusIface.register_method(
93 "AddReportFutureVersion",
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010094 [this](
95 boost::asio::yield_context& yield,
96 const std::string& reportId, const std::string& reportName,
97 const std::string& reportingType,
98 const std::string& reportUpdates,
99 const uint64_t appendLimit,
100 const std::vector<std::string>& reportActions,
101 const uint64_t interval, ReadingParameters metricParams) {
Lukasz Kazmierczak7e098e92021-09-16 15:59:56 +0200102 constexpr auto enabledDefault = true;
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100103 return addReport(yield, reportId, reportName,
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100104 utils::toReportingType(reportingType),
105 utils::transform(
106 reportActions,
107 [](const auto& reportAction) {
108 return utils::toReportAction(
109 reportAction);
110 }),
Szymon Dompke3eb56862021-09-20 15:32:04 +0200111 Milliseconds(interval), appendLimit,
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100112 utils::toReportUpdates(reportUpdates),
113 std::move(metricParams), enabledDefault)
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000114 .getPath();
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +0200115 });
116 });
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200117}
118
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +0200119void ReportManager::removeReport(const interfaces::Report* report)
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200120{
Wludzik, Jozefcb88cfd2020-09-28 16:38:57 +0200121 reports.erase(
122 std::remove_if(reports.begin(), reports.end(),
123 [report](const auto& x) { return report == x.get(); }),
124 reports.end());
Krzysztof Grobelny64b75a52020-09-18 10:17:16 +0200125}
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100126
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000127void ReportManager::verifyAddReport(
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100128 const std::string& reportId, const std::string& reportName,
129 const ReportingType reportingType, Milliseconds interval,
Ankita Vilas Gawadecd5b0b72022-01-20 20:55:04 +0000130 const ReportUpdates reportUpdates, const uint64_t appendLimit,
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000131 const std::vector<LabeledMetricParameters>& readingParams)
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100132{
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100133 if (reportingType == ReportingType::onChange)
134 {
135 throw sdbusplus::exception::SdBusError(
136 static_cast<int>(std::errc::invalid_argument),
137 "Invalid reportingType");
138 }
139
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100140 if (reports.size() >= maxReports)
141 {
142 throw sdbusplus::exception::SdBusError(
143 static_cast<int>(std::errc::too_many_files_open),
144 "Reached maximal report count");
145 }
146
Ankita Vilas Gawadecd5b0b72022-01-20 20:55:04 +0000147 if (appendLimit > maxAppendLimit)
148 {
149 throw sdbusplus::exception::SdBusError(
150 static_cast<int>(std::errc::invalid_argument),
151 "Append limit out of range");
152 }
153
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100154 if (reportingType == ReportingType::periodic && interval < minInterval)
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100155 {
156 throw sdbusplus::exception::SdBusError(
157 static_cast<int>(std::errc::invalid_argument), "Invalid interval");
158 }
Wludzik, Jozefbc766b42020-12-08 16:06:22 +0100159
Ankita Vilas Gawadecd5b0b72022-01-20 20:55:04 +0000160 size_t metricCount = 0;
161 for (auto metricParam : readingParams)
162 {
163 auto metricParamsVec =
164 metricParam.at_label<utils::tstring::SensorPath>();
165 metricCount += metricParamsVec.size();
166 }
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +0000167
Ankita Vilas Gawadecd5b0b72022-01-20 20:55:04 +0000168 if (readingParams.size() > maxNumberMetrics ||
169 metricCount > maxNumberMetrics)
Wludzik, Jozefbc766b42020-12-08 16:06:22 +0100170 {
171 throw sdbusplus::exception::SdBusError(
172 static_cast<int>(std::errc::argument_list_too_long),
173 "Too many reading parameters");
174 }
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +0000175
176 try
177 {
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000178 namespace ts = utils::tstring;
179
180 for (const LabeledMetricParameters& item : readingParams)
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +0000181 {
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000182 utils::toOperationType(
183 utils::toUnderlying(item.at_label<ts::OperationType>()));
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +0000184 }
185 }
186 catch (const std::exception& e)
187 {
188 throw sdbusplus::exception::SdBusError(
189 static_cast<int>(std::errc::invalid_argument), e.what());
190 }
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000191}
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100192
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000193interfaces::Report& ReportManager::addReport(
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100194 boost::asio::yield_context& yield, const std::string& reportId,
195 const std::string& reportName, const ReportingType reportingType,
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100196 const std::vector<ReportAction>& reportActions, Milliseconds interval,
197 const uint64_t appendLimit, const ReportUpdates reportUpdates,
Lukasz Kazmierczak7e098e92021-09-16 15:59:56 +0200198 ReadingParameters metricParams, const bool enabled)
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000199{
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000200 auto labeledMetricParams =
201 reportFactory->convertMetricParams(yield, metricParams);
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000202
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100203 return addReport(reportId, reportName, reportingType, reportActions,
204 interval, appendLimit, reportUpdates,
205 std::move(labeledMetricParams), enabled);
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000206}
207
208interfaces::Report& ReportManager::addReport(
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100209 const std::string& reportId, const std::string& reportName,
210 const ReportingType reportingType,
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100211 const std::vector<ReportAction>& reportActions, Milliseconds interval,
212 const uint64_t appendLimit, const ReportUpdates reportUpdates,
Lukasz Kazmierczak7e098e92021-09-16 15:59:56 +0200213 std::vector<LabeledMetricParameters> labeledMetricParams,
214 const bool enabled)
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000215{
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100216 const auto existingReportIds = utils::transform(
217 reports, [](const auto& report) { return report->getId(); });
218
Krzysztof Grobelnya950e422021-12-31 13:49:00 +0100219 auto [id, name] = utils::generateId(reportId, reportName, reportNameDefault,
220 existingReportIds, maxReportIdLength);
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100221
222 verifyAddReport(id, name, reportingType, interval, reportUpdates,
Ankita Vilas Gawadecd5b0b72022-01-20 20:55:04 +0000223 appendLimit, labeledMetricParams);
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000224
Szymon Dompke3eb56862021-09-20 15:32:04 +0200225 reports.emplace_back(reportFactory->make(
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100226 id, name, reportingType, reportActions, interval, appendLimit,
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100227 reportUpdates, *this, *reportStorage, labeledMetricParams, enabled));
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000228 return *reports.back();
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100229}
230
231void ReportManager::loadFromPersistent()
232{
233 std::vector<interfaces::JsonStorage::FilePath> paths =
234 reportStorage->list();
235
236 for (const auto& path : paths)
237 {
238 std::optional<nlohmann::json> data = reportStorage->load(path);
239 try
240 {
241 size_t version = data->at("Version").get<size_t>();
242 if (version != Report::reportVersion)
243 {
244 throw std::logic_error("Invalid version");
245 }
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100246 bool enabled = data->at("Enabled").get<bool>();
247 std::string& id = data->at("Id").get_ref<std::string&>();
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100248 std::string& name = data->at("Name").get_ref<std::string&>();
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100249
250 uint32_t reportingType = data->at("ReportingType").get<uint32_t>();
251 std::vector<ReportAction> reportActions = utils::transform(
252 data->at("ReportActions").get<std::vector<uint32_t>>(),
253 [](const auto reportAction) {
254 return utils::toReportAction(reportAction);
255 });
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100256 uint64_t interval = data->at("Interval").get<uint64_t>();
Szymon Dompke3eb56862021-09-20 15:32:04 +0200257 uint64_t appendLimit = data->at("AppendLimit").get<uint64_t>();
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100258 uint32_t reportUpdates = data->at("ReportUpdates").get<uint32_t>();
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000259 auto readingParameters =
260 data->at("ReadingParameters")
261 .get<std::vector<LabeledMetricParameters>>();
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100262
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100263 addReport(id, name, utils::toReportingType(reportingType),
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100264 reportActions, Milliseconds(interval), appendLimit,
265 utils::toReportUpdates(reportUpdates),
266 std::move(readingParameters), enabled);
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100267 }
268 catch (const std::exception& e)
269 {
270 phosphor::logging::log<phosphor::logging::level::ERR>(
271 "Failed to load report from storage",
272 phosphor::logging::entry(
Wludzik, Jozef982c5b52021-01-02 12:05:21 +0100273 "FILENAME=%s",
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100274 static_cast<std::filesystem::path>(path).c_str()),
Wludzik, Jozef982c5b52021-01-02 12:05:21 +0100275 phosphor::logging::entry("EXCEPTION_MSG=%s", e.what()));
Wludzik, Jozefe2362792020-10-27 17:23:55 +0100276 reportStorage->remove(path);
277 }
278 }
279}
Wludzik, Jozefd960e1f2021-01-08 09:25:59 +0100280
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100281void ReportManager::updateReport(const std::string& id)
Wludzik, Jozefd960e1f2021-01-08 09:25:59 +0100282{
283 for (auto& report : reports)
284 {
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100285 if (report->getId() == id)
Wludzik, Jozefd960e1f2021-01-08 09:25:59 +0100286 {
287 report->updateReadings();
288 return;
289 }
290 }
291}