James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 1 | /* |
| 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 Venture | 0771659 | 2018-10-14 11:46:40 -0700 | [diff] [blame] | 17 | #include "conf.hpp" |
| 18 | #include "dbus/util.hpp" |
| 19 | |
Patrick Venture | 107a25d | 2018-10-13 14:08:09 -0700 | [diff] [blame] | 20 | #include <algorithm> |
James Feist | 64f072a | 2018-08-10 16:39:24 -0700 | [diff] [blame] | 21 | #include <chrono> |
James Feist | 64f072a | 2018-08-10 16:39:24 -0700 | [diff] [blame] | 22 | #include <functional> |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 23 | #include <iostream> |
| 24 | #include <sdbusplus/bus.hpp> |
James Feist | 64f072a | 2018-08-10 16:39:24 -0700 | [diff] [blame] | 25 | #include <sdbusplus/bus/match.hpp> |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 26 | #include <sdbusplus/exception.hpp> |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 27 | #include <set> |
James Feist | 64f072a | 2018-08-10 16:39:24 -0700 | [diff] [blame] | 28 | #include <thread> |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 29 | #include <unordered_map> |
| 30 | |
| 31 | static constexpr bool DEBUG = false; // enable to print found configuration |
| 32 | |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 33 | std::map<std::string, struct SensorConfig> sensorConfig = {}; |
| 34 | std::map<int64_t, PIDConf> zoneConfig = {}; |
| 35 | std::map<int64_t, struct ZoneConfig> zoneDetailsConfig = {}; |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 36 | |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 37 | constexpr const char* pidConfigurationInterface = |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 38 | "xyz.openbmc_project.Configuration.Pid"; |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 39 | constexpr const char* objectManagerInterface = |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 40 | "org.freedesktop.DBus.ObjectManager"; |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 41 | constexpr const char* pidZoneConfigurationInterface = |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 42 | "xyz.openbmc_project.Configuration.Pid.Zone"; |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 43 | constexpr const char* stepwiseConfigurationInterface = |
| 44 | "xyz.openbmc_project.Configuration.Stepwise"; |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 45 | constexpr const char* sensorInterface = "xyz.openbmc_project.Sensor.Value"; |
| 46 | constexpr const char* pwmInterface = "xyz.openbmc_project.Control.FanPwm"; |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 47 | |
| 48 | namespace dbus_configuration |
| 49 | { |
| 50 | |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 51 | namespace variant_ns = sdbusplus::message::variant_ns; |
| 52 | |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 53 | bool findSensor(const std::unordered_map<std::string, std::string>& sensors, |
| 54 | const std::string& search, |
| 55 | std::pair<std::string, std::string>& sensor) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 56 | { |
Patrick Venture | 107a25d | 2018-10-13 14:08:09 -0700 | [diff] [blame] | 57 | auto found = |
| 58 | std::find_if(sensors.begin(), sensors.end(), [&search](const auto& s) { |
| 59 | return (s.first.find(search) != std::string::npos); |
| 60 | }); |
| 61 | if (found != sensors.end()) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 62 | { |
Patrick Venture | 107a25d | 2018-10-13 14:08:09 -0700 | [diff] [blame] | 63 | sensor = *found; |
| 64 | return true; |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 65 | } |
Patrick Venture | 107a25d | 2018-10-13 14:08:09 -0700 | [diff] [blame] | 66 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 67 | return false; |
| 68 | } |
| 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 |
| 73 | void debugPrint(void) |
| 74 | { |
| 75 | // print sensor config |
| 76 | std::cout << "sensor config:\n"; |
| 77 | std::cout << "{\n"; |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 78 | for (const auto& pair : sensorConfig) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 79 | { |
| 80 | |
| 81 | std::cout << "\t{" << pair.first << ",\n\t\t{"; |
| 82 | std::cout << pair.second.type << ", "; |
| 83 | std::cout << pair.second.readpath << ", "; |
| 84 | std::cout << pair.second.writepath << ", "; |
| 85 | 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 Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 92 | for (const auto& zone : zoneDetailsConfig) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 93 | { |
| 94 | std::cout << "\t{" << zone.first << ",\n"; |
| 95 | std::cout << "\t\t{" << zone.second.minthermalrpm << ", "; |
| 96 | std::cout << zone.second.failsafepercent << "}\n\t},\n"; |
| 97 | } |
| 98 | std::cout << "}\n\n"; |
| 99 | std::cout << "ZoneConfig\n"; |
| 100 | std::cout << "{\n"; |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 101 | for (const auto& zone : zoneConfig) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 102 | { |
| 103 | std::cout << "\t{" << zone.first << "\n"; |
Patrick Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 104 | for (const auto& pidconf : zone.second) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 105 | { |
| 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 Venture | 4a2dc4d | 2018-10-23 09:02:55 -0700 | [diff] [blame] | 109 | for (const auto& input : pidconf.second.inputs) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 110 | { |
| 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 Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 115 | 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 Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 126 | std::cout << "\t\t\t}\n\t\t}\n"; |
| 127 | } |
| 128 | std::cout << "\t},\n"; |
| 129 | } |
| 130 | std::cout << "}\n\n"; |
| 131 | } |
| 132 | |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 133 | int 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 Feist | ffd418b | 2018-11-15 14:46:36 -0800 | [diff] [blame] | 143 | size_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 Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 155 | void init(sdbusplus::bus::bus& bus) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 156 | { |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 157 | using DbusVariantType = |
| 158 | sdbusplus::message::variant<uint64_t, int64_t, double, std::string, |
| 159 | std::vector<std::string>, |
| 160 | std::vector<double>>; |
| 161 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 162 | using ManagedObjectType = std::unordered_map< |
| 163 | sdbusplus::message::object_path, |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 164 | std::unordered_map<std::string, |
| 165 | std::unordered_map<std::string, DbusVariantType>>>; |
James Feist | 64f072a | 2018-08-10 16:39:24 -0700 | [diff] [blame] | 166 | |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 167 | // restart on configuration properties changed |
| 168 | static sdbusplus::bus::match::match configMatch( |
James Feist | 64f072a | 2018-08-10 16:39:24 -0700 | [diff] [blame] | 169 | bus, |
| 170 | "type='signal',member='PropertiesChanged',arg0namespace='" + |
| 171 | std::string(pidConfigurationInterface) + "'", |
| 172 | eventHandler); |
| 173 | |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 174 | // restart on sensors changed |
| 175 | static sdbusplus::bus::match::match sensorAdded( |
| 176 | bus, |
| 177 | "type='signal',member='InterfacesAdded',arg0path='/xyz/openbmc_project/" |
| 178 | "sensors/'", |
| 179 | eventHandler); |
| 180 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 181 | auto mapper = |
| 182 | bus.new_method_call("xyz.openbmc_project.ObjectMapper", |
| 183 | "/xyz/openbmc_project/object_mapper", |
| 184 | "xyz.openbmc_project.ObjectMapper", "GetSubTree"); |
James Feist | 26e8c6a | 2018-10-25 10:38:26 -0700 | [diff] [blame] | 185 | mapper.append("/", 0, |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 186 | std::array<const char*, 6>{objectManagerInterface, |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 187 | pidConfigurationInterface, |
| 188 | pidZoneConfigurationInterface, |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 189 | stepwiseConfigurationInterface, |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 190 | sensorInterface, pwmInterface}); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 191 | std::unordered_map< |
| 192 | std::string, std::unordered_map<std::string, std::vector<std::string>>> |
| 193 | respData; |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 194 | try |
| 195 | { |
| 196 | auto resp = bus.call(mapper); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 197 | resp.read(respData); |
| 198 | } |
| 199 | catch (sdbusplus::exception_t&) |
| 200 | { |
| 201 | // can't do anything without mapper call data |
| 202 | throw std::runtime_error("ObjectMapper Call Failure"); |
| 203 | } |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 204 | |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 205 | if (respData.empty()) |
| 206 | { |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 207 | // can't do anything without mapper call data |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 208 | throw std::runtime_error("No configuration data available from Mapper"); |
| 209 | } |
| 210 | // create a map of pair of <has pid configuration, ObjectManager path> |
| 211 | std::unordered_map<std::string, std::pair<bool, std::string>> owners; |
| 212 | // and a map of <path, interface> for sensors |
| 213 | std::unordered_map<std::string, std::string> sensors; |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 214 | for (const auto& objectPair : respData) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 215 | { |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 216 | for (const auto& ownerPair : objectPair.second) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 217 | { |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 218 | auto& owner = owners[ownerPair.first]; |
| 219 | for (const std::string& interface : ownerPair.second) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 220 | { |
| 221 | |
| 222 | if (interface == objectManagerInterface) |
| 223 | { |
| 224 | owner.second = objectPair.first; |
| 225 | } |
| 226 | if (interface == pidConfigurationInterface || |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 227 | interface == pidZoneConfigurationInterface || |
| 228 | interface == stepwiseConfigurationInterface) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 229 | { |
| 230 | owner.first = true; |
| 231 | } |
| 232 | if (interface == sensorInterface || interface == pwmInterface) |
| 233 | { |
| 234 | // we're not interested in pwm sensors, just pwm control |
| 235 | if (interface == sensorInterface && |
| 236 | objectPair.first.find("pwm") != std::string::npos) |
| 237 | { |
| 238 | continue; |
| 239 | } |
| 240 | sensors[objectPair.first] = interface; |
| 241 | } |
| 242 | } |
| 243 | } |
| 244 | } |
| 245 | ManagedObjectType configurations; |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 246 | for (const auto& owner : owners) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 247 | { |
| 248 | // skip if no pid configuration (means probably a sensor) |
| 249 | if (!owner.second.first) |
| 250 | { |
| 251 | continue; |
| 252 | } |
| 253 | auto endpoint = bus.new_method_call( |
| 254 | owner.first.c_str(), owner.second.second.c_str(), |
| 255 | "org.freedesktop.DBus.ObjectManager", "GetManagedObjects"); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 256 | ManagedObjectType configuration; |
| 257 | try |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 258 | { |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 259 | auto responce = bus.call(endpoint); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 260 | responce.read(configuration); |
| 261 | } |
| 262 | catch (sdbusplus::exception_t&) |
| 263 | { |
| 264 | // this shouldn't happen, probably means daemon crashed |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 265 | throw std::runtime_error("Error getting managed objects from " + |
| 266 | owner.first); |
| 267 | } |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 268 | |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 269 | for (auto& pathPair : configuration) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 270 | { |
| 271 | if (pathPair.second.find(pidConfigurationInterface) != |
| 272 | pathPair.second.end() || |
| 273 | pathPair.second.find(pidZoneConfigurationInterface) != |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 274 | pathPair.second.end() || |
| 275 | pathPair.second.find(stepwiseConfigurationInterface) != |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 276 | pathPair.second.end()) |
| 277 | { |
| 278 | configurations.emplace(pathPair); |
| 279 | } |
| 280 | } |
| 281 | } |
James Feist | 8c3c51e | 2018-08-08 16:31:43 -0700 | [diff] [blame] | 282 | |
| 283 | // on dbus having an index field is a bit strange, so randomly |
| 284 | // assign index based on name property |
James Feist | ffd418b | 2018-11-15 14:46:36 -0800 | [diff] [blame] | 285 | std::vector<std::string> foundZones; |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 286 | for (const auto& configuration : configurations) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 287 | { |
| 288 | auto findZone = |
| 289 | configuration.second.find(pidZoneConfigurationInterface); |
| 290 | if (findZone != configuration.second.end()) |
| 291 | { |
Patrick Venture | e2ec0f6 | 2018-09-04 12:30:27 -0700 | [diff] [blame] | 292 | const auto& zone = findZone->second; |
James Feist | ffd418b | 2018-11-15 14:46:36 -0800 | [diff] [blame] | 293 | |
James Feist | 8c3c51e | 2018-08-08 16:31:43 -0700 | [diff] [blame] | 294 | const std::string& name = |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 295 | variant_ns::get<std::string>(zone.at("Name")); |
James Feist | ffd418b | 2018-11-15 14:46:36 -0800 | [diff] [blame] | 296 | size_t index = getZoneIndex(name, foundZones); |
James Feist | 8c3c51e | 2018-08-08 16:31:43 -0700 | [diff] [blame] | 297 | |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 298 | auto& details = zoneDetailsConfig[index]; |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 299 | details.minthermalrpm = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 300 | VariantToDoubleVisitor(), zone.at("MinThermalRpm")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 301 | details.failsafepercent = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 302 | VariantToDoubleVisitor(), zone.at("FailSafePercent")); |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 303 | } |
| 304 | auto findBase = configuration.second.find(pidConfigurationInterface); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 305 | if (findBase != configuration.second.end()) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 306 | { |
James Feist | 8c3c51e | 2018-08-08 16:31:43 -0700 | [diff] [blame] | 307 | |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 308 | const auto& base = |
| 309 | configuration.second.at(pidConfigurationInterface); |
| 310 | const std::vector<std::string>& zones = |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 311 | variant_ns::get<std::vector<std::string>>(base.at("Zones")); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 312 | for (const std::string& zone : zones) |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 313 | { |
James Feist | ffd418b | 2018-11-15 14:46:36 -0800 | [diff] [blame] | 314 | size_t index = getZoneIndex(zone, foundZones); |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 315 | PIDConf& conf = zoneConfig[index]; |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 316 | |
| 317 | std::vector<std::string> sensorNames = |
| 318 | variant_ns::get<std::vector<std::string>>( |
| 319 | base.at("Inputs")); |
| 320 | auto findOutputs = |
| 321 | base.find("Outputs"); // currently only fans have outputs |
| 322 | if (findOutputs != base.end()) |
| 323 | { |
| 324 | std::vector<std::string> outputs = |
| 325 | variant_ns::get<std::vector<std::string>>( |
| 326 | findOutputs->second); |
| 327 | sensorNames.insert(sensorNames.end(), outputs.begin(), |
| 328 | outputs.end()); |
| 329 | } |
| 330 | bool sensorsAvailable = sensorNames.size(); |
| 331 | std::vector<std::string> inputs; |
| 332 | for (const std::string& sensorName : sensorNames) |
| 333 | { |
| 334 | std::string name = sensorName; |
| 335 | // replace spaces with underscores to be legal on dbus |
| 336 | std::replace(name.begin(), name.end(), ' ', '_'); |
| 337 | std::pair<std::string, std::string> sensorPathIfacePair; |
| 338 | |
| 339 | if (!findSensor(sensors, name, sensorPathIfacePair)) |
| 340 | { |
| 341 | sensorsAvailable = false; |
| 342 | break; |
| 343 | } |
| 344 | if (sensorPathIfacePair.second == sensorInterface) |
| 345 | { |
| 346 | inputs.push_back(name); |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 347 | auto& config = sensorConfig[name]; |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 348 | config.type = |
| 349 | variant_ns::get<std::string>(base.at("Class")); |
| 350 | config.readpath = sensorPathIfacePair.first; |
| 351 | // todo: maybe un-hardcode this if we run into slower |
| 352 | // timeouts with sensors |
| 353 | if (config.type == "temp") |
| 354 | { |
| 355 | config.timeout = 500; |
| 356 | } |
| 357 | } |
| 358 | else if (sensorPathIfacePair.second == pwmInterface) |
| 359 | { |
| 360 | // copy so we can modify it |
| 361 | for (std::string otherSensor : sensorNames) |
| 362 | { |
| 363 | if (otherSensor == sensorName) |
| 364 | { |
| 365 | continue; |
| 366 | } |
| 367 | std::replace(otherSensor.begin(), otherSensor.end(), |
| 368 | ' ', '_'); |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 369 | auto& config = sensorConfig[otherSensor]; |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 370 | config.writepath = sensorPathIfacePair.first; |
| 371 | // todo: un-hardcode this if there are fans with |
| 372 | // different ranges |
| 373 | config.max = 255; |
| 374 | config.min = 0; |
| 375 | } |
| 376 | } |
| 377 | } |
| 378 | // if the sensors aren't available in the current state, don't |
| 379 | // add them to the configuration. |
| 380 | if (!sensorsAvailable) |
| 381 | { |
| 382 | continue; |
| 383 | } |
Patrick Venture | f325231 | 2018-10-30 08:42:53 -0700 | [diff] [blame] | 384 | struct ControllerInfo& info = |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 385 | conf[variant_ns::get<std::string>(base.at("Name"))]; |
| 386 | info.inputs = std::move(inputs); |
| 387 | |
| 388 | info.type = variant_ns::get<std::string>(base.at("Class")); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 389 | // todo: auto generation yaml -> c script seems to discard this |
| 390 | // value for fans, verify this is okay |
| 391 | if (info.type == "fan") |
| 392 | { |
| 393 | info.setpoint = 0; |
| 394 | } |
| 395 | else |
| 396 | { |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 397 | info.setpoint = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 398 | VariantToDoubleVisitor(), base.at("SetPoint")); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 399 | } |
| 400 | info.pidInfo.ts = 1.0; // currently unused |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 401 | info.pidInfo.p_c = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 402 | VariantToDoubleVisitor(), base.at("PCoefficient")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 403 | info.pidInfo.i_c = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 404 | VariantToDoubleVisitor(), base.at("ICoefficient")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 405 | info.pidInfo.ff_off = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 406 | VariantToDoubleVisitor(), base.at("FFOffCoefficient")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 407 | info.pidInfo.ff_gain = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 408 | VariantToDoubleVisitor(), base.at("FFGainCoefficient")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 409 | info.pidInfo.i_lim.max = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 410 | VariantToDoubleVisitor(), base.at("ILimitMax")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 411 | info.pidInfo.i_lim.min = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 412 | VariantToDoubleVisitor(), base.at("ILimitMin")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 413 | info.pidInfo.out_lim.max = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 414 | VariantToDoubleVisitor(), base.at("OutLimitMax")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 415 | info.pidInfo.out_lim.min = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 416 | VariantToDoubleVisitor(), base.at("OutLimitMin")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 417 | info.pidInfo.slew_neg = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 418 | VariantToDoubleVisitor(), base.at("SlewNeg")); |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 419 | info.pidInfo.slew_pos = variant_ns::apply_visitor( |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 420 | VariantToDoubleVisitor(), base.at("SlewPos")); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 421 | } |
| 422 | } |
| 423 | auto findStepwise = |
| 424 | configuration.second.find(stepwiseConfigurationInterface); |
| 425 | if (findStepwise != configuration.second.end()) |
| 426 | { |
| 427 | const auto& base = findStepwise->second; |
| 428 | const std::vector<std::string>& zones = |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 429 | variant_ns::get<std::vector<std::string>>(base.at("Zones")); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 430 | for (const std::string& zone : zones) |
| 431 | { |
James Feist | ffd418b | 2018-11-15 14:46:36 -0800 | [diff] [blame] | 432 | size_t index = getZoneIndex(zone, foundZones); |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 433 | PIDConf& conf = zoneConfig[index]; |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 434 | |
| 435 | std::vector<std::string> inputs; |
| 436 | std::vector<std::string> sensorNames = |
| 437 | variant_ns::get<std::vector<std::string>>( |
| 438 | base.at("Inputs")); |
| 439 | |
| 440 | bool sensorFound = sensorNames.size(); |
| 441 | for (const std::string& sensorName : sensorNames) |
| 442 | { |
| 443 | std::string name = sensorName; |
| 444 | // replace spaces with underscores to be legal on dbus |
| 445 | std::replace(name.begin(), name.end(), ' ', '_'); |
| 446 | std::pair<std::string, std::string> sensorPathIfacePair; |
| 447 | |
| 448 | if (!findSensor(sensors, name, sensorPathIfacePair)) |
| 449 | { |
| 450 | sensorFound = false; |
| 451 | break; |
| 452 | } |
| 453 | |
| 454 | inputs.push_back(name); |
Patrick Venture | c54fbd8 | 2018-10-30 19:40:05 -0700 | [diff] [blame] | 455 | auto& config = sensorConfig[name]; |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 456 | config.readpath = sensorPathIfacePair.first; |
| 457 | config.type = "temp"; |
| 458 | // todo: maybe un-hardcode this if we run into slower |
| 459 | // timeouts with sensors |
| 460 | |
| 461 | config.timeout = 500; |
| 462 | } |
| 463 | if (!sensorFound) |
| 464 | { |
| 465 | continue; |
| 466 | } |
Patrick Venture | f325231 | 2018-10-30 08:42:53 -0700 | [diff] [blame] | 467 | struct ControllerInfo& info = |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 468 | conf[variant_ns::get<std::string>(base.at("Name"))]; |
| 469 | info.inputs = std::move(inputs); |
| 470 | |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 471 | info.type = "stepwise"; |
| 472 | info.stepwiseInfo.ts = 1.0; // currently unused |
James Feist | 3dfaafd | 2018-09-20 15:46:58 -0700 | [diff] [blame] | 473 | info.stepwiseInfo.positiveHysteresis = 0.0; |
| 474 | info.stepwiseInfo.negativeHysteresis = 0.0; |
| 475 | auto findPosHyst = base.find("PositiveHysteresis"); |
| 476 | auto findNegHyst = base.find("NegativeHysteresis"); |
| 477 | if (findPosHyst != base.end()) |
| 478 | { |
| 479 | info.stepwiseInfo.positiveHysteresis = |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 480 | variant_ns::apply_visitor(VariantToDoubleVisitor(), |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 481 | findPosHyst->second); |
James Feist | 3dfaafd | 2018-09-20 15:46:58 -0700 | [diff] [blame] | 482 | } |
| 483 | if (findNegHyst != base.end()) |
| 484 | { |
| 485 | info.stepwiseInfo.positiveHysteresis = |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 486 | variant_ns::apply_visitor(VariantToDoubleVisitor(), |
James Feist | d7a55bf | 2018-10-11 14:40:07 -0700 | [diff] [blame] | 487 | findNegHyst->second); |
James Feist | 3dfaafd | 2018-09-20 15:46:58 -0700 | [diff] [blame] | 488 | } |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 489 | std::vector<double> readings = |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 490 | variant_ns::get<std::vector<double>>(base.at("Reading")); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 491 | if (readings.size() > ec::maxStepwisePoints) |
| 492 | { |
| 493 | throw std::invalid_argument("Too many stepwise points."); |
| 494 | } |
| 495 | if (readings.empty()) |
| 496 | { |
| 497 | throw std::invalid_argument( |
| 498 | "Must have one stepwise point."); |
| 499 | } |
| 500 | std::copy(readings.begin(), readings.end(), |
| 501 | info.stepwiseInfo.reading); |
| 502 | if (readings.size() < ec::maxStepwisePoints) |
| 503 | { |
| 504 | info.stepwiseInfo.reading[readings.size()] = |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 505 | std::numeric_limits<double>::quiet_NaN(); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 506 | } |
| 507 | std::vector<double> outputs = |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 508 | variant_ns::get<std::vector<double>>(base.at("Output")); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 509 | if (readings.size() != outputs.size()) |
| 510 | { |
| 511 | throw std::invalid_argument( |
| 512 | "Outputs size must match readings"); |
| 513 | } |
| 514 | std::copy(outputs.begin(), outputs.end(), |
| 515 | info.stepwiseInfo.output); |
| 516 | if (outputs.size() < ec::maxStepwisePoints) |
| 517 | { |
| 518 | info.stepwiseInfo.output[outputs.size()] = |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 519 | std::numeric_limits<double>::quiet_NaN(); |
James Feist | 22c257a | 2018-08-31 14:07:12 -0700 | [diff] [blame] | 520 | } |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 521 | } |
| 522 | } |
| 523 | } |
| 524 | if (DEBUG) |
| 525 | { |
| 526 | debugPrint(); |
| 527 | } |
James Feist | c959c42 | 2018-11-01 12:33:40 -0700 | [diff] [blame] | 528 | if (zoneConfig.empty() || zoneDetailsConfig.empty()) |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 529 | { |
| 530 | std::cerr << "No fan zones, application pausing until reboot\n"; |
| 531 | while (1) |
| 532 | { |
| 533 | bus.process_discard(); |
James Feist | 65ea92e | 2018-10-26 16:21:37 -0700 | [diff] [blame] | 534 | bus.wait(); |
James Feist | 50fdfe3 | 2018-09-24 15:51:09 -0700 | [diff] [blame] | 535 | } |
| 536 | } |
James Feist | 7136a5a | 2018-07-19 09:52:05 -0700 | [diff] [blame] | 537 | } |
| 538 | } // namespace dbus_configuration |