blob: 1c530f3bc08f62e1d2d52bcf03be74e41ce22ef6 [file] [log] [blame]
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02001#include "report_factory.hpp"
2
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +01003#include "metric.hpp"
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +02004#include "report.hpp"
Wludzik, Jozefe2362792020-10-27 17:23:55 +01005#include "sensor.hpp"
Krzysztof Grobelny80697712021-03-04 09:49:27 +00006#include "utils/clock.hpp"
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +00007#include "utils/conversion.hpp"
Wludzik, Jozef1477fe62021-01-02 11:56:10 +01008#include "utils/dbus_mapper.hpp"
Wludzik, Jozefe2362792020-10-27 17:23:55 +01009#include "utils/transform.hpp"
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020010
11ReportFactory::ReportFactory(
Wludzik, Jozefe2362792020-10-27 17:23:55 +010012 std::shared_ptr<sdbusplus::asio::connection> bus,
Wludzik, Jozef1477fe62021-01-02 11:56:10 +010013 const std::shared_ptr<sdbusplus::asio::object_server>& objServer,
14 SensorCache& sensorCache) :
Wludzik, Jozefe2362792020-10-27 17:23:55 +010015 bus(std::move(bus)),
Wludzik, Jozef1477fe62021-01-02 11:56:10 +010016 objServer(objServer), sensorCache(sensorCache)
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020017{}
18
19std::unique_ptr<interfaces::Report> ReportFactory::make(
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010020 const std::string& id, const std::string& name,
21 const ReportingType reportingType,
Krzysztof Grobelny51497a02021-11-09 14:56:22 +010022 const std::vector<ReportAction>& reportActions, Milliseconds period,
23 uint64_t appendLimit, const ReportUpdates reportUpdates,
Szymon Dompke3eb56862021-09-20 15:32:04 +020024 interfaces::ReportManager& reportManager,
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000025 interfaces::JsonStorage& reportStorage,
Krzysztof Grobelny493e62e2022-02-14 10:55:50 +010026 std::vector<LabeledMetricParameters> labeledMetricParams, bool enabled,
27 Readings readings) const
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020028{
Krzysztof Grobelnyf7ea2992022-01-27 11:04:58 +010029 auto metrics = utils::transform(
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000030 labeledMetricParams,
31 [this](const LabeledMetricParameters& param)
32 -> std::shared_ptr<interfaces::Metric> {
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000033 namespace ts = utils::tstring;
34
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000035 return std::make_shared<Metric>(
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000036 getSensors(param.at_label<ts::SensorPath>()),
37 param.at_label<ts::OperationType>(), param.at_label<ts::Id>(),
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000038 param.at_label<ts::CollectionTimeScope>(),
Krzysztof Grobelny80697712021-03-04 09:49:27 +000039 param.at_label<ts::CollectionDuration>(),
40 std::make_unique<Clock>());
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000041 });
Krzysztof Grobelnyc8e3a642020-10-23 12:29:16 +020042
Krzysztof Grobelny493e62e2022-02-14 10:55:50 +010043 return std::make_unique<Report>(
44 bus->get_io_context(), objServer, id, name, reportingType,
45 reportActions, period, appendLimit, reportUpdates, reportManager,
46 reportStorage, std::move(metrics), *this, enabled,
47 std::make_unique<Clock>(), std::move(readings));
Szymon Dompkefdb06a12022-02-11 11:04:44 +010048}
49
50void ReportFactory::updateMetrics(
51 std::vector<std::shared_ptr<interfaces::Metric>>& metrics, bool enabled,
52 const ReadingParameters& metricParams) const
53{
54 auto labeledMetricParams = convertMetricParams(metricParams);
55 std::vector<std::shared_ptr<interfaces::Metric>> oldMetrics = metrics;
56 std::vector<std::shared_ptr<interfaces::Metric>> newMetrics;
57
58 for (const auto& labeledMetricParam : labeledMetricParams)
59 {
60 auto existing = std::find_if(oldMetrics.begin(), oldMetrics.end(),
61 [labeledMetricParam](auto metric) {
62 return labeledMetricParam ==
63 metric->dumpConfiguration();
64 });
65
66 if (existing != oldMetrics.end())
67 {
68 newMetrics.emplace_back(*existing);
69 oldMetrics.erase(existing);
70 continue;
71 }
72
73 namespace ts = utils::tstring;
74 newMetrics.emplace_back(std::make_shared<Metric>(
75 getSensors(labeledMetricParam.at_label<ts::SensorPath>()),
76 labeledMetricParam.at_label<ts::OperationType>(),
77 labeledMetricParam.at_label<ts::Id>(),
78 labeledMetricParam.at_label<ts::CollectionTimeScope>(),
79 labeledMetricParam.at_label<ts::CollectionDuration>(),
80 std::make_unique<Clock>()));
81
82 if (enabled)
83 {
84 newMetrics.back()->initialize();
85 }
86 }
87
88 if (enabled)
89 {
90 for (auto& metric : oldMetrics)
91 {
92 metric->deinitialize();
93 }
94 }
95
96 metrics = std::move(newMetrics);
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020097}
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +010098
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000099Sensors ReportFactory::getSensors(
Szymon Dompke94f71c52021-12-10 07:16:33 +0100100 const std::vector<LabeledSensorInfo>& sensorPaths) const
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +0100101{
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +0000102 using namespace utils::tstring;
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +0100103
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100104 return utils::transform(
105 sensorPaths,
Szymon Dompke94f71c52021-12-10 07:16:33 +0100106 [this](const LabeledSensorInfo& sensorPath)
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100107 -> std::shared_ptr<interfaces::Sensor> {
108 return sensorCache.makeSensor<Sensor>(
109 sensorPath.at_label<Service>(), sensorPath.at_label<Path>(),
110 sensorPath.at_label<Metadata>(), bus->get_io_context(), bus);
111 });
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +0100112}
113
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000114std::vector<LabeledMetricParameters> ReportFactory::convertMetricParams(
115 boost::asio::yield_context& yield,
116 const ReadingParameters& metricParams) const
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +0100117{
Szymon Dompkefdb06a12022-02-11 11:04:44 +0100118 if (metricParams.empty())
119 {
120 return {};
121 }
Wludzik, Jozef1477fe62021-01-02 11:56:10 +0100122 auto tree = utils::getSubTreeSensors(yield, bus);
Szymon Dompkefdb06a12022-02-11 11:04:44 +0100123 return getMetricParamsFromSensorTree(metricParams, tree);
124}
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000125
Szymon Dompkefdb06a12022-02-11 11:04:44 +0100126std::vector<LabeledMetricParameters> ReportFactory::convertMetricParams(
127 const ReadingParameters& metricParams) const
128{
129 if (metricParams.empty())
130 {
131 return {};
132 }
133 auto tree = utils::getSubTreeSensors(bus);
134 return getMetricParamsFromSensorTree(metricParams, tree);
135}
136
137std::vector<LabeledMetricParameters>
138 ReportFactory::getMetricParamsFromSensorTree(
139 const ReadingParameters& metricParams,
140 const std::vector<utils::SensorTree>& tree) const
141{
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000142 return utils::transform(metricParams, [&tree](const auto& item) {
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100143 auto [sensorPaths, operationType, id, collectionTimeScope,
144 collectionDuration] = item;
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000145
Szymon Dompke94f71c52021-12-10 07:16:33 +0100146 std::vector<LabeledSensorInfo> sensorParameters;
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +0000147
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100148 for (const auto& [sensorPath, metadata] : sensorPaths)
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000149 {
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000150 auto it = std::find_if(
151 tree.begin(), tree.end(),
Krzysztof Grobelnyfbeb5bf2022-01-03 09:41:29 +0100152 [path = sensorPath](const auto& v) { return v.first == path; });
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000153
154 if (it != tree.end() && it->second.size() == 1)
155 {
156 const auto& [service, ifaces] = it->second.front();
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100157 sensorParameters.emplace_back(service, sensorPath, metadata);
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000158 }
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000159 }
160
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000161 if (sensorParameters.size() != sensorPaths.size())
162 {
163 throw sdbusplus::exception::SdBusError(
164 static_cast<int>(std::errc::invalid_argument),
165 "Could not find service for provided sensors");
166 }
167
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100168 if (operationType.empty())
169 {
170 operationType = utils::enumToString(OperationType::avg);
171 }
Krzysztof Grobelny60fee072022-01-13 16:25:04 +0100172 else if (operationType == "SINGLE")
173 {
174 operationType = utils::enumToString(OperationType::avg);
175 collectionTimeScope =
176 utils::enumToString(CollectionTimeScope::point);
177 }
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100178
179 if (collectionTimeScope.empty())
180 {
181 collectionTimeScope =
182 utils::enumToString(CollectionTimeScope::point);
183 }
184
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000185 return LabeledMetricParameters(
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100186 std::move(sensorParameters), utils::toOperationType(operationType),
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100187 id, utils::toCollectionTimeScope(collectionTimeScope),
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000188 CollectionDuration(Milliseconds(collectionDuration)));
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000189 });
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +0100190}