blob: 35c7f45c9ee5f5e989526d9dd7c8e35c0825dd3e [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),
51 ValueObject(bus, objPath, defer)
Patrick Venturea83a3ec2020-08-04 09:52:05 -070052 {}
Patrick Venture863b9242018-03-08 08:29:23 -080053
James Feist8154e322020-06-22 17:12:18 -070054 ValueType value(ValueType value) override;
Patrick Venture863b9242018-03-08 08:29:23 -080055
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070056 ReadReturn read(void) override;
57 void write(double value) override;
Patrick Venture863b9242018-03-08 08:29:23 -080058
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070059 private:
60 /*
61 * _lock will be used to make sure _updated & _value are updated
62 * together.
63 */
64 std::mutex _lock;
65 std::chrono::high_resolution_clock::time_point _updated;
66 double _value = 0;
Patrick Venture863b9242018-03-08 08:29:23 -080067};
Patrick Venturea0764872020-08-08 07:48:43 -070068
69} // namespace pid_control