blob: 815ed4947af205df50654bf49a1671f3ec56ad4b [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 */
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070016#include "dbuspassive.hpp"
17
James Feist98b704e2019-06-03 16:24:53 -070018#include "dbuspassiveredundancy.hpp"
James Feist0c8223b2019-05-08 15:33:33 -070019#include "util.hpp"
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070020
Patrick Venturea83a3ec2020-08-04 09:52:05 -070021#include <sdbusplus/bus.hpp>
22
Patrick Venture863b9242018-03-08 08:29:23 -080023#include <chrono>
24#include <cmath>
Patrick Venture0ef1faf2018-06-13 12:50:53 -070025#include <memory>
Patrick Venture863b9242018-03-08 08:29:23 -080026#include <mutex>
Patrick Venture0ef1faf2018-06-13 12:50:53 -070027#include <string>
James Feist1f802f52019-02-08 13:51:43 -080028#include <variant>
Patrick Venture863b9242018-03-08 08:29:23 -080029
Patrick Venturea0764872020-08-08 07:48:43 -070030namespace pid_control
31{
32
Patrick Venture563a3562018-10-30 09:31:26 -070033std::unique_ptr<ReadInterface> DbusPassive::createDbusPassive(
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070034 sdbusplus::bus::bus& bus, const std::string& type, const std::string& id,
James Feist98b704e2019-06-03 16:24:53 -070035 DbusHelperInterface* helper, const conf::SensorConfig* info,
36 const std::shared_ptr<DbusPassiveRedundancy>& redundancy)
Patrick Venture0ef1faf2018-06-13 12:50:53 -070037{
38 if (helper == nullptr)
39 {
40 return nullptr;
41 }
Patrick Venture7af157b2018-10-30 11:24:40 -070042 if (!validType(type))
Patrick Venture0ef1faf2018-06-13 12:50:53 -070043 {
44 return nullptr;
45 }
46
Patrick Venture863b9242018-03-08 08:29:23 -080047 /* Need to get the scale and initial value */
James Feist9fa90c12019-01-11 15:35:22 -080048 auto tempBus = sdbusplus::bus::new_system();
Patrick Venturef8cb4642018-10-30 12:02:53 -070049
Patrick Venture863b9242018-03-08 08:29:23 -080050 /* service == busname */
Patrick Venture7af157b2018-10-30 11:24:40 -070051 std::string path = getSensorPath(type, id);
Patrick Venture34ddc902018-10-30 11:05:17 -070052
Patrick Venture863b9242018-03-08 08:29:23 -080053 struct SensorProperties settings;
Patrick Venturef8cb4642018-10-30 12:02:53 -070054 bool failed;
Patrick Venture863b9242018-03-08 08:29:23 -080055
Patrick Venturef8cb4642018-10-30 12:02:53 -070056 try
57 {
58 std::string service = helper->getService(tempBus, sensorintf, path);
59
60 helper->getProperties(tempBus, service, path, &settings);
61 failed = helper->thresholdsAsserted(tempBus, service, path);
62 }
63 catch (const std::exception& e)
64 {
65 return nullptr;
66 }
67
Patrick Venture6b9f5992019-09-10 09:18:28 -070068 /* if these values are zero, they're ignored. */
69 if (info->ignoreDbusMinMax)
70 {
71 settings.min = 0;
72 settings.max = 0;
73 }
74
Patrick Venturef8cb4642018-10-30 12:02:53 -070075 return std::make_unique<DbusPassive>(bus, type, id, helper, settings,
James Feist98b704e2019-06-03 16:24:53 -070076 failed, path, redundancy);
Patrick Venturef8cb4642018-10-30 12:02:53 -070077}
78
James Feist98b704e2019-06-03 16:24:53 -070079DbusPassive::DbusPassive(
80 sdbusplus::bus::bus& bus, const std::string& type, const std::string& id,
81 DbusHelperInterface* helper, const struct SensorProperties& settings,
82 bool failed, const std::string& path,
83 const std::shared_ptr<DbusPassiveRedundancy>& redundancy) :
Patrick Venturef8cb4642018-10-30 12:02:53 -070084 ReadInterface(),
85 _bus(bus), _signal(bus, getMatch(type, id).c_str(), dbusHandleSignal, this),
James Feist98b704e2019-06-03 16:24:53 -070086 _id(id), _helper(helper), _failed(failed), path(path),
87 redundancy(redundancy)
88
Patrick Venturef8cb4642018-10-30 12:02:53 -070089{
Patrick Venture863b9242018-03-08 08:29:23 -080090 _scale = settings.scale;
91 _value = settings.value * pow(10, _scale);
James Feist75eb7692019-02-25 12:50:02 -080092 _min = settings.min * pow(10, _scale);
93 _max = settings.max * pow(10, _scale);
Patrick Venture863b9242018-03-08 08:29:23 -080094 _updated = std::chrono::high_resolution_clock::now();
95}
96
97ReadReturn DbusPassive::read(void)
98{
99 std::lock_guard<std::mutex> guard(_lock);
100
Patrick Ventureda4a5dd2018-08-31 09:42:48 -0700101 struct ReadReturn r = {_value, _updated};
Patrick Venture863b9242018-03-08 08:29:23 -0800102
103 return r;
104}
105
106void DbusPassive::setValue(double value)
107{
108 std::lock_guard<std::mutex> guard(_lock);
109
110 _value = value;
111 _updated = std::chrono::high_resolution_clock::now();
112}
113
James Feist36b7d8e2018-10-05 15:39:01 -0700114bool DbusPassive::getFailed(void) const
115{
James Feist98b704e2019-06-03 16:24:53 -0700116 if (redundancy)
117 {
118 const std::set<std::string>& failures = redundancy->getFailed();
119 if (failures.find(path) != failures.end())
120 {
121 return true;
122 }
123 }
James Feist4b36f262020-07-07 16:56:41 -0700124
125 return _failed || !_functional;
James Feist36b7d8e2018-10-05 15:39:01 -0700126}
127
128void DbusPassive::setFailed(bool value)
129{
130 _failed = value;
131}
132
James Feist4b36f262020-07-07 16:56:41 -0700133void DbusPassive::setFunctional(bool value)
134{
135 _functional = value;
136}
137
Patrick Venture863b9242018-03-08 08:29:23 -0800138int64_t DbusPassive::getScale(void)
139{
140 return _scale;
141}
142
Patrick Venture563a3562018-10-30 09:31:26 -0700143std::string DbusPassive::getID(void)
Patrick Venture863b9242018-03-08 08:29:23 -0800144{
145 return _id;
146}
147
James Feist75eb7692019-02-25 12:50:02 -0800148double DbusPassive::getMax(void)
149{
150 return _max;
151}
152
153double DbusPassive::getMin(void)
154{
155 return _min;
156}
157
Patrick Venture7af157b2018-10-30 11:24:40 -0700158int handleSensorValue(sdbusplus::message::message& msg, DbusPassive* owner)
Patrick Venture863b9242018-03-08 08:29:23 -0800159{
Patrick Venture863b9242018-03-08 08:29:23 -0800160 std::string msgSensor;
James Feist1f802f52019-02-08 13:51:43 -0800161 std::map<std::string, std::variant<int64_t, double, bool>> msgData;
Patrick Ventured0c75662018-06-12 19:03:21 -0700162
163 msg.read(msgSensor, msgData);
Patrick Venture863b9242018-03-08 08:29:23 -0800164
165 if (msgSensor == "xyz.openbmc_project.Sensor.Value")
166 {
167 auto valPropMap = msgData.find("Value");
168 if (valPropMap != msgData.end())
169 {
James Feist1f802f52019-02-08 13:51:43 -0800170 double value =
171 std::visit(VariantToDoubleVisitor(), valPropMap->second);
Patrick Venture863b9242018-03-08 08:29:23 -0800172
James Feistc065cf12018-07-05 10:23:11 -0700173 value *= std::pow(10, owner->getScale());
Patrick Venture863b9242018-03-08 08:29:23 -0800174
James Feist75eb7692019-02-25 12:50:02 -0800175 scaleSensorReading(owner->getMin(), owner->getMax(), value);
176
Patrick Ventured0c75662018-06-12 19:03:21 -0700177 owner->setValue(value);
Patrick Venture863b9242018-03-08 08:29:23 -0800178 }
179 }
James Feist36b7d8e2018-10-05 15:39:01 -0700180 else if (msgSensor == "xyz.openbmc_project.Sensor.Threshold.Critical")
181 {
182 auto criticalAlarmLow = msgData.find("CriticalAlarmLow");
183 auto criticalAlarmHigh = msgData.find("CriticalAlarmHigh");
184 if (criticalAlarmHigh == msgData.end() &&
185 criticalAlarmLow == msgData.end())
186 {
187 return 0;
188 }
189
190 bool asserted = false;
191 if (criticalAlarmLow != msgData.end())
192 {
James Feist1f802f52019-02-08 13:51:43 -0800193 asserted = std::get<bool>(criticalAlarmLow->second);
James Feist36b7d8e2018-10-05 15:39:01 -0700194 }
195
196 // checking both as in theory you could de-assert one threshold and
197 // assert the other at the same moment
198 if (!asserted && criticalAlarmHigh != msgData.end())
199 {
James Feist1f802f52019-02-08 13:51:43 -0800200 asserted = std::get<bool>(criticalAlarmHigh->second);
James Feist36b7d8e2018-10-05 15:39:01 -0700201 }
202 owner->setFailed(asserted);
203 }
James Feist4b36f262020-07-07 16:56:41 -0700204 else if (msgSensor ==
205 "xyz.openbmc_project.State.Decorator.OperationalStatus")
206 {
207 auto functional = msgData.find("Functional");
208 if (functional == msgData.end())
209 {
210 return 0;
211 }
212 bool asserted = std::get<bool>(functional->second);
213 owner->setFunctional(asserted);
214 }
Patrick Venture863b9242018-03-08 08:29:23 -0800215
216 return 0;
217}
Patrick Ventured0c75662018-06-12 19:03:21 -0700218
Patrick Venture7af157b2018-10-30 11:24:40 -0700219int dbusHandleSignal(sd_bus_message* msg, void* usrData, sd_bus_error* err)
Patrick Ventured0c75662018-06-12 19:03:21 -0700220{
221 auto sdbpMsg = sdbusplus::message::message(msg);
222 DbusPassive* obj = static_cast<DbusPassive*>(usrData);
223
Patrick Venture7af157b2018-10-30 11:24:40 -0700224 return handleSensorValue(sdbpMsg, obj);
Patrick Ventured0c75662018-06-12 19:03:21 -0700225}
Patrick Venturea0764872020-08-08 07:48:43 -0700226
227} // namespace pid_control