blob: 952b4f228a9defd38e379f8b1781031557430769 [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,
Lukasz Kazmierczak7e098e92021-09-16 15:59:56 +020026 std::vector<LabeledMetricParameters> labeledMetricParams,
27 bool enabled) const
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020028{
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000029 std::vector<std::shared_ptr<interfaces::Metric>> metrics = utils::transform(
30 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 Grobelny51f0fd52021-12-28 16:32:08 +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), enabled, std::make_unique<Clock>());
Wludzik, Jozef2f9f9b82020-10-13 09:07:45 +020047}
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +010048
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000049Sensors ReportFactory::getSensors(
50 const std::vector<LabeledSensorParameters>& sensorPaths) const
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +010051{
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +000052 using namespace utils::tstring;
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +010053
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010054 return utils::transform(
55 sensorPaths,
56 [this](const LabeledSensorParameters& sensorPath)
57 -> std::shared_ptr<interfaces::Sensor> {
58 return sensorCache.makeSensor<Sensor>(
59 sensorPath.at_label<Service>(), sensorPath.at_label<Path>(),
60 sensorPath.at_label<Metadata>(), bus->get_io_context(), bus);
61 });
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +010062}
63
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000064std::vector<LabeledMetricParameters> ReportFactory::convertMetricParams(
65 boost::asio::yield_context& yield,
66 const ReadingParameters& metricParams) const
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +010067{
Wludzik, Jozef1477fe62021-01-02 11:56:10 +010068 auto tree = utils::getSubTreeSensors(yield, bus);
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000069
70 return utils::transform(metricParams, [&tree](const auto& item) {
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010071 auto [sensorPaths, operationType, id, collectionTimeScope,
72 collectionDuration] = item;
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000073
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000074 std::vector<LabeledSensorParameters> sensorParameters;
Krzysztof Grobelnye8fc5752021-02-05 14:30:45 +000075
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010076 for (const auto& [sensorPath, metadata] : sensorPaths)
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000077 {
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000078 auto it = std::find_if(
79 tree.begin(), tree.end(),
Krzysztof Grobelnyfbeb5bf2022-01-03 09:41:29 +010080 [path = sensorPath](const auto& v) { return v.first == path; });
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000081
82 if (it != tree.end() && it->second.size() == 1)
83 {
84 const auto& [service, ifaces] = it->second.front();
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010085 sensorParameters.emplace_back(service, sensorPath, metadata);
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000086 }
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +000087 }
88
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +000089 if (sensorParameters.size() != sensorPaths.size())
90 {
91 throw sdbusplus::exception::SdBusError(
92 static_cast<int>(std::errc::invalid_argument),
93 "Could not find service for provided sensors");
94 }
95
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +010096 if (operationType.empty())
97 {
98 operationType = utils::enumToString(OperationType::avg);
99 }
100
101 if (collectionTimeScope.empty())
102 {
103 collectionTimeScope =
104 utils::enumToString(CollectionTimeScope::point);
105 }
106
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000107 return LabeledMetricParameters(
Krzysztof Grobelny51497a02021-11-09 14:56:22 +0100108 std::move(sensorParameters), utils::toOperationType(operationType),
Krzysztof Grobelnyb8cc78d2021-11-29 15:54:53 +0100109 id, utils::toCollectionTimeScope(collectionTimeScope),
Krzysztof Grobelnydcc4e192021-03-08 09:09:34 +0000110 CollectionDuration(Milliseconds(collectionDuration)));
Krzysztof Grobelnyd2238192020-12-02 09:27:28 +0000111 });
Krzysztof Grobelny6ccfcbf2020-11-04 09:31:36 +0100112}