Create DBus objects
Create DBus objects for configured sensors.
Change-Id: I26e0b9bc81ce8bf1798e7f67396ace1b954a2028
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/interface.hpp b/interface.hpp
index 9147acc..b3bf73e 100644
--- a/interface.hpp
+++ b/interface.hpp
@@ -9,4 +9,9 @@
using ValueInterface = sdbusplus::xyz::openbmc_project::Sensor::server::Value;
using ValueObject = ServerObject<ValueInterface>;
+enum class InterfaceType
+{
+ VALUE,
+};
+
// vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
diff --git a/mainloop.cpp b/mainloop.cpp
index 78478a6..3ba365c 100644
--- a/mainloop.cpp
+++ b/mainloop.cpp
@@ -23,7 +23,6 @@
#include "hwmon.hpp"
#include "sysfs.hpp"
#include "mainloop.hpp"
-#include "interface.hpp"
using namespace std::literals::chrono_literals;
@@ -75,7 +74,21 @@
continue;
}
- auto value = std::make_tuple(std::move(i.second), std::move(label));
+ Object o;
+ std::string objectPath{_root};
+
+ objectPath.append("/");
+ objectPath.append(i.first.first);
+ objectPath.append("/");
+ objectPath.append(label);
+
+ auto iface = std::make_shared<ValueObject>(_bus, objectPath.c_str());
+ o.emplace(InterfaceType::VALUE, iface);
+
+ auto value = std::make_tuple(
+ std::move(i.second),
+ std::move(label),
+ std::move(o));
state[std::move(i.first)] = std::move(value);
}
diff --git a/mainloop.hpp b/mainloop.hpp
index c017ba9..cff5123 100644
--- a/mainloop.hpp
+++ b/mainloop.hpp
@@ -1,8 +1,13 @@
#pragma once
#include <string>
+#include <vector>
+#include <experimental/any>
#include <sdbusplus/server.hpp>
#include "sensorset.hpp"
+#include "interface.hpp"
+
+using Object = std::map<InterfaceType, std::experimental::any>;
/** @class MainLoop
* @brief hwmon-readd main application loop.
@@ -46,7 +51,7 @@
void shutdown() noexcept;
private:
- using mapped_type = std::tuple<SensorSet::mapped_type, std::string>;
+ using mapped_type = std::tuple<SensorSet::mapped_type, std::string, Object>;
using SensorState = std::map<SensorSet::key_type, mapped_type>;
/** @brief sdbusplus bus client connection. */