blob: e4396c44c527a7072c68801e7f129e91babbf42b [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*/
16
Patrick Venture07716592018-10-14 11:46:40 -070017#include "conf.hpp"
18#include "dbus/util.hpp"
19
Patrick Venture107a25d2018-10-13 14:08:09 -070020#include <algorithm>
James Feist64f072a2018-08-10 16:39:24 -070021#include <chrono>
James Feist64f072a2018-08-10 16:39:24 -070022#include <functional>
James Feist7136a5a2018-07-19 09:52:05 -070023#include <iostream>
James Feist1738e2a2019-02-04 15:57:03 -080024#include <regex>
James Feist7136a5a2018-07-19 09:52:05 -070025#include <sdbusplus/bus.hpp>
James Feist64f072a2018-08-10 16:39:24 -070026#include <sdbusplus/bus/match.hpp>
James Feist22c257a2018-08-31 14:07:12 -070027#include <sdbusplus/exception.hpp>
James Feist7136a5a2018-07-19 09:52:05 -070028#include <set>
James Feist64f072a2018-08-10 16:39:24 -070029#include <thread>
James Feist7136a5a2018-07-19 09:52:05 -070030#include <unordered_map>
James Feist1f802f52019-02-08 13:51:43 -080031#include <variant>
James Feist7136a5a2018-07-19 09:52:05 -070032
33static constexpr bool DEBUG = false; // enable to print found configuration
34
Patrick Venturec54fbd82018-10-30 19:40:05 -070035std::map<std::string, struct SensorConfig> sensorConfig = {};
36std::map<int64_t, PIDConf> zoneConfig = {};
37std::map<int64_t, struct ZoneConfig> zoneDetailsConfig = {};
James Feist7136a5a2018-07-19 09:52:05 -070038
Patrick Venturee2ec0f62018-09-04 12:30:27 -070039constexpr const char* pidConfigurationInterface =
James Feist7136a5a2018-07-19 09:52:05 -070040 "xyz.openbmc_project.Configuration.Pid";
Patrick Venturee2ec0f62018-09-04 12:30:27 -070041constexpr const char* objectManagerInterface =
James Feist7136a5a2018-07-19 09:52:05 -070042 "org.freedesktop.DBus.ObjectManager";
Patrick Venturee2ec0f62018-09-04 12:30:27 -070043constexpr const char* pidZoneConfigurationInterface =
James Feist7136a5a2018-07-19 09:52:05 -070044 "xyz.openbmc_project.Configuration.Pid.Zone";
James Feist22c257a2018-08-31 14:07:12 -070045constexpr const char* stepwiseConfigurationInterface =
46 "xyz.openbmc_project.Configuration.Stepwise";
Patrick Venturee2ec0f62018-09-04 12:30:27 -070047constexpr const char* sensorInterface = "xyz.openbmc_project.Sensor.Value";
48constexpr const char* pwmInterface = "xyz.openbmc_project.Control.FanPwm";
James Feist7136a5a2018-07-19 09:52:05 -070049
50namespace dbus_configuration
51{
52
James Feist1738e2a2019-02-04 15:57:03 -080053bool findSensors(const std::unordered_map<std::string, std::string>& sensors,
54 const std::string& search,
55 std::vector<std::pair<std::string, std::string>>& matches)
James Feist7136a5a2018-07-19 09:52:05 -070056{
James Feist1738e2a2019-02-04 15:57:03 -080057 std::smatch match;
58 std::regex reg(search);
59 for (const auto& sensor : sensors)
James Feist7136a5a2018-07-19 09:52:05 -070060 {
James Feist1738e2a2019-02-04 15:57:03 -080061 if (std::regex_search(sensor.first, match, reg))
62 {
63 matches.push_back(sensor);
64 }
James Feist7136a5a2018-07-19 09:52:05 -070065 }
Patrick Venture107a25d2018-10-13 14:08:09 -070066
James Feist1738e2a2019-02-04 15:57:03 -080067 return matches.size() > 0;
James Feist7136a5a2018-07-19 09:52:05 -070068}
69
70// this function prints the configuration into a form similar to the cpp
71// generated code to help in verification, should be turned off during normal
72// use
73void debugPrint(void)
74{
75 // print sensor config
76 std::cout << "sensor config:\n";
77 std::cout << "{\n";
Patrick Venturec54fbd82018-10-30 19:40:05 -070078 for (const auto& pair : sensorConfig)
James Feist7136a5a2018-07-19 09:52:05 -070079 {
80
81 std::cout << "\t{" << pair.first << ",\n\t\t{";
82 std::cout << pair.second.type << ", ";
Patrick Venture69c51062019-02-11 09:46:03 -080083 std::cout << pair.second.readPath << ", ";
84 std::cout << pair.second.writePath << ", ";
James Feist7136a5a2018-07-19 09:52:05 -070085 std::cout << pair.second.min << ", ";
86 std::cout << pair.second.max << ", ";
87 std::cout << pair.second.timeout << "},\n\t},\n";
88 }
89 std::cout << "}\n\n";
90 std::cout << "ZoneDetailsConfig\n";
91 std::cout << "{\n";
Patrick Venturec54fbd82018-10-30 19:40:05 -070092 for (const auto& zone : zoneDetailsConfig)
James Feist7136a5a2018-07-19 09:52:05 -070093 {
94 std::cout << "\t{" << zone.first << ",\n";
Patrick Venture8e2fdb32019-02-11 09:39:59 -080095 std::cout << "\t\t{" << zone.second.minThermalRpm << ", ";
96 std::cout << zone.second.failsafePercent << "}\n\t},\n";
James Feist7136a5a2018-07-19 09:52:05 -070097 }
98 std::cout << "}\n\n";
99 std::cout << "ZoneConfig\n";
100 std::cout << "{\n";
Patrick Venturec54fbd82018-10-30 19:40:05 -0700101 for (const auto& zone : zoneConfig)
James Feist7136a5a2018-07-19 09:52:05 -0700102 {
103 std::cout << "\t{" << zone.first << "\n";
Patrick Venture4a2dc4d2018-10-23 09:02:55 -0700104 for (const auto& pidconf : zone.second)
James Feist7136a5a2018-07-19 09:52:05 -0700105 {
106 std::cout << "\t\t{" << pidconf.first << ",\n";
107 std::cout << "\t\t\t{" << pidconf.second.type << ",\n";
108 std::cout << "\t\t\t{";
Patrick Venture4a2dc4d2018-10-23 09:02:55 -0700109 for (const auto& input : pidconf.second.inputs)
James Feist7136a5a2018-07-19 09:52:05 -0700110 {
111 std::cout << "\n\t\t\t" << input << ",\n";
112 }
113 std::cout << "\t\t\t}\n";
114 std::cout << "\t\t\t" << pidconf.second.setpoint << ",\n";
James Feist22c257a2018-08-31 14:07:12 -0700115 std::cout << "\t\t\t{" << pidconf.second.pidInfo.ts << ",\n";
116 std::cout << "\t\t\t" << pidconf.second.pidInfo.p_c << ",\n";
117 std::cout << "\t\t\t" << pidconf.second.pidInfo.i_c << ",\n";
118 std::cout << "\t\t\t" << pidconf.second.pidInfo.ff_off << ",\n";
119 std::cout << "\t\t\t" << pidconf.second.pidInfo.ff_gain << ",\n";
120 std::cout << "\t\t\t{" << pidconf.second.pidInfo.i_lim.min << ","
121 << pidconf.second.pidInfo.i_lim.max << "},\n";
122 std::cout << "\t\t\t{" << pidconf.second.pidInfo.out_lim.min << ","
123 << pidconf.second.pidInfo.out_lim.max << "},\n";
124 std::cout << "\t\t\t" << pidconf.second.pidInfo.slew_neg << ",\n";
125 std::cout << "\t\t\t" << pidconf.second.pidInfo.slew_pos << ",\n";
James Feist7136a5a2018-07-19 09:52:05 -0700126 std::cout << "\t\t\t}\n\t\t}\n";
127 }
128 std::cout << "\t},\n";
129 }
130 std::cout << "}\n\n";
131}
132
James Feist50fdfe32018-09-24 15:51:09 -0700133int eventHandler(sd_bus_message*, void*, sd_bus_error*)
134{
135 // do a brief sleep as we tend to get a bunch of these events at
136 // once
137 std::this_thread::sleep_for(std::chrono::seconds(5));
138 std::cout << "New configuration detected, restarting\n.";
139 std::exit(EXIT_SUCCESS); // service file should make us restart
140 return 1;
141}
142
James Feistffd418b2018-11-15 14:46:36 -0800143size_t getZoneIndex(const std::string& name, std::vector<std::string>& zones)
144{
145 auto it = std::find(zones.begin(), zones.end(), name);
146 if (it == zones.end())
147 {
148 zones.emplace_back(name);
149 it = zones.end() - 1;
150 }
151
152 return it - zones.begin();
153}
154
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700155void init(sdbusplus::bus::bus& bus)
James Feist7136a5a2018-07-19 09:52:05 -0700156{
James Feist22c257a2018-08-31 14:07:12 -0700157 using DbusVariantType =
James Feist1f802f52019-02-08 13:51:43 -0800158 std::variant<uint64_t, int64_t, double, std::string,
159 std::vector<std::string>, std::vector<double>>;
James Feist22c257a2018-08-31 14:07:12 -0700160
James Feist7136a5a2018-07-19 09:52:05 -0700161 using ManagedObjectType = std::unordered_map<
162 sdbusplus::message::object_path,
James Feist22c257a2018-08-31 14:07:12 -0700163 std::unordered_map<std::string,
164 std::unordered_map<std::string, DbusVariantType>>>;
James Feist64f072a2018-08-10 16:39:24 -0700165
James Feist50fdfe32018-09-24 15:51:09 -0700166 // restart on configuration properties changed
167 static sdbusplus::bus::match::match configMatch(
James Feist64f072a2018-08-10 16:39:24 -0700168 bus,
169 "type='signal',member='PropertiesChanged',arg0namespace='" +
170 std::string(pidConfigurationInterface) + "'",
171 eventHandler);
172
James Feist50fdfe32018-09-24 15:51:09 -0700173 // restart on sensors changed
174 static sdbusplus::bus::match::match sensorAdded(
175 bus,
176 "type='signal',member='InterfacesAdded',arg0path='/xyz/openbmc_project/"
177 "sensors/'",
178 eventHandler);
179
James Feist7136a5a2018-07-19 09:52:05 -0700180 auto mapper =
181 bus.new_method_call("xyz.openbmc_project.ObjectMapper",
182 "/xyz/openbmc_project/object_mapper",
183 "xyz.openbmc_project.ObjectMapper", "GetSubTree");
James Feist26e8c6a2018-10-25 10:38:26 -0700184 mapper.append("/", 0,
James Feist22c257a2018-08-31 14:07:12 -0700185 std::array<const char*, 6>{objectManagerInterface,
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700186 pidConfigurationInterface,
187 pidZoneConfigurationInterface,
James Feist22c257a2018-08-31 14:07:12 -0700188 stepwiseConfigurationInterface,
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700189 sensorInterface, pwmInterface});
James Feist7136a5a2018-07-19 09:52:05 -0700190 std::unordered_map<
191 std::string, std::unordered_map<std::string, std::vector<std::string>>>
192 respData;
James Feist22c257a2018-08-31 14:07:12 -0700193 try
194 {
195 auto resp = bus.call(mapper);
James Feist22c257a2018-08-31 14:07:12 -0700196 resp.read(respData);
197 }
198 catch (sdbusplus::exception_t&)
199 {
200 // can't do anything without mapper call data
201 throw std::runtime_error("ObjectMapper Call Failure");
202 }
James Feist7136a5a2018-07-19 09:52:05 -0700203
James Feist7136a5a2018-07-19 09:52:05 -0700204 if (respData.empty())
205 {
James Feist22c257a2018-08-31 14:07:12 -0700206 // can't do anything without mapper call data
James Feist7136a5a2018-07-19 09:52:05 -0700207 throw std::runtime_error("No configuration data available from Mapper");
208 }
209 // create a map of pair of <has pid configuration, ObjectManager path>
210 std::unordered_map<std::string, std::pair<bool, std::string>> owners;
211 // and a map of <path, interface> for sensors
212 std::unordered_map<std::string, std::string> sensors;
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700213 for (const auto& objectPair : respData)
James Feist7136a5a2018-07-19 09:52:05 -0700214 {
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700215 for (const auto& ownerPair : objectPair.second)
James Feist7136a5a2018-07-19 09:52:05 -0700216 {
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700217 auto& owner = owners[ownerPair.first];
218 for (const std::string& interface : ownerPair.second)
James Feist7136a5a2018-07-19 09:52:05 -0700219 {
220
221 if (interface == objectManagerInterface)
222 {
223 owner.second = objectPair.first;
224 }
225 if (interface == pidConfigurationInterface ||
James Feist22c257a2018-08-31 14:07:12 -0700226 interface == pidZoneConfigurationInterface ||
227 interface == stepwiseConfigurationInterface)
James Feist7136a5a2018-07-19 09:52:05 -0700228 {
229 owner.first = true;
230 }
231 if (interface == sensorInterface || interface == pwmInterface)
232 {
233 // we're not interested in pwm sensors, just pwm control
234 if (interface == sensorInterface &&
235 objectPair.first.find("pwm") != std::string::npos)
236 {
237 continue;
238 }
239 sensors[objectPair.first] = interface;
240 }
241 }
242 }
243 }
244 ManagedObjectType configurations;
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700245 for (const auto& owner : owners)
James Feist7136a5a2018-07-19 09:52:05 -0700246 {
247 // skip if no pid configuration (means probably a sensor)
248 if (!owner.second.first)
249 {
250 continue;
251 }
252 auto endpoint = bus.new_method_call(
253 owner.first.c_str(), owner.second.second.c_str(),
254 "org.freedesktop.DBus.ObjectManager", "GetManagedObjects");
James Feist22c257a2018-08-31 14:07:12 -0700255 ManagedObjectType configuration;
256 try
James Feist7136a5a2018-07-19 09:52:05 -0700257 {
James Feist22c257a2018-08-31 14:07:12 -0700258 auto responce = bus.call(endpoint);
James Feist22c257a2018-08-31 14:07:12 -0700259 responce.read(configuration);
260 }
261 catch (sdbusplus::exception_t&)
262 {
263 // this shouldn't happen, probably means daemon crashed
James Feist7136a5a2018-07-19 09:52:05 -0700264 throw std::runtime_error("Error getting managed objects from " +
265 owner.first);
266 }
James Feist22c257a2018-08-31 14:07:12 -0700267
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700268 for (auto& pathPair : configuration)
James Feist7136a5a2018-07-19 09:52:05 -0700269 {
270 if (pathPair.second.find(pidConfigurationInterface) !=
271 pathPair.second.end() ||
272 pathPair.second.find(pidZoneConfigurationInterface) !=
James Feist22c257a2018-08-31 14:07:12 -0700273 pathPair.second.end() ||
274 pathPair.second.find(stepwiseConfigurationInterface) !=
James Feist7136a5a2018-07-19 09:52:05 -0700275 pathPair.second.end())
276 {
277 configurations.emplace(pathPair);
278 }
279 }
280 }
James Feist8c3c51e2018-08-08 16:31:43 -0700281
282 // on dbus having an index field is a bit strange, so randomly
283 // assign index based on name property
James Feistffd418b2018-11-15 14:46:36 -0800284 std::vector<std::string> foundZones;
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700285 for (const auto& configuration : configurations)
James Feist7136a5a2018-07-19 09:52:05 -0700286 {
287 auto findZone =
288 configuration.second.find(pidZoneConfigurationInterface);
289 if (findZone != configuration.second.end())
290 {
Patrick Venturee2ec0f62018-09-04 12:30:27 -0700291 const auto& zone = findZone->second;
James Feistffd418b2018-11-15 14:46:36 -0800292
James Feist1f802f52019-02-08 13:51:43 -0800293 const std::string& name = std::get<std::string>(zone.at("Name"));
James Feistffd418b2018-11-15 14:46:36 -0800294 size_t index = getZoneIndex(name, foundZones);
James Feist8c3c51e2018-08-08 16:31:43 -0700295
Patrick Venturec54fbd82018-10-30 19:40:05 -0700296 auto& details = zoneDetailsConfig[index];
Patrick Venture8e2fdb32019-02-11 09:39:59 -0800297 details.minThermalRpm =
James Feist1f802f52019-02-08 13:51:43 -0800298 std::visit(VariantToDoubleVisitor(), zone.at("MinThermalRpm"));
Patrick Venture8e2fdb32019-02-11 09:39:59 -0800299 details.failsafePercent = std::visit(VariantToDoubleVisitor(),
James Feist1f802f52019-02-08 13:51:43 -0800300 zone.at("FailSafePercent"));
James Feist7136a5a2018-07-19 09:52:05 -0700301 }
302 auto findBase = configuration.second.find(pidConfigurationInterface);
James Feist22c257a2018-08-31 14:07:12 -0700303 if (findBase != configuration.second.end())
James Feist7136a5a2018-07-19 09:52:05 -0700304 {
James Feist8c3c51e2018-08-08 16:31:43 -0700305
James Feist22c257a2018-08-31 14:07:12 -0700306 const auto& base =
307 configuration.second.at(pidConfigurationInterface);
308 const std::vector<std::string>& zones =
James Feist1f802f52019-02-08 13:51:43 -0800309 std::get<std::vector<std::string>>(base.at("Zones"));
James Feist22c257a2018-08-31 14:07:12 -0700310 for (const std::string& zone : zones)
James Feist7136a5a2018-07-19 09:52:05 -0700311 {
James Feistffd418b2018-11-15 14:46:36 -0800312 size_t index = getZoneIndex(zone, foundZones);
Patrick Venturec54fbd82018-10-30 19:40:05 -0700313 PIDConf& conf = zoneConfig[index];
James Feist50fdfe32018-09-24 15:51:09 -0700314
315 std::vector<std::string> sensorNames =
James Feist1f802f52019-02-08 13:51:43 -0800316 std::get<std::vector<std::string>>(base.at("Inputs"));
James Feist50fdfe32018-09-24 15:51:09 -0700317 auto findOutputs =
318 base.find("Outputs"); // currently only fans have outputs
319 if (findOutputs != base.end())
320 {
321 std::vector<std::string> outputs =
James Feist1f802f52019-02-08 13:51:43 -0800322 std::get<std::vector<std::string>>(findOutputs->second);
James Feist50fdfe32018-09-24 15:51:09 -0700323 sensorNames.insert(sensorNames.end(), outputs.begin(),
324 outputs.end());
325 }
James Feist1738e2a2019-02-04 15:57:03 -0800326
James Feist50fdfe32018-09-24 15:51:09 -0700327 std::vector<std::string> inputs;
James Feist1738e2a2019-02-04 15:57:03 -0800328 std::vector<std::pair<std::string, std::string>>
329 sensorInterfaces;
James Feist50fdfe32018-09-24 15:51:09 -0700330 for (const std::string& sensorName : sensorNames)
331 {
332 std::string name = sensorName;
333 // replace spaces with underscores to be legal on dbus
334 std::replace(name.begin(), name.end(), ' ', '_');
James Feist1738e2a2019-02-04 15:57:03 -0800335 findSensors(sensors, name, sensorInterfaces);
336 }
James Feist50fdfe32018-09-24 15:51:09 -0700337
James Feist1738e2a2019-02-04 15:57:03 -0800338 // if the sensors aren't available in the current state, don't
339 // add them to the configuration.
340 if (sensorInterfaces.empty())
341 {
342 continue;
343 }
344 for (const auto& sensorPathIfacePair : sensorInterfaces)
345 {
346
James Feist50fdfe32018-09-24 15:51:09 -0700347 if (sensorPathIfacePair.second == sensorInterface)
348 {
James Feist1738e2a2019-02-04 15:57:03 -0800349 size_t idx =
350 sensorPathIfacePair.first.find_last_of("/") + 1;
351 std::string shortName =
352 sensorPathIfacePair.first.substr(idx);
353
354 inputs.push_back(shortName);
355 auto& config = sensorConfig[shortName];
James Feist1f802f52019-02-08 13:51:43 -0800356 config.type = std::get<std::string>(base.at("Class"));
Patrick Venture69c51062019-02-11 09:46:03 -0800357 config.readPath = sensorPathIfacePair.first;
James Feist50fdfe32018-09-24 15:51:09 -0700358 // todo: maybe un-hardcode this if we run into slower
359 // timeouts with sensors
360 if (config.type == "temp")
361 {
362 config.timeout = 500;
363 }
364 }
365 else if (sensorPathIfacePair.second == pwmInterface)
366 {
367 // copy so we can modify it
368 for (std::string otherSensor : sensorNames)
369 {
James Feist1738e2a2019-02-04 15:57:03 -0800370 std::replace(otherSensor.begin(), otherSensor.end(),
371 ' ', '_');
372 if (sensorPathIfacePair.first.find(otherSensor) !=
373 std::string::npos)
James Feist50fdfe32018-09-24 15:51:09 -0700374 {
375 continue;
376 }
James Feist1738e2a2019-02-04 15:57:03 -0800377
Patrick Venturec54fbd82018-10-30 19:40:05 -0700378 auto& config = sensorConfig[otherSensor];
Patrick Venture69c51062019-02-11 09:46:03 -0800379 config.writePath = sensorPathIfacePair.first;
James Feist50fdfe32018-09-24 15:51:09 -0700380 // todo: un-hardcode this if there are fans with
381 // different ranges
382 config.max = 255;
383 config.min = 0;
384 }
385 }
386 }
James Feist1738e2a2019-02-04 15:57:03 -0800387
Patrick Venturef3252312018-10-30 08:42:53 -0700388 struct ControllerInfo& info =
James Feist1f802f52019-02-08 13:51:43 -0800389 conf[std::get<std::string>(base.at("Name"))];
James Feist50fdfe32018-09-24 15:51:09 -0700390 info.inputs = std::move(inputs);
391
James Feist1f802f52019-02-08 13:51:43 -0800392 info.type = std::get<std::string>(base.at("Class"));
James Feist22c257a2018-08-31 14:07:12 -0700393 // todo: auto generation yaml -> c script seems to discard this
394 // value for fans, verify this is okay
395 if (info.type == "fan")
396 {
397 info.setpoint = 0;
398 }
399 else
400 {
James Feist1f802f52019-02-08 13:51:43 -0800401 info.setpoint = std::visit(VariantToDoubleVisitor(),
402 base.at("SetPoint"));
James Feist22c257a2018-08-31 14:07:12 -0700403 }
404 info.pidInfo.ts = 1.0; // currently unused
James Feist1f802f52019-02-08 13:51:43 -0800405 info.pidInfo.p_c = std::visit(VariantToDoubleVisitor(),
406 base.at("PCoefficient"));
407 info.pidInfo.i_c = std::visit(VariantToDoubleVisitor(),
408 base.at("ICoefficient"));
409 info.pidInfo.ff_off = std::visit(VariantToDoubleVisitor(),
410 base.at("FFOffCoefficient"));
411 info.pidInfo.ff_gain = std::visit(VariantToDoubleVisitor(),
412 base.at("FFGainCoefficient"));
413 info.pidInfo.i_lim.max =
414 std::visit(VariantToDoubleVisitor(), base.at("ILimitMax"));
415 info.pidInfo.i_lim.min =
416 std::visit(VariantToDoubleVisitor(), base.at("ILimitMin"));
417 info.pidInfo.out_lim.max = std::visit(VariantToDoubleVisitor(),
418 base.at("OutLimitMax"));
419 info.pidInfo.out_lim.min = std::visit(VariantToDoubleVisitor(),
420 base.at("OutLimitMin"));
421 info.pidInfo.slew_neg =
422 std::visit(VariantToDoubleVisitor(), base.at("SlewNeg"));
423 info.pidInfo.slew_pos =
424 std::visit(VariantToDoubleVisitor(), base.at("SlewPos"));
James Feist572c43d2019-01-31 15:52:22 -0800425 double negativeHysteresis = 0;
426 double positiveHysteresis = 0;
427
428 auto findNeg = base.find("NegativeHysteresis");
429 auto findPos = base.find("PositiveHysteresis");
430 if (findNeg != base.end())
431 {
James Feist1f802f52019-02-08 13:51:43 -0800432 negativeHysteresis =
433 std::visit(VariantToDoubleVisitor(), findNeg->second);
James Feist572c43d2019-01-31 15:52:22 -0800434 }
435
436 if (findPos != base.end())
437 {
James Feist1f802f52019-02-08 13:51:43 -0800438 positiveHysteresis =
439 std::visit(VariantToDoubleVisitor(), findPos->second);
James Feist572c43d2019-01-31 15:52:22 -0800440 }
441 info.pidInfo.negativeHysteresis = negativeHysteresis;
442 info.pidInfo.positiveHysteresis = positiveHysteresis;
James Feist22c257a2018-08-31 14:07:12 -0700443 }
444 }
445 auto findStepwise =
446 configuration.second.find(stepwiseConfigurationInterface);
447 if (findStepwise != configuration.second.end())
448 {
449 const auto& base = findStepwise->second;
450 const std::vector<std::string>& zones =
James Feist1f802f52019-02-08 13:51:43 -0800451 std::get<std::vector<std::string>>(base.at("Zones"));
James Feist22c257a2018-08-31 14:07:12 -0700452 for (const std::string& zone : zones)
453 {
James Feistffd418b2018-11-15 14:46:36 -0800454 size_t index = getZoneIndex(zone, foundZones);
Patrick Venturec54fbd82018-10-30 19:40:05 -0700455 PIDConf& conf = zoneConfig[index];
James Feist50fdfe32018-09-24 15:51:09 -0700456
457 std::vector<std::string> inputs;
458 std::vector<std::string> sensorNames =
James Feist1f802f52019-02-08 13:51:43 -0800459 std::get<std::vector<std::string>>(base.at("Inputs"));
James Feist50fdfe32018-09-24 15:51:09 -0700460
James Feist1738e2a2019-02-04 15:57:03 -0800461 bool sensorFound = false;
James Feist50fdfe32018-09-24 15:51:09 -0700462 for (const std::string& sensorName : sensorNames)
463 {
464 std::string name = sensorName;
465 // replace spaces with underscores to be legal on dbus
466 std::replace(name.begin(), name.end(), ' ', '_');
James Feist1738e2a2019-02-04 15:57:03 -0800467 std::vector<std::pair<std::string, std::string>>
468 sensorPathIfacePairs;
James Feist50fdfe32018-09-24 15:51:09 -0700469
James Feist1738e2a2019-02-04 15:57:03 -0800470 if (!findSensors(sensors, name, sensorPathIfacePairs))
James Feist50fdfe32018-09-24 15:51:09 -0700471 {
James Feist50fdfe32018-09-24 15:51:09 -0700472 break;
473 }
474
James Feist1738e2a2019-02-04 15:57:03 -0800475 for (const auto& sensorPathIfacePair : sensorPathIfacePairs)
476 {
477 size_t idx =
478 sensorPathIfacePair.first.find_last_of("/") + 1;
479 std::string shortName =
480 sensorPathIfacePair.first.substr(idx);
James Feist50fdfe32018-09-24 15:51:09 -0700481
James Feist1738e2a2019-02-04 15:57:03 -0800482 inputs.push_back(shortName);
483 auto& config = sensorConfig[shortName];
Patrick Venture69c51062019-02-11 09:46:03 -0800484 config.readPath = sensorPathIfacePair.first;
James Feist1738e2a2019-02-04 15:57:03 -0800485 config.type = "temp";
486 // todo: maybe un-hardcode this if we run into slower
487 // timeouts with sensors
488
489 config.timeout = 500;
490 sensorFound = true;
491 }
James Feist50fdfe32018-09-24 15:51:09 -0700492 }
493 if (!sensorFound)
494 {
495 continue;
496 }
Patrick Venturef3252312018-10-30 08:42:53 -0700497 struct ControllerInfo& info =
James Feist1f802f52019-02-08 13:51:43 -0800498 conf[std::get<std::string>(base.at("Name"))];
James Feist50fdfe32018-09-24 15:51:09 -0700499 info.inputs = std::move(inputs);
500
James Feist22c257a2018-08-31 14:07:12 -0700501 info.type = "stepwise";
502 info.stepwiseInfo.ts = 1.0; // currently unused
James Feist3dfaafd2018-09-20 15:46:58 -0700503 info.stepwiseInfo.positiveHysteresis = 0.0;
504 info.stepwiseInfo.negativeHysteresis = 0.0;
505 auto findPosHyst = base.find("PositiveHysteresis");
506 auto findNegHyst = base.find("NegativeHysteresis");
507 if (findPosHyst != base.end())
508 {
James Feist1f802f52019-02-08 13:51:43 -0800509 info.stepwiseInfo.positiveHysteresis = std::visit(
James Feist208abce2018-12-06 09:59:10 -0800510 VariantToDoubleVisitor(), findPosHyst->second);
James Feist3dfaafd2018-09-20 15:46:58 -0700511 }
512 if (findNegHyst != base.end())
513 {
James Feist1f802f52019-02-08 13:51:43 -0800514 info.stepwiseInfo.positiveHysteresis = std::visit(
James Feist208abce2018-12-06 09:59:10 -0800515 VariantToDoubleVisitor(), findNegHyst->second);
James Feist3dfaafd2018-09-20 15:46:58 -0700516 }
James Feist22c257a2018-08-31 14:07:12 -0700517 std::vector<double> readings =
James Feist1f802f52019-02-08 13:51:43 -0800518 std::get<std::vector<double>>(base.at("Reading"));
James Feist22c257a2018-08-31 14:07:12 -0700519 if (readings.size() > ec::maxStepwisePoints)
520 {
521 throw std::invalid_argument("Too many stepwise points.");
522 }
523 if (readings.empty())
524 {
525 throw std::invalid_argument(
526 "Must have one stepwise point.");
527 }
528 std::copy(readings.begin(), readings.end(),
529 info.stepwiseInfo.reading);
530 if (readings.size() < ec::maxStepwisePoints)
531 {
532 info.stepwiseInfo.reading[readings.size()] =
Patrick Venture5f59c0f2018-11-11 12:55:14 -0800533 std::numeric_limits<double>::quiet_NaN();
James Feist22c257a2018-08-31 14:07:12 -0700534 }
535 std::vector<double> outputs =
James Feist1f802f52019-02-08 13:51:43 -0800536 std::get<std::vector<double>>(base.at("Output"));
James Feist22c257a2018-08-31 14:07:12 -0700537 if (readings.size() != outputs.size())
538 {
539 throw std::invalid_argument(
540 "Outputs size must match readings");
541 }
542 std::copy(outputs.begin(), outputs.end(),
543 info.stepwiseInfo.output);
544 if (outputs.size() < ec::maxStepwisePoints)
545 {
546 info.stepwiseInfo.output[outputs.size()] =
Patrick Venture5f59c0f2018-11-11 12:55:14 -0800547 std::numeric_limits<double>::quiet_NaN();
James Feist22c257a2018-08-31 14:07:12 -0700548 }
James Feist7136a5a2018-07-19 09:52:05 -0700549 }
550 }
551 }
552 if (DEBUG)
553 {
554 debugPrint();
555 }
James Feistc959c422018-11-01 12:33:40 -0700556 if (zoneConfig.empty() || zoneDetailsConfig.empty())
James Feist50fdfe32018-09-24 15:51:09 -0700557 {
558 std::cerr << "No fan zones, application pausing until reboot\n";
559 while (1)
560 {
561 bus.process_discard();
James Feist65ea92e2018-10-26 16:21:37 -0700562 bus.wait();
James Feist50fdfe32018-09-24 15:51:09 -0700563 }
564 }
James Feist7136a5a2018-07-19 09:52:05 -0700565}
566} // namespace dbus_configuration