blob: 96a0514a58a1387e1c2ea4e1bc90c6cd9542cbc9 [file] [log] [blame]
Patrick Venture863b9242018-03-08 08:29:23 -08001/**
2 * Copyright 2017 Google Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070017#include "host.hpp"
18
Patrick Venture863b9242018-03-08 08:29:23 -080019#include <cmath>
20#include <iostream>
21#include <memory>
22#include <mutex>
23
James Feist8154e322020-06-22 17:12:18 -070024template <typename T>
25void scaleHelper(T& ptr, int64_t value)
26{
27 if constexpr (std::is_same_v<ValueType, int64_t>)
28 {
29 ptr->scale(value);
30 }
31}
32
Patrick Venture563a3562018-10-30 09:31:26 -070033std::unique_ptr<Sensor> HostSensor::createTemp(const std::string& name,
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070034 int64_t timeout,
35 sdbusplus::bus::bus& bus,
36 const char* objPath, bool defer)
Patrick Venture863b9242018-03-08 08:29:23 -080037{
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070038 auto sensor =
39 std::make_unique<HostSensor>(name, timeout, bus, objPath, defer);
Patrick Venture863b9242018-03-08 08:29:23 -080040 sensor->value(0);
41
Patrick Venturef55349d2018-06-11 11:20:42 -070042 // DegreesC and value of 0 are the defaults at present, therefore testing
43 // this code only sees scale get updated as a property.
44
Patrick Venture863b9242018-03-08 08:29:23 -080045 // TODO(venture): Need to not hard-code that this is DegreesC and scale
46 // 10x-3 unless it is! :D
47 sensor->unit(ValueInterface::Unit::DegreesC);
James Feist8154e322020-06-22 17:12:18 -070048 scaleHelper(sensor, -3);
Patrick Venture863b9242018-03-08 08:29:23 -080049 sensor->emit_object_added();
Patrick Venturef55349d2018-06-11 11:20:42 -070050 // emit_object_added() can be called twice, harmlessly, the second time it
51 // doesn't actually happen, but we don't want to call it before we set up
52 // the initial values, so we should not let someone call this with
53 // defer=false.
Patrick Venture863b9242018-03-08 08:29:23 -080054
55 /* TODO(venture): Need to set that _updated is set to epoch or something
56 * else. what is the default value?
57 */
58 return sensor;
59}
60
James Feist8154e322020-06-22 17:12:18 -070061template <typename T>
62int64_t getScale(T* sensor)
63{
64 if constexpr (std::is_same_v<ValueType, int64_t>)
65 {
66 return sensor->scale();
67 }
68 return 0;
69}
70
71ValueType HostSensor::value(ValueType value)
Patrick Venture863b9242018-03-08 08:29:23 -080072{
73 std::lock_guard<std::mutex> guard(_lock);
74
75 _updated = std::chrono::high_resolution_clock::now();
James Feist8154e322020-06-22 17:12:18 -070076 _value = value * pow(10, getScale(this)); /* scale value */
Patrick Venture863b9242018-03-08 08:29:23 -080077
78 return ValueObject::value(value);
79}
80
81ReadReturn HostSensor::read(void)
82{
83 std::lock_guard<std::mutex> guard(_lock);
84
85 /* This doesn't sanity check anything, that's the caller's job. */
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070086 struct ReadReturn r = {_value, _updated};
Patrick Venture863b9242018-03-08 08:29:23 -080087
88 return r;
89}
90
91void HostSensor::write(double value)
92{
93 throw std::runtime_error("Not Implemented.");
94}