blob: bf935b74132aba2af4b122307c201d125a71e38c [file] [log] [blame]
Patrick Venture863b9242018-03-08 08:29:23 -08001#pragma once
2
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07003#include "sensor.hpp"
Patrick Venture863b9242018-03-08 08:29:23 -08004
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07005#include <sdbusplus/bus.hpp>
6#include <sdbusplus/server.hpp>
Patrick Venture1248b152018-10-30 19:09:54 -07007#include <xyz/openbmc_project/Sensor/Value/server.hpp>
Patrick Venture863b9242018-03-08 08:29:23 -08008
Patrick Venturea83a3ec2020-08-04 09:52:05 -07009#include <memory>
10#include <mutex>
11#include <type_traits>
12
Patrick Venture863b9242018-03-08 08:29:23 -080013template <typename... T>
14using ServerObject = typename sdbusplus::server::object::object<T...>;
15
16using ValueInterface = sdbusplus::xyz::openbmc_project::Sensor::server::Value;
17using ValueObject = ServerObject<ValueInterface>;
18
Patrick Venturea0764872020-08-08 07:48:43 -070019namespace pid_control
20{
21
James Feist8154e322020-06-22 17:12:18 -070022class ValueHelper : public ValueInterface
23{
24
25 public:
26 auto operator()() const
27 {
28 return value();
29 }
30};
31
32constexpr bool usingDouble =
33 std::is_same_v<std::result_of_t<ValueHelper()>, double>;
34using ValueType = std::conditional_t<usingDouble, double, int64_t>;
35
Patrick Venture863b9242018-03-08 08:29:23 -080036/*
37 * HostSensor object is a Sensor derivative that also implements a ValueObject,
38 * which comes from the dbus as an object that implements Sensor.Value.
39 */
40class HostSensor : public Sensor, public ValueObject
41{
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070042 public:
Patrick Venture563a3562018-10-30 09:31:26 -070043 static std::unique_ptr<Sensor> createTemp(const std::string& name,
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070044 int64_t timeout,
45 sdbusplus::bus::bus& bus,
46 const char* objPath, bool defer);
Patrick Venture863b9242018-03-08 08:29:23 -080047
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070048 HostSensor(const std::string& name, int64_t timeout,
49 sdbusplus::bus::bus& bus, const char* objPath, bool defer) :
50 Sensor(name, timeout),
Patrick Williamsd8c5a452022-04-07 16:08:56 -050051 ValueObject(bus, objPath,
52 defer ? ValueObject::action::defer_emit
53 : ValueObject::action::emit_object_added)
Patrick Venturea83a3ec2020-08-04 09:52:05 -070054 {}
Patrick Venture863b9242018-03-08 08:29:23 -080055
James Feist8154e322020-06-22 17:12:18 -070056 ValueType value(ValueType value) override;
Patrick Venture863b9242018-03-08 08:29:23 -080057
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070058 ReadReturn read(void) override;
59 void write(double value) override;
Harvey Wu17971ef2021-02-17 14:36:38 +080060 bool getFailed(void) override;
Patrick Venture863b9242018-03-08 08:29:23 -080061
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070062 private:
63 /*
64 * _lock will be used to make sure _updated & _value are updated
65 * together.
66 */
67 std::mutex _lock;
68 std::chrono::high_resolution_clock::time_point _updated;
69 double _value = 0;
Patrick Venture863b9242018-03-08 08:29:23 -080070};
Patrick Venturea0764872020-08-08 07:48:43 -070071
72} // namespace pid_control