blob: 4f86ff6641a8ea61f913235e1578a398f0e37054 [file] [log] [blame]
James Feist7136a5a2018-07-19 09:52:05 -07001/*
2// Copyright (c) 2018 Intel Corporation
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 Venture7e952d92020-10-05 15:58:52 -070016#include "dbusconfiguration.hpp"
James Feist7136a5a2018-07-19 09:52:05 -070017
Patrick Venture07716592018-10-14 11:46:40 -070018#include "conf.hpp"
Patrick Ventureef1f8862020-08-17 09:34:35 -070019#include "dbushelper.hpp"
20#include "dbusutil.hpp"
James Feist0c8223b2019-05-08 15:33:33 -070021#include "util.hpp"
Patrick Venture07716592018-10-14 11:46:40 -070022
James Feist1fe08952019-05-07 09:17:16 -070023#include <boost/asio/steady_timer.hpp>
Patrick Venturea83a3ec2020-08-04 09:52:05 -070024#include <sdbusplus/bus.hpp>
25#include <sdbusplus/bus/match.hpp>
26#include <sdbusplus/exception.hpp>
27
28#include <algorithm>
James Feist64f072a2018-08-10 16:39:24 -070029#include <chrono>
James Feist64f072a2018-08-10 16:39:24 -070030#include <functional>
James Feist7136a5a2018-07-19 09:52:05 -070031#include <iostream>
James Feist1fe08952019-05-07 09:17:16 -070032#include <list>
James Feist7136a5a2018-07-19 09:52:05 -070033#include <set>
34#include <unordered_map>
James Feist1f802f52019-02-08 13:51:43 -080035#include <variant>
James Feist7136a5a2018-07-19 09:52:05 -070036
Patrick Venturea0764872020-08-08 07:48:43 -070037namespace pid_control
38{
39
Patrick Venturee2ec0f62018-09-04 12:30:27 -070040constexpr const char* pidConfigurationInterface =
James Feist7136a5a2018-07-19 09:52:05 -070041 "xyz.openbmc_project.Configuration.Pid";
Patrick Venturee2ec0f62018-09-04 12:30:27 -070042constexpr const char* objectManagerInterface =
James Feist7136a5a2018-07-19 09:52:05 -070043 "org.freedesktop.DBus.ObjectManager";
Patrick Venturee2ec0f62018-09-04 12:30:27 -070044constexpr const char* pidZoneConfigurationInterface =
James Feist7136a5a2018-07-19 09:52:05 -070045 "xyz.openbmc_project.Configuration.Pid.Zone";
James Feist22c257a2018-08-31 14:07:12 -070046constexpr const char* stepwiseConfigurationInterface =
47 "xyz.openbmc_project.Configuration.Stepwise";
James Feistf0096a02019-02-21 11:25:22 -080048constexpr const char* thermalControlIface =
49 "xyz.openbmc_project.Control.ThermalMode";
Patrick Venturee2ec0f62018-09-04 12:30:27 -070050constexpr const char* sensorInterface = "xyz.openbmc_project.Sensor.Value";
Patrick Venture0911bfe2020-08-10 12:51:40 -070051constexpr const char* defaultPwmInterface =
52 "xyz.openbmc_project.Control.FanPwm";
James Feist7136a5a2018-07-19 09:52:05 -070053
James Feist991ebd82020-07-21 11:14:52 -070054using Association = std::tuple<std::string, std::string, std::string>;
55using Associations = std::vector<Association>;
56
James Feist5ec20272019-07-10 11:59:57 -070057namespace thresholds
58{
59constexpr const char* warningInterface =
60 "xyz.openbmc_project.Sensor.Threshold.Warning";
61constexpr const char* criticalInterface =
62 "xyz.openbmc_project.Sensor.Threshold.Critical";
63const std::array<const char*, 4> types = {"CriticalLow", "CriticalHigh",
64 "WarningLow", "WarningHigh"};
65
66} // namespace thresholds
67
James Feist7136a5a2018-07-19 09:52:05 -070068namespace dbus_configuration
69{
Jason Lingf3b04fd2020-07-24 09:33:04 -070070using SensorInterfaceType = std::pair<std::string, std::string>;
71
72inline std::string getSensorNameFromPath(const std::string& dbusPath)
73{
74 return dbusPath.substr(dbusPath.find_last_of("/") + 1);
75}
76
77inline std::string sensorNameToDbusName(const std::string& sensorName)
78{
79 std::string retString = sensorName;
80 std::replace(retString.begin(), retString.end(), ' ', '_');
81 return retString;
82}
James Feist5ec20272019-07-10 11:59:57 -070083
Patrick Williamsb228bc32022-07-22 19:26:56 -050084std::vector<std::string> getSelectedProfiles(sdbusplus::bus_t& bus)
James Feistf0096a02019-02-21 11:25:22 -080085{
86 std::vector<std::string> ret;
Patrick Williams8c051122023-05-10 07:50:59 -050087 auto mapper = bus.new_method_call("xyz.openbmc_project.ObjectMapper",
88 "/xyz/openbmc_project/object_mapper",
89 "xyz.openbmc_project.ObjectMapper",
90 "GetSubTree");
James Feistf0096a02019-02-21 11:25:22 -080091 mapper.append("/", 0, std::array<const char*, 1>{thermalControlIface});
92 std::unordered_map<
93 std::string, std::unordered_map<std::string, std::vector<std::string>>>
94 respData;
95
96 try
97 {
98 auto resp = bus.call(mapper);
99 resp.read(respData);
100 }
Patrick Williams0001ee02021-10-06 14:44:22 -0500101 catch (const sdbusplus::exception_t&)
James Feistf0096a02019-02-21 11:25:22 -0800102 {
103 // can't do anything without mapper call data
104 throw std::runtime_error("ObjectMapper Call Failure");
105 }
106 if (respData.empty())
107 {
108 // if the user has profiles but doesn't expose the interface to select
109 // one, just go ahead without using profiles
110 return ret;
111 }
112
113 // assumption is that we should only have a small handful of selected
114 // profiles at a time (probably only 1), so calling each individually should
115 // not incur a large cost
116 for (const auto& objectPair : respData)
117 {
118 const std::string& path = objectPair.first;
119 for (const auto& ownerPair : objectPair.second)
120 {
121 const std::string& busName = ownerPair.first;
122 auto getProfile =
123 bus.new_method_call(busName.c_str(), path.c_str(),
124 "org.freedesktop.DBus.Properties", "Get");
125 getProfile.append(thermalControlIface, "Current");
126 std::variant<std::string> variantResp;
127 try
128 {
129 auto resp = bus.call(getProfile);
130 resp.read(variantResp);
131 }
Patrick Williams0001ee02021-10-06 14:44:22 -0500132 catch (const sdbusplus::exception_t&)
James Feistf0096a02019-02-21 11:25:22 -0800133 {
134 throw std::runtime_error("Failure getting profile");
135 }
136 std::string mode = std::get<std::string>(variantResp);
137 ret.emplace_back(std::move(mode));
138 }
139 }
Patrick Venture39199b42020-10-08 14:40:29 -0700140 if constexpr (pid_control::conf::DEBUG)
James Feistf0096a02019-02-21 11:25:22 -0800141 {
142 std::cout << "Profiles selected: ";
143 for (const auto& profile : ret)
144 {
145 std::cout << profile << " ";
146 }
147 std::cout << "\n";
148 }
149 return ret;
150}
151
James Feist991ebd82020-07-21 11:14:52 -0700152int eventHandler(sd_bus_message* m, void* context, sd_bus_error*)
James Feist7136a5a2018-07-19 09:52:05 -0700153{
James Feist991ebd82020-07-21 11:14:52 -0700154 if (context == nullptr || m == nullptr)
James Feist1fe08952019-05-07 09:17:16 -0700155 {
156 throw std::runtime_error("Invalid match");
157 }
James Feist991ebd82020-07-21 11:14:52 -0700158
159 // we skip associations because the mapper populates these, not the sensors
Josh Lehan10e46ef2023-02-01 18:25:58 -0800160 const std::array<const char*, 2> skipList = {
161 "xyz.openbmc_project.Association",
162 "xyz.openbmc_project.Association.Definitions"};
James Feist991ebd82020-07-21 11:14:52 -0700163
Patrick Williamsb228bc32022-07-22 19:26:56 -0500164 sdbusplus::message_t message(m);
James Feist991ebd82020-07-21 11:14:52 -0700165 if (std::string(message.get_member()) == "InterfacesAdded")
166 {
167 sdbusplus::message::object_path path;
168 std::unordered_map<
169 std::string,
170 std::unordered_map<std::string, std::variant<Associations, bool>>>
171 data;
172
173 message.read(path, data);
174
175 for (const char* skip : skipList)
176 {
177 auto find = data.find(skip);
178 if (find != data.end())
179 {
180 data.erase(find);
181 if (data.empty())
182 {
183 return 1;
184 }
185 }
186 }
Josh Lehan10e46ef2023-02-01 18:25:58 -0800187
188 if constexpr (pid_control::conf::DEBUG)
189 {
190 std::cout << "New config detected: " << path.str << std::endl;
191 for (auto& d : data)
192 {
193 std::cout << "\tdata is " << d.first << std::endl;
194 for (auto& second : d.second)
195 {
196 std::cout << "\t\tdata is " << second.first << std::endl;
197 }
198 }
199 }
James Feist991ebd82020-07-21 11:14:52 -0700200 }
201
James Feist1fe08952019-05-07 09:17:16 -0700202 boost::asio::steady_timer* timer =
203 static_cast<boost::asio::steady_timer*>(context);
204
205 // do a brief sleep as we tend to get a bunch of these events at
206 // once
207 timer->expires_after(std::chrono::seconds(2));
208 timer->async_wait([](const boost::system::error_code ec) {
209 if (ec == boost::asio::error::operation_aborted)
210 {
211 /* another timer started*/
212 return;
213 }
214
215 std::cout << "New configuration detected, reloading\n.";
Yong Li298a95c2020-04-07 15:11:02 +0800216 tryRestartControlLoops();
James Feist1fe08952019-05-07 09:17:16 -0700217 });
218
219 return 1;
220}
221
Patrick Williamsb228bc32022-07-22 19:26:56 -0500222void createMatches(sdbusplus::bus_t& bus, boost::asio::steady_timer& timer)
James Feist1fe08952019-05-07 09:17:16 -0700223{
224 // this is a list because the matches can't be moved
Patrick Williamsb228bc32022-07-22 19:26:56 -0500225 static std::list<sdbusplus::bus::match_t> matches;
James Feist1fe08952019-05-07 09:17:16 -0700226
James Feist3987c8b2019-05-13 10:43:17 -0700227 const std::array<std::string, 4> interfaces = {
228 thermalControlIface, pidConfigurationInterface,
229 pidZoneConfigurationInterface, stepwiseConfigurationInterface};
James Feist1fe08952019-05-07 09:17:16 -0700230
231 // this list only needs to be created once
232 if (!matches.empty())
233 {
234 return;
235 }
236
237 // we restart when the configuration changes or there are new sensors
238 for (const auto& interface : interfaces)
239 {
240 matches.emplace_back(
241 bus,
242 "type='signal',member='PropertiesChanged',arg0namespace='" +
243 interface + "'",
244 eventHandler, &timer);
245 }
246 matches.emplace_back(
247 bus,
248 "type='signal',member='InterfacesAdded',arg0path='/xyz/openbmc_project/"
249 "sensors/'",
250 eventHandler, &timer);
Jinliang Wangc2a311b2023-04-26 18:36:56 +0000251 matches.emplace_back(bus,
252 "type='signal',member='InterfacesRemoved',arg0path='/"
253 "xyz/openbmc_project/sensors/'",
254 eventHandler, &timer);
James Feist1fe08952019-05-07 09:17:16 -0700255}
256
Jason Ling6fc301f2020-07-23 12:39:57 -0700257/**
258 * retrieve an attribute from the pid configuration map
259 * @param[in] base - the PID configuration map, keys are the attributes and
260 * value is the variant associated with that attribute.
261 * @param attributeName - the name of the attribute
262 * @return a variant holding the value associated with a key
263 * @throw runtime_error : attributeName is not in base
264 */
265inline DbusVariantType getPIDAttribute(
266 const std::unordered_map<std::string, DbusVariantType>& base,
267 const std::string& attributeName)
268{
269 auto search = base.find(attributeName);
270 if (search == base.end())
271 {
272 throw std::runtime_error("missing attribute " + attributeName);
273 }
274 return search->second;
275}
276
Harvey Wu239aa7d2022-11-18 08:43:34 +0800277inline void getCycleTimeSetting(
278 const std::unordered_map<std::string, DbusVariantType>& zone,
279 const int zoneIndex, const std::string& attributeName, uint64_t& value)
280{
281 auto findAttributeName = zone.find(attributeName);
282 if (findAttributeName != zone.end())
283 {
Patrick Williams8c051122023-05-10 07:50:59 -0500284 double tmpAttributeValue = std::visit(VariantToDoubleVisitor(),
285 zone.at(attributeName));
Harvey Wu239aa7d2022-11-18 08:43:34 +0800286 if (tmpAttributeValue >= 1.0)
287 {
288 value = static_cast<uint64_t>(tmpAttributeValue);
289 }
290 else
291 {
292 std::cerr << "Zone " << zoneIndex << ": " << attributeName
293 << " is invalid. Use default " << value << " ms\n";
294 }
295 }
296 else
297 {
298 std::cerr << "Zone " << zoneIndex << ": " << attributeName
299 << " cannot find setting. Use default " << value << " ms\n";
300 }
301}
302
James Feist5ec20272019-07-10 11:59:57 -0700303void populatePidInfo(
Harvey.Wua1ae4fa2022-10-28 17:38:35 +0800304 [[maybe_unused]] sdbusplus::bus_t& bus,
James Feist5ec20272019-07-10 11:59:57 -0700305 const std::unordered_map<std::string, DbusVariantType>& base,
Patrick Venture1df9e872020-10-08 15:35:01 -0700306 conf::ControllerInfo& info, const std::string* thresholdProperty,
Patrick Venture73823182020-10-08 15:12:51 -0700307 const std::map<std::string, conf::SensorConfig>& sensorConfig)
James Feist5ec20272019-07-10 11:59:57 -0700308{
Jason Ling6fc301f2020-07-23 12:39:57 -0700309 info.type = std::get<std::string>(getPIDAttribute(base, "Class"));
James Feist5ec20272019-07-10 11:59:57 -0700310 if (info.type == "fan")
311 {
312 info.setpoint = 0;
313 }
314 else
315 {
Jason Ling6fc301f2020-07-23 12:39:57 -0700316 info.setpoint = std::visit(VariantToDoubleVisitor(),
317 getPIDAttribute(base, "SetPoint"));
James Feist5ec20272019-07-10 11:59:57 -0700318 }
319
320 if (thresholdProperty != nullptr)
321 {
322 std::string interface;
323 if (*thresholdProperty == "WarningHigh" ||
324 *thresholdProperty == "WarningLow")
325 {
326 interface = thresholds::warningInterface;
327 }
328 else
329 {
330 interface = thresholds::criticalInterface;
331 }
Patrick Venture73823182020-10-08 15:12:51 -0700332 const std::string& path = sensorConfig.at(info.inputs.front()).readPath;
James Feist5ec20272019-07-10 11:59:57 -0700333
Patrick Venture8729eb92020-08-10 10:38:44 -0700334 DbusHelper helper(sdbusplus::bus::new_system());
Patrick Venture9b936922020-08-10 11:28:39 -0700335 std::string service = helper.getService(interface, path);
James Feist5ec20272019-07-10 11:59:57 -0700336 double reading = 0;
337 try
338 {
Patrick Venture9b936922020-08-10 11:28:39 -0700339 helper.getProperty(service, path, interface, *thresholdProperty,
340 reading);
James Feist5ec20272019-07-10 11:59:57 -0700341 }
Patrick Williamsb228bc32022-07-22 19:26:56 -0500342 catch (const sdbusplus::exception_t& ex)
James Feist5ec20272019-07-10 11:59:57 -0700343 {
344 // unsupported threshold, leaving reading at 0
345 }
346
347 info.setpoint += reading;
348 }
349
350 info.pidInfo.ts = 1.0; // currently unused
Jason Ling6fc301f2020-07-23 12:39:57 -0700351 info.pidInfo.proportionalCoeff = std::visit(
352 VariantToDoubleVisitor(), getPIDAttribute(base, "PCoefficient"));
353 info.pidInfo.integralCoeff = std::visit(
354 VariantToDoubleVisitor(), getPIDAttribute(base, "ICoefficient"));
Josh Lehanc612c052022-12-12 09:56:47 -0800355 // DCoefficient is below, it is optional, same reason as in buildjson.cpp
Jason Ling6fc301f2020-07-23 12:39:57 -0700356 info.pidInfo.feedFwdOffset = std::visit(
357 VariantToDoubleVisitor(), getPIDAttribute(base, "FFOffCoefficient"));
358 info.pidInfo.feedFwdGain = std::visit(
359 VariantToDoubleVisitor(), getPIDAttribute(base, "FFGainCoefficient"));
360 info.pidInfo.integralLimit.max = std::visit(
361 VariantToDoubleVisitor(), getPIDAttribute(base, "ILimitMax"));
362 info.pidInfo.integralLimit.min = std::visit(
363 VariantToDoubleVisitor(), getPIDAttribute(base, "ILimitMin"));
364 info.pidInfo.outLim.max = std::visit(VariantToDoubleVisitor(),
365 getPIDAttribute(base, "OutLimitMax"));
366 info.pidInfo.outLim.min = std::visit(VariantToDoubleVisitor(),
367 getPIDAttribute(base, "OutLimitMin"));
Patrick Williams8c051122023-05-10 07:50:59 -0500368 info.pidInfo.slewNeg = std::visit(VariantToDoubleVisitor(),
369 getPIDAttribute(base, "SlewNeg"));
370 info.pidInfo.slewPos = std::visit(VariantToDoubleVisitor(),
371 getPIDAttribute(base, "SlewPos"));
Josh Lehanc612c052022-12-12 09:56:47 -0800372
James Feist5ec20272019-07-10 11:59:57 -0700373 double negativeHysteresis = 0;
374 double positiveHysteresis = 0;
Josh Lehanc612c052022-12-12 09:56:47 -0800375 double derivativeCoeff = 0;
James Feist5ec20272019-07-10 11:59:57 -0700376
377 auto findNeg = base.find("NegativeHysteresis");
378 auto findPos = base.find("PositiveHysteresis");
Josh Lehanc612c052022-12-12 09:56:47 -0800379 auto findDerivative = base.find("DCoefficient");
James Feist5ec20272019-07-10 11:59:57 -0700380
381 if (findNeg != base.end())
382 {
Patrick Williams8c051122023-05-10 07:50:59 -0500383 negativeHysteresis = std::visit(VariantToDoubleVisitor(),
384 findNeg->second);
James Feist5ec20272019-07-10 11:59:57 -0700385 }
James Feist5ec20272019-07-10 11:59:57 -0700386 if (findPos != base.end())
387 {
Patrick Williams8c051122023-05-10 07:50:59 -0500388 positiveHysteresis = std::visit(VariantToDoubleVisitor(),
389 findPos->second);
James Feist5ec20272019-07-10 11:59:57 -0700390 }
Josh Lehanc612c052022-12-12 09:56:47 -0800391 if (findDerivative != base.end())
392 {
Patrick Williams8c051122023-05-10 07:50:59 -0500393 derivativeCoeff = std::visit(VariantToDoubleVisitor(),
394 findDerivative->second);
Josh Lehanc612c052022-12-12 09:56:47 -0800395 }
396
James Feist5ec20272019-07-10 11:59:57 -0700397 info.pidInfo.negativeHysteresis = negativeHysteresis;
398 info.pidInfo.positiveHysteresis = positiveHysteresis;
Josh Lehanc612c052022-12-12 09:56:47 -0800399 info.pidInfo.derivativeCoeff = derivativeCoeff;
James Feist5ec20272019-07-10 11:59:57 -0700400}
401
Patrick Williamsb228bc32022-07-22 19:26:56 -0500402bool init(sdbusplus::bus_t& bus, boost::asio::steady_timer& timer,
Patrick Venture73823182020-10-08 15:12:51 -0700403 std::map<std::string, conf::SensorConfig>& sensorConfig,
404 std::map<int64_t, conf::PIDConf>& zoneConfig,
405 std::map<int64_t, conf::ZoneConfig>& zoneDetailsConfig)
James Feist1fe08952019-05-07 09:17:16 -0700406{
James Feist1fe08952019-05-07 09:17:16 -0700407 sensorConfig.clear();
408 zoneConfig.clear();
409 zoneDetailsConfig.clear();
410
411 createMatches(bus, timer);
412
Patrick Williams8c051122023-05-10 07:50:59 -0500413 auto mapper = bus.new_method_call("xyz.openbmc_project.ObjectMapper",
414 "/xyz/openbmc_project/object_mapper",
415 "xyz.openbmc_project.ObjectMapper",
416 "GetSubTree");
James Feist26e8c6a2018-10-25 10:38:26 -0700417 mapper.append("/", 0,
Patrick Venture0911bfe2020-08-10 12:51:40 -0700418 std::array<const char*, 6>{
419 objectManagerInterface, pidConfigurationInterface,
420 pidZoneConfigurationInterface,
421 stepwiseConfigurationInterface, sensorInterface,
422 defaultPwmInterface});
James Feist7136a5a2018-07-19 09:52:05 -0700423 std::unordered_map<
424 std::string, std::unordered_map<std::string, std::vector<std::string>>>
425 respData;
James Feist22c257a2018-08-31 14:07:12 -0700426 try
427 {
428 auto resp = bus.call(mapper);
James Feist22c257a2018-08-31 14:07:12 -0700429 resp.read(respData);
430 }
Patrick Williams0001ee02021-10-06 14:44:22 -0500431 catch (const sdbusplus::exception_t&)
James Feist22c257a2018-08-31 14:07:12 -0700432 {
433 // can't do anything without mapper call data
434 throw std::runtime_error("ObjectMapper Call Failure");
435 }
James Feist7136a5a2018-07-19 09:52:05 -0700436
James Feist7136a5a2018-07-19 09:52:05 -0700437 if (respData.empty())
438 {
James Feist22c257a2018-08-31 14:07:12 -0700439 // can't do anything without mapper call data
James Feist7136a5a2018-07-19 09:52:05 -0700440 throw std::runtime_error("No configuration data available from Mapper");
441 }
442 // create a map of pair of <has pid configuration, ObjectManager path>
443 std::unordered_map<std::string, std::pair<bool, std::string>> owners;
444 // and a map of <path, interface> for sensors
445 std::unordered_map<std::string, std::string> sensors;
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700446 for (const auto& objectPair : respData)
James Feist7136a5a2018-07-19 09:52:05 -0700447 {
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700448 for (const auto& ownerPair : objectPair.second)
James Feist7136a5a2018-07-19 09:52:05 -0700449 {
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700450 auto& owner = owners[ownerPair.first];
451 for (const std::string& interface : ownerPair.second)
James Feist7136a5a2018-07-19 09:52:05 -0700452 {
James Feist7136a5a2018-07-19 09:52:05 -0700453 if (interface == objectManagerInterface)
454 {
455 owner.second = objectPair.first;
456 }
457 if (interface == pidConfigurationInterface ||
James Feist22c257a2018-08-31 14:07:12 -0700458 interface == pidZoneConfigurationInterface ||
459 interface == stepwiseConfigurationInterface)
James Feist7136a5a2018-07-19 09:52:05 -0700460 {
461 owner.first = true;
462 }
Patrick Venture0911bfe2020-08-10 12:51:40 -0700463 if (interface == sensorInterface ||
464 interface == defaultPwmInterface)
James Feist7136a5a2018-07-19 09:52:05 -0700465 {
466 // we're not interested in pwm sensors, just pwm control
467 if (interface == sensorInterface &&
468 objectPair.first.find("pwm") != std::string::npos)
469 {
470 continue;
471 }
472 sensors[objectPair.first] = interface;
473 }
474 }
475 }
476 }
477 ManagedObjectType configurations;
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700478 for (const auto& owner : owners)
James Feist7136a5a2018-07-19 09:52:05 -0700479 {
480 // skip if no pid configuration (means probably a sensor)
481 if (!owner.second.first)
482 {
483 continue;
484 }
485 auto endpoint = bus.new_method_call(
486 owner.first.c_str(), owner.second.second.c_str(),
487 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
James Feist22c257a2018-08-31 14:07:12 -0700488 ManagedObjectType configuration;
489 try
James Feist7136a5a2018-07-19 09:52:05 -0700490 {
James Feist22c257a2018-08-31 14:07:12 -0700491 auto responce = bus.call(endpoint);
James Feist22c257a2018-08-31 14:07:12 -0700492 responce.read(configuration);
493 }
Patrick Williams0001ee02021-10-06 14:44:22 -0500494 catch (const sdbusplus::exception_t&)
James Feist22c257a2018-08-31 14:07:12 -0700495 {
496 // this shouldn't happen, probably means daemon crashed
James Feist7136a5a2018-07-19 09:52:05 -0700497 throw std::runtime_error("Error getting managed objects from " +
498 owner.first);
499 }
James Feist22c257a2018-08-31 14:07:12 -0700500
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700501 for (auto& pathPair : configuration)
James Feist7136a5a2018-07-19 09:52:05 -0700502 {
503 if (pathPair.second.find(pidConfigurationInterface) !=
504 pathPair.second.end() ||
505 pathPair.second.find(pidZoneConfigurationInterface) !=
James Feist22c257a2018-08-31 14:07:12 -0700506 pathPair.second.end() ||
507 pathPair.second.find(stepwiseConfigurationInterface) !=
James Feist7136a5a2018-07-19 09:52:05 -0700508 pathPair.second.end())
509 {
510 configurations.emplace(pathPair);
511 }
James Feistf0096a02019-02-21 11:25:22 -0800512 }
513 }
514
515 // remove controllers from config that aren't in the current profile(s)
James Feist3987c8b2019-05-13 10:43:17 -0700516 std::vector<std::string> selectedProfiles = getSelectedProfiles(bus);
517 if (selectedProfiles.size())
James Feistf0096a02019-02-21 11:25:22 -0800518 {
James Feist3987c8b2019-05-13 10:43:17 -0700519 for (auto pathIt = configurations.begin();
520 pathIt != configurations.end();)
James Feistf0096a02019-02-21 11:25:22 -0800521 {
James Feist3987c8b2019-05-13 10:43:17 -0700522 for (auto confIt = pathIt->second.begin();
523 confIt != pathIt->second.end();)
James Feistf0096a02019-02-21 11:25:22 -0800524 {
James Feist3987c8b2019-05-13 10:43:17 -0700525 auto profilesFind = confIt->second.find("Profiles");
526 if (profilesFind == confIt->second.end())
James Feistf0096a02019-02-21 11:25:22 -0800527 {
James Feist3987c8b2019-05-13 10:43:17 -0700528 confIt++;
529 continue; // if no profiles selected, apply always
530 }
531 auto profiles =
532 std::get<std::vector<std::string>>(profilesFind->second);
533 if (profiles.empty())
534 {
535 confIt++;
536 continue;
537 }
538
539 bool found = false;
540 for (const std::string& profile : profiles)
541 {
542 if (std::find(selectedProfiles.begin(),
543 selectedProfiles.end(),
544 profile) != selectedProfiles.end())
545 {
546 found = true;
547 break;
548 }
549 }
550 if (found)
551 {
552 confIt++;
James Feistf0096a02019-02-21 11:25:22 -0800553 }
554 else
555 {
James Feist3987c8b2019-05-13 10:43:17 -0700556 confIt = pathIt->second.erase(confIt);
James Feistf0096a02019-02-21 11:25:22 -0800557 }
558 }
James Feist3987c8b2019-05-13 10:43:17 -0700559 if (pathIt->second.empty())
James Feistf0096a02019-02-21 11:25:22 -0800560 {
James Feist3987c8b2019-05-13 10:43:17 -0700561 pathIt = configurations.erase(pathIt);
James Feistf0096a02019-02-21 11:25:22 -0800562 }
James Feist3987c8b2019-05-13 10:43:17 -0700563 else
James Feistf0096a02019-02-21 11:25:22 -0800564 {
James Feist3987c8b2019-05-13 10:43:17 -0700565 pathIt++;
James Feistf0096a02019-02-21 11:25:22 -0800566 }
James Feist7136a5a2018-07-19 09:52:05 -0700567 }
568 }
James Feist8c3c51e2018-08-08 16:31:43 -0700569
Josh Lehan998fbe62020-09-20 21:21:05 -0700570 // On D-Bus, although not necessary,
571 // having the "zoneID" field can still be useful,
572 // as it is used for diagnostic messages,
573 // logging file names, and so on.
574 // Accept optional "ZoneIndex" parameter to explicitly specify.
575 // If not present, or not unique, auto-assign index,
576 // using 0-based numbering, ensuring uniqueness.
577 std::map<std::string, int64_t> foundZones;
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700578 for (const auto& configuration : configurations)
James Feist7136a5a2018-07-19 09:52:05 -0700579 {
580 auto findZone =
581 configuration.second.find(pidZoneConfigurationInterface);
582 if (findZone != configuration.second.end())
583 {
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700584 const auto& zone = findZone->second;
James Feistffd418b2018-11-15 14:46:36 -0800585
James Feist1f802f52019-02-08 13:51:43 -0800586 const std::string& name = std::get<std::string>(zone.at("Name"));
Josh Lehan998fbe62020-09-20 21:21:05 -0700587
588 auto findZoneIndex = zone.find("ZoneIndex");
589 if (findZoneIndex == zone.end())
590 {
591 continue;
592 }
593
594 auto ptrZoneIndex = std::get_if<double>(&(findZoneIndex->second));
595 if (!ptrZoneIndex)
596 {
597 continue;
598 }
599
600 auto desiredIndex = static_cast<int64_t>(*ptrZoneIndex);
601 auto grantedIndex = setZoneIndex(name, foundZones, desiredIndex);
602 std::cout << "Zone " << name << " is at ZoneIndex " << grantedIndex
603 << "\n";
604 }
605 }
606
607 for (const auto& configuration : configurations)
608 {
609 auto findZone =
610 configuration.second.find(pidZoneConfigurationInterface);
611 if (findZone != configuration.second.end())
612 {
613 const auto& zone = findZone->second;
614
615 const std::string& name = std::get<std::string>(zone.at("Name"));
616
617 auto index = getZoneIndex(name, foundZones);
James Feist8c3c51e2018-08-08 16:31:43 -0700618
Patrick Venturec54fbd82018-10-30 19:40:05 -0700619 auto& details = zoneDetailsConfig[index];
Josh Lehan998fbe62020-09-20 21:21:05 -0700620
James Feist3484bed2019-02-25 13:28:18 -0800621 details.minThermalOutput = std::visit(VariantToDoubleVisitor(),
622 zone.at("MinThermalOutput"));
Patrick Venture8e2fdb32019-02-11 09:39:59 -0800623 details.failsafePercent = std::visit(VariantToDoubleVisitor(),
James Feist1f802f52019-02-08 13:51:43 -0800624 zone.at("FailSafePercent"));
Josh Lehan9f9a06a2022-12-14 10:39:45 -0800625
Harvey Wu239aa7d2022-11-18 08:43:34 +0800626 getCycleTimeSetting(zone, index, "CycleIntervalTimeMS",
627 details.cycleTime.cycleIntervalTimeMS);
628 getCycleTimeSetting(zone, index, "UpdateThermalsTimeMS",
629 details.cycleTime.updateThermalsTimeMS);
James Feist7136a5a2018-07-19 09:52:05 -0700630 }
631 auto findBase = configuration.second.find(pidConfigurationInterface);
Jason Lingf3b04fd2020-07-24 09:33:04 -0700632 // loop through all the PID configurations and fill out a sensor config
James Feist22c257a2018-08-31 14:07:12 -0700633 if (findBase != configuration.second.end())
James Feist7136a5a2018-07-19 09:52:05 -0700634 {
James Feist22c257a2018-08-31 14:07:12 -0700635 const auto& base =
636 configuration.second.at(pidConfigurationInterface);
ykchiu7c6d35d2023-05-10 17:01:46 +0800637 const std::string pidName =
638 sensorNameToDbusName(std::get<std::string>(base.at("Name")));
Jason Lingf3b04fd2020-07-24 09:33:04 -0700639 const std::string pidClass =
640 std::get<std::string>(base.at("Class"));
James Feist22c257a2018-08-31 14:07:12 -0700641 const std::vector<std::string>& zones =
James Feist1f802f52019-02-08 13:51:43 -0800642 std::get<std::vector<std::string>>(base.at("Zones"));
James Feist22c257a2018-08-31 14:07:12 -0700643 for (const std::string& zone : zones)
James Feist7136a5a2018-07-19 09:52:05 -0700644 {
Josh Lehan998fbe62020-09-20 21:21:05 -0700645 auto index = getZoneIndex(zone, foundZones);
646
James Feistf81f2882019-02-26 11:26:36 -0800647 conf::PIDConf& conf = zoneConfig[index];
Jason Lingf3b04fd2020-07-24 09:33:04 -0700648 std::vector<std::string> inputSensorNames(
649 std::get<std::vector<std::string>>(base.at("Inputs")));
650 std::vector<std::string> outputSensorNames;
James Feist50fdfe32018-09-24 15:51:09 -0700651
Jason Lingf3b04fd2020-07-24 09:33:04 -0700652 // assumption: all fan pids must have at least one output
653 if (pidClass == "fan")
James Feist50fdfe32018-09-24 15:51:09 -0700654 {
Jason Lingf3b04fd2020-07-24 09:33:04 -0700655 outputSensorNames = std::get<std::vector<std::string>>(
656 getPIDAttribute(base, "Outputs"));
James Feist50fdfe32018-09-24 15:51:09 -0700657 }
James Feist1738e2a2019-02-04 15:57:03 -0800658
Alex.Song8f73ad72021-10-07 00:18:27 +0800659 bool unavailableAsFailed = true;
660 auto findUnavailableAsFailed =
661 base.find("InputUnavailableAsFailed");
662 if (findUnavailableAsFailed != base.end())
663 {
664 unavailableAsFailed =
665 std::get<bool>(findUnavailableAsFailed->second);
666 }
667
Jason Lingf3b04fd2020-07-24 09:33:04 -0700668 std::vector<SensorInterfaceType> inputSensorInterfaces;
669 std::vector<SensorInterfaceType> outputSensorInterfaces;
670 /* populate an interface list for different sensor direction
671 * types (input,output)
672 */
673 /* take the Inputs from the configuration and generate
674 * a list of dbus descriptors (path, interface).
675 * Mapping can be many-to-one since an element of Inputs can be
676 * a regex
677 */
678 for (const std::string& sensorName : inputSensorNames)
James Feist50fdfe32018-09-24 15:51:09 -0700679 {
Jason Lingf3b04fd2020-07-24 09:33:04 -0700680 findSensors(sensors, sensorNameToDbusName(sensorName),
681 inputSensorInterfaces);
682 }
683 for (const std::string& sensorName : outputSensorNames)
684 {
685 findSensors(sensors, sensorNameToDbusName(sensorName),
686 outputSensorInterfaces);
James Feist1738e2a2019-02-04 15:57:03 -0800687 }
James Feist50fdfe32018-09-24 15:51:09 -0700688
Jason Lingf3b04fd2020-07-24 09:33:04 -0700689 inputSensorNames.clear();
690 for (const SensorInterfaceType& inputSensorInterface :
691 inputSensorInterfaces)
James Feist1738e2a2019-02-04 15:57:03 -0800692 {
Jason Lingf3b04fd2020-07-24 09:33:04 -0700693 const std::string& dbusInterface =
694 inputSensorInterface.second;
695 const std::string& inputSensorPath =
696 inputSensorInterface.first;
Josh Lehanfb82a872020-09-20 21:48:22 -0700697
698 // Setting timeout to 0 is intentional, as D-Bus passive
699 // sensor updates are pushed in, not pulled by timer poll.
700 // Setting ignoreDbusMinMax is intentional, as this
701 // prevents normalization of values to [0.0, 1.0] range,
702 // which would mess up the PID loop math.
703 // All non-fan PID classes should be initialized this way.
704 // As for why a fan should not use this code path, see
705 // the ed1dafdf168def37c65bfb7a5efd18d9dbe04727 commit.
Josh Lehan23e22b92022-11-12 22:37:58 -0800706 if ((pidClass == "temp") || (pidClass == "margin") ||
707 (pidClass == "power") || (pidClass == "powersum"))
James Feist50fdfe32018-09-24 15:51:09 -0700708 {
Harvey.Wued1dafd2022-02-09 13:53:20 +0800709 std::string inputSensorName =
710 getSensorNameFromPath(inputSensorPath);
711 auto& config = sensorConfig[inputSensorName];
712 inputSensorNames.push_back(inputSensorName);
713 config.type = pidClass;
714 config.readPath = inputSensorInterface.first;
Jason Lingf3b04fd2020-07-24 09:33:04 -0700715 config.timeout = 0;
716 config.ignoreDbusMinMax = true;
Alex.Song8f73ad72021-10-07 00:18:27 +0800717 config.unavailableAsFailed = unavailableAsFailed;
James Feist50fdfe32018-09-24 15:51:09 -0700718 }
Josh Lehanfb82a872020-09-20 21:48:22 -0700719
Jason Lingf3b04fd2020-07-24 09:33:04 -0700720 if (dbusInterface != sensorInterface)
James Feist50fdfe32018-09-24 15:51:09 -0700721 {
Jason Lingf3b04fd2020-07-24 09:33:04 -0700722 /* all expected inputs in the configuration are expected
723 * to be sensor interfaces
724 */
725 throw std::runtime_error(
726 "sensor at dbus path [" + inputSensorPath +
727 "] has an interface [" + dbusInterface +
728 "] that does not match the expected interface of " +
729 sensorInterface);
James Feist50fdfe32018-09-24 15:51:09 -0700730 }
731 }
James Feist1738e2a2019-02-04 15:57:03 -0800732
Jason Lingf3b04fd2020-07-24 09:33:04 -0700733 /* fan pids need to pair up tach sensors with their pwm
734 * counterparts
735 */
736 if (pidClass == "fan")
737 {
738 /* If a PID is a fan there should be either
739 * (1) one output(pwm) per input(tach)
740 * OR
741 * (2) one putput(pwm) for all inputs(tach)
742 * everything else indicates a bad configuration.
743 */
744 bool singlePwm = false;
745 if (outputSensorInterfaces.size() == 1)
746 {
747 /* one pwm, set write paths for all fan sensors to it */
748 singlePwm = true;
749 }
750 else if (inputSensorInterfaces.size() ==
751 outputSensorInterfaces.size())
752 {
753 /* one to one mapping, each fan sensor gets its own pwm
754 * control */
755 singlePwm = false;
756 }
757 else
758 {
759 throw std::runtime_error(
760 "fan PID has invalid number of Outputs");
761 }
762 std::string fanSensorName;
763 std::string pwmPath;
764 std::string pwmInterface;
Harvey.Wued1dafd2022-02-09 13:53:20 +0800765 std::string pwmSensorName;
Jason Lingf3b04fd2020-07-24 09:33:04 -0700766 if (singlePwm)
767 {
768 /* if just a single output(pwm) is provided then use
769 * that pwm control path for all the fan sensor write
770 * path configs
771 */
772 pwmPath = outputSensorInterfaces.at(0).first;
773 pwmInterface = outputSensorInterfaces.at(0).second;
774 }
775 for (uint32_t idx = 0; idx < inputSensorInterfaces.size();
776 idx++)
777 {
778 if (!singlePwm)
779 {
780 pwmPath = outputSensorInterfaces.at(idx).first;
781 pwmInterface =
782 outputSensorInterfaces.at(idx).second;
783 }
Patrick Venture0911bfe2020-08-10 12:51:40 -0700784 if (defaultPwmInterface != pwmInterface)
Jason Lingf3b04fd2020-07-24 09:33:04 -0700785 {
786 throw std::runtime_error(
787 "fan pwm control at dbus path [" + pwmPath +
788 "] has an interface [" + pwmInterface +
789 "] that does not match the expected interface "
790 "of " +
Patrick Venture0911bfe2020-08-10 12:51:40 -0700791 defaultPwmInterface);
Jason Lingf3b04fd2020-07-24 09:33:04 -0700792 }
793 const std::string& fanPath =
794 inputSensorInterfaces.at(idx).first;
795 fanSensorName = getSensorNameFromPath(fanPath);
Harvey.Wued1dafd2022-02-09 13:53:20 +0800796 pwmSensorName = getSensorNameFromPath(pwmPath);
797 std::string fanPwmIndex = fanSensorName + pwmSensorName;
798 inputSensorNames.push_back(fanPwmIndex);
799 auto& fanConfig = sensorConfig[fanPwmIndex];
800 fanConfig.type = pidClass;
801 fanConfig.readPath = fanPath;
Jason Lingf3b04fd2020-07-24 09:33:04 -0700802 fanConfig.writePath = pwmPath;
803 // todo: un-hardcode this if there are fans with
804 // different ranges
805 fanConfig.max = 255;
806 fanConfig.min = 0;
807 }
808 }
James Feist11d243d2019-06-24 16:18:40 -0700809 // if the sensors aren't available in the current state, don't
810 // add them to the configuration.
Jason Lingf3b04fd2020-07-24 09:33:04 -0700811 if (inputSensorNames.empty())
James Feist11d243d2019-06-24 16:18:40 -0700812 {
813 continue;
814 }
815
James Feist5ec20272019-07-10 11:59:57 -0700816 std::string offsetType;
James Feist50fdfe32018-09-24 15:51:09 -0700817
James Feist5ec20272019-07-10 11:59:57 -0700818 // SetPointOffset is a threshold value to pull from the sensor
819 // to apply an offset. For upper thresholds this means the
820 // setpoint is usually negative.
821 auto findSetpointOffset = base.find("SetPointOffset");
822 if (findSetpointOffset != base.end())
James Feist22c257a2018-08-31 14:07:12 -0700823 {
James Feist5ec20272019-07-10 11:59:57 -0700824 offsetType =
825 std::get<std::string>(findSetpointOffset->second);
826 if (std::find(thresholds::types.begin(),
827 thresholds::types.end(),
828 offsetType) == thresholds::types.end())
829 {
830 throw std::runtime_error("Unsupported type: " +
831 offsetType);
832 }
833 }
834
835 if (offsetType.empty())
836 {
ykchiu7c6d35d2023-05-10 17:01:46 +0800837 conf::ControllerInfo& info = conf[pidName];
Jason Lingf3b04fd2020-07-24 09:33:04 -0700838 info.inputs = std::move(inputSensorNames);
Patrick Venture73823182020-10-08 15:12:51 -0700839 populatePidInfo(bus, base, info, nullptr, sensorConfig);
James Feist22c257a2018-08-31 14:07:12 -0700840 }
841 else
842 {
James Feist5ec20272019-07-10 11:59:57 -0700843 // we have to split up the inputs, as in practice t-control
844 // values will differ, making setpoints differ
Jason Lingf3b04fd2020-07-24 09:33:04 -0700845 for (const std::string& input : inputSensorNames)
James Feist5ec20272019-07-10 11:59:57 -0700846 {
Patrick Venture1df9e872020-10-08 15:35:01 -0700847 conf::ControllerInfo& info = conf[input];
James Feist5ec20272019-07-10 11:59:57 -0700848 info.inputs.emplace_back(input);
Patrick Venture73823182020-10-08 15:12:51 -0700849 populatePidInfo(bus, base, info, &offsetType,
850 sensorConfig);
James Feist5ec20272019-07-10 11:59:57 -0700851 }
James Feist22c257a2018-08-31 14:07:12 -0700852 }
James Feist22c257a2018-08-31 14:07:12 -0700853 }
854 }
855 auto findStepwise =
856 configuration.second.find(stepwiseConfigurationInterface);
857 if (findStepwise != configuration.second.end())
858 {
859 const auto& base = findStepwise->second;
ykchiu7c6d35d2023-05-10 17:01:46 +0800860 const std::string pidName =
861 sensorNameToDbusName(std::get<std::string>(base.at("Name")));
James Feist22c257a2018-08-31 14:07:12 -0700862 const std::vector<std::string>& zones =
James Feist1f802f52019-02-08 13:51:43 -0800863 std::get<std::vector<std::string>>(base.at("Zones"));
James Feist22c257a2018-08-31 14:07:12 -0700864 for (const std::string& zone : zones)
865 {
Josh Lehan998fbe62020-09-20 21:21:05 -0700866 auto index = getZoneIndex(zone, foundZones);
867
James Feistf81f2882019-02-26 11:26:36 -0800868 conf::PIDConf& conf = zoneConfig[index];
James Feist50fdfe32018-09-24 15:51:09 -0700869
870 std::vector<std::string> inputs;
871 std::vector<std::string> sensorNames =
James Feist1f802f52019-02-08 13:51:43 -0800872 std::get<std::vector<std::string>>(base.at("Inputs"));
James Feist50fdfe32018-09-24 15:51:09 -0700873
Alex.Song8f73ad72021-10-07 00:18:27 +0800874 bool unavailableAsFailed = true;
875 auto findUnavailableAsFailed =
876 base.find("InputUnavailableAsFailed");
877 if (findUnavailableAsFailed != base.end())
878 {
879 unavailableAsFailed =
880 std::get<bool>(findUnavailableAsFailed->second);
881 }
882
James Feist1738e2a2019-02-04 15:57:03 -0800883 bool sensorFound = false;
James Feist50fdfe32018-09-24 15:51:09 -0700884 for (const std::string& sensorName : sensorNames)
885 {
James Feist1738e2a2019-02-04 15:57:03 -0800886 std::vector<std::pair<std::string, std::string>>
887 sensorPathIfacePairs;
Jason Lingf3b04fd2020-07-24 09:33:04 -0700888 if (!findSensors(sensors, sensorNameToDbusName(sensorName),
889 sensorPathIfacePairs))
James Feist50fdfe32018-09-24 15:51:09 -0700890 {
James Feist50fdfe32018-09-24 15:51:09 -0700891 break;
892 }
893
James Feist1738e2a2019-02-04 15:57:03 -0800894 for (const auto& sensorPathIfacePair : sensorPathIfacePairs)
895 {
896 size_t idx =
897 sensorPathIfacePair.first.find_last_of("/") + 1;
898 std::string shortName =
899 sensorPathIfacePair.first.substr(idx);
James Feist50fdfe32018-09-24 15:51:09 -0700900
James Feist1738e2a2019-02-04 15:57:03 -0800901 inputs.push_back(shortName);
902 auto& config = sensorConfig[shortName];
Patrick Venture69c51062019-02-11 09:46:03 -0800903 config.readPath = sensorPathIfacePair.first;
James Feist1738e2a2019-02-04 15:57:03 -0800904 config.type = "temp";
James Feist3660b382019-11-11 16:29:19 -0800905 config.ignoreDbusMinMax = true;
Alex.Song8f73ad72021-10-07 00:18:27 +0800906 config.unavailableAsFailed = unavailableAsFailed;
James Feist1738e2a2019-02-04 15:57:03 -0800907 // todo: maybe un-hardcode this if we run into slower
908 // timeouts with sensors
909
James Feist2642cb52019-02-25 13:00:16 -0800910 config.timeout = 0;
James Feist1738e2a2019-02-04 15:57:03 -0800911 sensorFound = true;
912 }
James Feist50fdfe32018-09-24 15:51:09 -0700913 }
914 if (!sensorFound)
915 {
916 continue;
917 }
ykchiu7c6d35d2023-05-10 17:01:46 +0800918 conf::ControllerInfo& info = conf[pidName];
James Feist50fdfe32018-09-24 15:51:09 -0700919 info.inputs = std::move(inputs);
920
James Feist22c257a2018-08-31 14:07:12 -0700921 info.type = "stepwise";
922 info.stepwiseInfo.ts = 1.0; // currently unused
James Feist3dfaafd2018-09-20 15:46:58 -0700923 info.stepwiseInfo.positiveHysteresis = 0.0;
924 info.stepwiseInfo.negativeHysteresis = 0.0;
James Feist608304d2019-02-25 10:01:42 -0800925 std::string subtype = std::get<std::string>(base.at("Class"));
926
927 info.stepwiseInfo.isCeiling = (subtype == "Ceiling");
James Feist3dfaafd2018-09-20 15:46:58 -0700928 auto findPosHyst = base.find("PositiveHysteresis");
929 auto findNegHyst = base.find("NegativeHysteresis");
930 if (findPosHyst != base.end())
931 {
James Feist1f802f52019-02-08 13:51:43 -0800932 info.stepwiseInfo.positiveHysteresis = std::visit(
James Feist208abce2018-12-06 09:59:10 -0800933 VariantToDoubleVisitor(), findPosHyst->second);
James Feist3dfaafd2018-09-20 15:46:58 -0700934 }
935 if (findNegHyst != base.end())
936 {
James Feist5782ab82019-04-02 08:38:48 -0700937 info.stepwiseInfo.negativeHysteresis = std::visit(
James Feist208abce2018-12-06 09:59:10 -0800938 VariantToDoubleVisitor(), findNegHyst->second);
James Feist3dfaafd2018-09-20 15:46:58 -0700939 }
James Feist22c257a2018-08-31 14:07:12 -0700940 std::vector<double> readings =
James Feist1f802f52019-02-08 13:51:43 -0800941 std::get<std::vector<double>>(base.at("Reading"));
James Feist22c257a2018-08-31 14:07:12 -0700942 if (readings.size() > ec::maxStepwisePoints)
943 {
944 throw std::invalid_argument("Too many stepwise points.");
945 }
946 if (readings.empty())
947 {
948 throw std::invalid_argument(
949 "Must have one stepwise point.");
950 }
951 std::copy(readings.begin(), readings.end(),
952 info.stepwiseInfo.reading);
953 if (readings.size() < ec::maxStepwisePoints)
954 {
955 info.stepwiseInfo.reading[readings.size()] =
Patrick Venture5f59c0f2018-11-11 12:55:14 -0800956 std::numeric_limits<double>::quiet_NaN();
James Feist22c257a2018-08-31 14:07:12 -0700957 }
958 std::vector<double> outputs =
James Feist1f802f52019-02-08 13:51:43 -0800959 std::get<std::vector<double>>(base.at("Output"));
James Feist22c257a2018-08-31 14:07:12 -0700960 if (readings.size() != outputs.size())
961 {
962 throw std::invalid_argument(
963 "Outputs size must match readings");
964 }
965 std::copy(outputs.begin(), outputs.end(),
966 info.stepwiseInfo.output);
967 if (outputs.size() < ec::maxStepwisePoints)
968 {
969 info.stepwiseInfo.output[outputs.size()] =
Patrick Venture5f59c0f2018-11-11 12:55:14 -0800970 std::numeric_limits<double>::quiet_NaN();
James Feist22c257a2018-08-31 14:07:12 -0700971 }
James Feist7136a5a2018-07-19 09:52:05 -0700972 }
973 }
974 }
Patrick Venture39199b42020-10-08 14:40:29 -0700975 if constexpr (pid_control::conf::DEBUG)
James Feist7136a5a2018-07-19 09:52:05 -0700976 {
Patrick Venture39199b42020-10-08 14:40:29 -0700977 debugPrint(sensorConfig, zoneConfig, zoneDetailsConfig);
James Feist7136a5a2018-07-19 09:52:05 -0700978 }
James Feistc959c422018-11-01 12:33:40 -0700979 if (zoneConfig.empty() || zoneDetailsConfig.empty())
James Feist50fdfe32018-09-24 15:51:09 -0700980 {
James Feist1fe08952019-05-07 09:17:16 -0700981 std::cerr
982 << "No fan zones, application pausing until new configuration\n";
983 return false;
James Feist50fdfe32018-09-24 15:51:09 -0700984 }
James Feist1fe08952019-05-07 09:17:16 -0700985 return true;
James Feist7136a5a2018-07-19 09:52:05 -0700986}
Patrick Venturea0764872020-08-08 07:48:43 -0700987
James Feist7136a5a2018-07-19 09:52:05 -0700988} // namespace dbus_configuration
Patrick Venturea0764872020-08-08 07:48:43 -0700989} // namespace pid_control