blob: bc9d842253ef1f3b0e0c85cb0aaae21e4f8847b0 [file] [log] [blame]
James Feist6ef20402019-01-07 16:45:08 -08001/*
2// Copyright (c) 2019 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
17#include "IpmbSensor.hpp"
18
19#include "Utils.hpp"
20#include "VariantVisitors.hpp"
21
22#include <math.h>
23
24#include <boost/algorithm/string.hpp>
25#include <boost/algorithm/string/predicate.hpp>
26#include <boost/algorithm/string/replace.hpp>
Patrick Venture96e97db2019-10-31 13:44:38 -070027#include <boost/container/flat_map.hpp>
James Feist38fb5982020-05-28 10:09:54 -070028#include <sdbusplus/asio/connection.hpp>
29#include <sdbusplus/asio/object_server.hpp>
30#include <sdbusplus/bus/match.hpp>
31
James Feist6ef20402019-01-07 16:45:08 -080032#include <chrono>
Patrick Venture96e97db2019-10-31 13:44:38 -070033#include <functional>
James Feist6ef20402019-01-07 16:45:08 -080034#include <iostream>
35#include <limits>
Patrick Venture96e97db2019-10-31 13:44:38 -070036#include <memory>
James Feist6ef20402019-01-07 16:45:08 -080037#include <numeric>
Patrick Venture96e97db2019-10-31 13:44:38 -070038#include <string>
39#include <tuple>
40#include <variant>
James Feist6ef20402019-01-07 16:45:08 -080041#include <vector>
42
43constexpr const bool debug = false;
44
45constexpr const char* configInterface =
46 "xyz.openbmc_project.Configuration.IpmbSensor";
47static constexpr double ipmbMaxReading = 0xFF;
48static constexpr double ipmbMinReading = 0;
49
50static constexpr uint8_t meAddress = 1;
51static constexpr uint8_t lun = 0;
52
Vijay Khemka682a5cb2019-07-18 17:34:03 -070053static constexpr const char* sensorPathPrefix = "/xyz/openbmc_project/sensors/";
54
James Feist6ef20402019-01-07 16:45:08 -080055using IpmbMethodType =
56 std::tuple<int, uint8_t, uint8_t, uint8_t, uint8_t, std::vector<uint8_t>>;
57
James Feistf7e2c5d2019-02-13 17:27:51 -080058boost::container::flat_map<std::string, std::unique_ptr<IpmbSensor>> sensors;
59
James Feist0d4f2bd2019-03-05 13:15:40 -080060std::unique_ptr<boost::asio::deadline_timer> initCmdTimer;
61
James Feist6ef20402019-01-07 16:45:08 -080062IpmbSensor::IpmbSensor(std::shared_ptr<sdbusplus::asio::connection>& conn,
63 boost::asio::io_service& io,
64 const std::string& sensorName,
65 const std::string& sensorConfiguration,
66 sdbusplus::asio::object_server& objectServer,
67 std::vector<thresholds::Threshold>&& thresholdData,
Vijay Khemka682a5cb2019-07-18 17:34:03 -070068 uint8_t deviceAddress, std::string& sensorTypeName) :
James Feist6ef20402019-01-07 16:45:08 -080069 Sensor(boost::replace_all_copy(sensorName, " ", "_"),
James Feist930fcde2019-05-28 12:58:43 -070070 std::move(thresholdData), sensorConfiguration,
71 "xyz.openbmc_project.Configuration.ExitAirTemp", ipmbMaxReading,
James Feist961bf092020-07-01 16:38:12 -070072 ipmbMinReading, PowerState::on),
73 deviceAddress(deviceAddress), objectServer(objectServer),
74 dbusConnection(conn), waitTimer(io)
James Feist6ef20402019-01-07 16:45:08 -080075{
Vijay Khemka682a5cb2019-07-18 17:34:03 -070076 std::string dbusPath = sensorPathPrefix + sensorTypeName + "/" + name;
77
James Feist6ef20402019-01-07 16:45:08 -080078 sensorInterface = objectServer.add_interface(
Vijay Khemka682a5cb2019-07-18 17:34:03 -070079 dbusPath, "xyz.openbmc_project.Sensor.Value");
James Feist6ef20402019-01-07 16:45:08 -080080
81 if (thresholds::hasWarningInterface(thresholds))
82 {
83 thresholdInterfaceWarning = objectServer.add_interface(
Vijay Khemka682a5cb2019-07-18 17:34:03 -070084 dbusPath, "xyz.openbmc_project.Sensor.Threshold.Warning");
James Feist6ef20402019-01-07 16:45:08 -080085 }
86 if (thresholds::hasCriticalInterface(thresholds))
87 {
88 thresholdInterfaceCritical = objectServer.add_interface(
Vijay Khemka682a5cb2019-07-18 17:34:03 -070089 dbusPath, "xyz.openbmc_project.Sensor.Threshold.Critical");
James Feist6ef20402019-01-07 16:45:08 -080090 }
James Feist2adc95c2019-09-30 14:55:28 -070091 association = objectServer.add_interface(dbusPath, association::interface);
James Feist6ef20402019-01-07 16:45:08 -080092}
93
94IpmbSensor::~IpmbSensor()
95{
96 waitTimer.cancel();
97 objectServer.remove_interface(thresholdInterfaceWarning);
98 objectServer.remove_interface(thresholdInterfaceCritical);
99 objectServer.remove_interface(sensorInterface);
James Feist078f2322019-03-08 11:09:05 -0800100 objectServer.remove_interface(association);
James Feist6ef20402019-01-07 16:45:08 -0800101}
102
103void IpmbSensor::init(void)
104{
James Feist6ef20402019-01-07 16:45:08 -0800105 loadDefaults();
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200106 setInitialProperties(dbusConnection);
James Feist6ef20402019-01-07 16:45:08 -0800107 if (initCommand)
108 {
James Feistf7e2c5d2019-02-13 17:27:51 -0800109 runInitCmd();
110 }
111 read();
112}
113
114void IpmbSensor::runInitCmd()
115{
116 if (initCommand)
117 {
James Feist6ef20402019-01-07 16:45:08 -0800118 dbusConnection->async_method_call(
119 [this](boost::system::error_code ec,
120 const IpmbMethodType& response) {
121 const int& status = std::get<0>(response);
122
123 if (ec || status)
124 {
125 std::cerr
126 << "Error setting init command for device: " << name
127 << "\n";
128 }
James Feist6ef20402019-01-07 16:45:08 -0800129 },
130 "xyz.openbmc_project.Ipmi.Channel.Ipmb",
131 "/xyz/openbmc_project/Ipmi/Channel/Ipmb", "org.openbmc.Ipmb",
132 "sendRequest", commandAddress, netfn, lun, *initCommand, initData);
133 }
James Feist6ef20402019-01-07 16:45:08 -0800134}
135
136void IpmbSensor::loadDefaults()
137{
138 if (type == IpmbType::meSensor)
139 {
140 commandAddress = meAddress;
Adrian Ambrożewicz58e02ef2020-08-06 14:42:38 +0200141 netfn = ipmi::sensor::netFn;
142 command = ipmi::sensor::getSensorReading;
James Feist6ef20402019-01-07 16:45:08 -0800143 commandData = {deviceAddress};
James Feistd7ae29a2020-06-25 15:42:46 -0700144 readingFormat = ReadingFormat::byte0;
James Feist6ef20402019-01-07 16:45:08 -0800145 }
146 else if (type == IpmbType::PXE1410CVR)
147 {
148 commandAddress = meAddress;
Adrian Ambrożewicz58e02ef2020-08-06 14:42:38 +0200149 netfn = ipmi::me_bridge::netFn;
150 command = ipmi::me_bridge::sendRawPmbus;
151 initCommand = ipmi::me_bridge::sendRawPmbus;
James Feistd7ae29a2020-06-25 15:42:46 -0700152 // pmbus read temp
153 commandData = {0x57, 0x01, 0x00, 0x16, 0x3, deviceAddress, 0x00,
154 0x00, 0x00, 0x00, 0x01, 0x02, 0x8d};
155 // goto page 0
James Feist6ef20402019-01-07 16:45:08 -0800156 initData = {0x57, 0x01, 0x00, 0x14, 0x03, deviceAddress, 0x00,
James Feistd7ae29a2020-06-25 15:42:46 -0700157 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00};
James Feiste4a970d2020-08-19 11:21:58 -0700158 readingFormat = ReadingFormat::elevenBit;
James Feist6ef20402019-01-07 16:45:08 -0800159 }
160 else if (type == IpmbType::IR38363VR)
161 {
162 commandAddress = meAddress;
Adrian Ambrożewicz58e02ef2020-08-06 14:42:38 +0200163 netfn = ipmi::me_bridge::netFn;
164 command = ipmi::me_bridge::sendRawPmbus;
James Feistd7ae29a2020-06-25 15:42:46 -0700165 // pmbus read temp
James Feist6ef20402019-01-07 16:45:08 -0800166 commandData = {0x57, 0x01, 0x00, 0x16, 0x03, deviceAddress, 00,
167 0x00, 0x00, 0x00, 0x01, 0x02, 0x8D};
James Feistd7ae29a2020-06-25 15:42:46 -0700168 readingFormat = ReadingFormat::elevenBitShift;
James Feist6ef20402019-01-07 16:45:08 -0800169 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700170 else if (type == IpmbType::ADM1278HSC)
171 {
172 commandAddress = meAddress;
173 switch (subType)
174 {
175 case IpmbSubType::temp:
176 case IpmbSubType::curr:
177 uint8_t snsNum;
178 if (subType == IpmbSubType::temp)
179 snsNum = 0x8d;
180 else
181 snsNum = 0x8c;
Adrian Ambrożewicz58e02ef2020-08-06 14:42:38 +0200182 netfn = ipmi::me_bridge::netFn;
183 command = ipmi::me_bridge::sendRawPmbus;
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700184 commandData = {0x57, 0x01, 0x00, 0x86, deviceAddress,
185 0x00, 0x00, 0x01, 0x02, snsNum};
James Feistd7ae29a2020-06-25 15:42:46 -0700186 readingFormat = ReadingFormat::elevenBit;
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700187 break;
188 case IpmbSubType::power:
189 case IpmbSubType::volt:
Adrian Ambrożewicz58e02ef2020-08-06 14:42:38 +0200190 netfn = ipmi::sensor::netFn;
191 command = ipmi::sensor::getSensorReading;
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700192 commandData = {deviceAddress};
James Feistd7ae29a2020-06-25 15:42:46 -0700193 readingFormat = ReadingFormat::byte0;
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700194 break;
195 default:
196 throw std::runtime_error("Invalid sensor type");
197 }
198 }
James Feist6ef20402019-01-07 16:45:08 -0800199 else if (type == IpmbType::mpsVR)
200 {
201 commandAddress = meAddress;
Adrian Ambrożewicz58e02ef2020-08-06 14:42:38 +0200202 netfn = ipmi::me_bridge::netFn;
203 command = ipmi::me_bridge::sendRawPmbus;
204 initCommand = ipmi::me_bridge::sendRawPmbus;
James Feistd7ae29a2020-06-25 15:42:46 -0700205 // pmbus read temp
James Feist6ef20402019-01-07 16:45:08 -0800206 commandData = {0x57, 0x01, 0x00, 0x16, 0x3, deviceAddress, 0x00,
207 0x00, 0x00, 0x00, 0x01, 0x02, 0x8d};
James Feistd7ae29a2020-06-25 15:42:46 -0700208 // goto page 0
James Feist6ef20402019-01-07 16:45:08 -0800209 initData = {0x57, 0x01, 0x00, 0x14, 0x03, deviceAddress, 0x00,
210 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00};
James Feistd7ae29a2020-06-25 15:42:46 -0700211 readingFormat = ReadingFormat::byte3;
James Feist6ef20402019-01-07 16:45:08 -0800212 }
213 else
214 {
215 throw std::runtime_error("Invalid sensor type");
216 }
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200217
218 if (subType == IpmbSubType::util)
219 {
220 // Utilization need to be scaled to percent
221 maxValue = 100;
222 minValue = 0;
223 }
James Feist6ef20402019-01-07 16:45:08 -0800224}
225
226void IpmbSensor::checkThresholds(void)
227{
James Feist6ef20402019-01-07 16:45:08 -0800228 thresholds::checkThresholds(this);
229}
230
James Feist961bf092020-07-01 16:38:12 -0700231bool IpmbSensor::processReading(const std::vector<uint8_t>& data, double& resp)
James Feistd7ae29a2020-06-25 15:42:46 -0700232{
233
234 switch (readingFormat)
235 {
236 case (ReadingFormat::byte0):
James Feiste4a970d2020-08-19 11:21:58 -0700237 {
Adrian Ambrożewicz58e02ef2020-08-06 14:42:38 +0200238 if (command == ipmi::sensor::getSensorReading &&
239 !ipmi::sensor::isValid(data))
James Feistcf4238e2020-07-28 16:40:03 -0700240 {
241 return false;
242 }
James Feist961bf092020-07-01 16:38:12 -0700243 resp = data[0];
Zhikui Ren2456dde2020-09-11 10:33:30 -0700244
James Feist961bf092020-07-01 16:38:12 -0700245 return true;
James Feiste4a970d2020-08-19 11:21:58 -0700246 }
James Feistd7ae29a2020-06-25 15:42:46 -0700247 case (ReadingFormat::byte3):
James Feiste4a970d2020-08-19 11:21:58 -0700248 {
James Feistd7ae29a2020-06-25 15:42:46 -0700249 if (data.size() < 4)
250 {
James Feist961bf092020-07-01 16:38:12 -0700251 if (!errCount)
252 {
253 std::cerr << "Invalid data length returned for " << name
254 << "\n";
255 }
256 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700257 }
James Feist961bf092020-07-01 16:38:12 -0700258 resp = data[3];
259 return true;
James Feiste4a970d2020-08-19 11:21:58 -0700260 }
James Feistd7ae29a2020-06-25 15:42:46 -0700261 case (ReadingFormat::elevenBit):
James Feiste4a970d2020-08-19 11:21:58 -0700262 {
James Feistd7ae29a2020-06-25 15:42:46 -0700263 if (data.size() < 5)
264 {
James Feist961bf092020-07-01 16:38:12 -0700265 if (!errCount)
266 {
267 std::cerr << "Invalid data length returned for " << name
268 << "\n";
269 }
270 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700271 }
272
James Feiste4a970d2020-08-19 11:21:58 -0700273 int16_t value = ((data[4] << 8) | data[3]);
274 constexpr const size_t shift = 16 - 11; // 11bit into 16bit
275 value <<= shift;
276 value >>= shift;
277 resp = value;
James Feist961bf092020-07-01 16:38:12 -0700278 return true;
James Feiste4a970d2020-08-19 11:21:58 -0700279 }
James Feistd7ae29a2020-06-25 15:42:46 -0700280 case (ReadingFormat::elevenBitShift):
James Feiste4a970d2020-08-19 11:21:58 -0700281 {
James Feistd7ae29a2020-06-25 15:42:46 -0700282 if (data.size() < 5)
283 {
James Feist961bf092020-07-01 16:38:12 -0700284 if (!errCount)
285 {
286 std::cerr << "Invalid data length returned for " << name
287 << "\n";
288 }
289 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700290 }
291
James Feist961bf092020-07-01 16:38:12 -0700292 resp = ((data[4] << 8) | data[3]) >> 3;
293 return true;
James Feiste4a970d2020-08-19 11:21:58 -0700294 }
James Feistd7ae29a2020-06-25 15:42:46 -0700295 default:
296 throw std::runtime_error("Invalid reading type");
297 }
298}
299
James Feist6ef20402019-01-07 16:45:08 -0800300void IpmbSensor::read(void)
301{
302 static constexpr size_t pollTime = 1; // in seconds
303
304 waitTimer.expires_from_now(boost::posix_time::seconds(pollTime));
305 waitTimer.async_wait([this](const boost::system::error_code& ec) {
306 if (ec == boost::asio::error::operation_aborted)
307 {
308 return; // we're being canceled
309 }
Adrian Ambrożewicz623723b2020-07-29 12:53:54 +0200310 if (!readingStateGood())
James Feist6ef20402019-01-07 16:45:08 -0800311 {
Adrian Ambrożewicz623723b2020-07-29 12:53:54 +0200312 updateValue(std::numeric_limits<double>::quiet_NaN());
James Feist6ef20402019-01-07 16:45:08 -0800313 read();
314 return;
315 }
316 dbusConnection->async_method_call(
317 [this](boost::system::error_code ec,
318 const IpmbMethodType& response) {
319 const int& status = std::get<0>(response);
320 if (ec || status)
321 {
James Feist961bf092020-07-01 16:38:12 -0700322 incrementError();
James Feist6ef20402019-01-07 16:45:08 -0800323 read();
324 return;
325 }
326 const std::vector<uint8_t>& data = std::get<5>(response);
327 if constexpr (debug)
328 {
329 std::cout << name << ": ";
330 for (size_t d : data)
331 {
332 std::cout << d << " ";
333 }
334 std::cout << "\n";
335 }
James Feistd7ae29a2020-06-25 15:42:46 -0700336 if (data.empty())
James Feist6ef20402019-01-07 16:45:08 -0800337 {
James Feist961bf092020-07-01 16:38:12 -0700338 incrementError();
James Feistd7ae29a2020-06-25 15:42:46 -0700339 read();
340 return;
James Feist6ef20402019-01-07 16:45:08 -0800341 }
James Feist961bf092020-07-01 16:38:12 -0700342
343 double value = 0;
344
345 if (!processReading(data, value))
346 {
347 incrementError();
348 read();
349 return;
350 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700351
352 /* Adjust value as per scale and offset */
353 value = (value * scaleVal) + offsetVal;
James Feist6ef20402019-01-07 16:45:08 -0800354 updateValue(value);
355 read();
356 },
357 "xyz.openbmc_project.Ipmi.Channel.Ipmb",
358 "/xyz/openbmc_project/Ipmi/Channel/Ipmb", "org.openbmc.Ipmb",
359 "sendRequest", commandAddress, netfn, lun, command, commandData);
360 });
361}
362void createSensors(
363 boost::asio::io_service& io, sdbusplus::asio::object_server& objectServer,
364 boost::container::flat_map<std::string, std::unique_ptr<IpmbSensor>>&
365 sensors,
366 std::shared_ptr<sdbusplus::asio::connection>& dbusConnection)
367{
368 if (!dbusConnection)
369 {
370 std::cerr << "Connection not created\n";
371 return;
372 }
373 dbusConnection->async_method_call(
374 [&](boost::system::error_code ec, const ManagedObjectType& resp) {
375 if (ec)
376 {
377 std::cerr << "Error contacting entity manager\n";
378 return;
379 }
380 for (const auto& pathPair : resp)
381 {
382 for (const auto& entry : pathPair.second)
383 {
384 if (entry.first != configInterface)
385 {
386 continue;
387 }
388 std::string name =
389 loadVariant<std::string>(entry.second, "Name");
390
391 std::vector<thresholds::Threshold> sensorThresholds;
392 if (!parseThresholdsFromConfig(pathPair.second,
393 sensorThresholds))
394 {
395 std::cerr << "error populating thresholds for " << name
396 << "\n";
397 }
398 uint8_t deviceAddress =
399 loadVariant<uint8_t>(entry.second, "Address");
400
401 std::string sensorClass =
402 loadVariant<std::string>(entry.second, "Class");
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700403
404 /* Default sensor type is "temperature" */
405 std::string sensorTypeName = "temperature";
406 auto findType = entry.second.find("SensorType");
407 if (findType != entry.second.end())
408 {
409 sensorTypeName = std::visit(VariantToStringVisitor(),
410 findType->second);
411 }
412
James Feist6ef20402019-01-07 16:45:08 -0800413 auto& sensor = sensors[name];
414 sensor = std::make_unique<IpmbSensor>(
415 dbusConnection, io, name, pathPair.first, objectServer,
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700416 std::move(sensorThresholds), deviceAddress,
417 sensorTypeName);
418
419 /* Initialize scale and offset value */
420 sensor->scaleVal = 1;
421 sensor->offsetVal = 0;
422
423 auto findScaleVal = entry.second.find("ScaleValue");
424 if (findScaleVal != entry.second.end())
425 {
426 sensor->scaleVal = std::visit(VariantToDoubleVisitor(),
427 findScaleVal->second);
428 }
429
430 auto findOffsetVal = entry.second.find("OffsetValue");
431 if (findOffsetVal != entry.second.end())
432 {
433 sensor->offsetVal = std::visit(VariantToDoubleVisitor(),
434 findOffsetVal->second);
435 }
James Feist6ef20402019-01-07 16:45:08 -0800436
James Feistfc94b212019-02-06 16:14:51 -0800437 auto findPowerState = entry.second.find("PowerState");
438
439 if (findPowerState != entry.second.end())
440 {
441 std::string powerState = std::visit(
442 VariantToStringVisitor(), findPowerState->second);
443
444 setReadState(powerState, sensor->readState);
445 }
446
James Feist6ef20402019-01-07 16:45:08 -0800447 if (sensorClass == "PxeBridgeTemp")
448 {
449 sensor->type = IpmbType::PXE1410CVR;
450 }
451 else if (sensorClass == "IRBridgeTemp")
452 {
453 sensor->type = IpmbType::IR38363VR;
454 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700455 else if (sensorClass == "HSCBridge")
456 {
457 sensor->type = IpmbType::ADM1278HSC;
458 }
James Feist6ef20402019-01-07 16:45:08 -0800459 else if (sensorClass == "MpsBridgeTemp")
460 {
461 sensor->type = IpmbType::mpsVR;
462 }
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200463 else if (sensorClass == "METemp" ||
464 sensorClass == "MESensor")
James Feist6ef20402019-01-07 16:45:08 -0800465 {
466 sensor->type = IpmbType::meSensor;
467 }
468 else
469 {
470 std::cerr << "Invalid class " << sensorClass << "\n";
471 continue;
472 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700473
474 if (sensorTypeName == "voltage")
475 {
476 sensor->subType = IpmbSubType::volt;
477 }
478 else if (sensorTypeName == "power")
479 {
480 sensor->subType = IpmbSubType::power;
481 }
482 else if (sensorTypeName == "current")
483 {
484 sensor->subType = IpmbSubType::curr;
485 }
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200486 else if (sensorTypeName == "utilization")
487 {
488 sensor->subType = IpmbSubType::util;
489 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700490 else
491 {
492 sensor->subType = IpmbSubType::temp;
493 }
James Feist6ef20402019-01-07 16:45:08 -0800494 sensor->init();
495 }
496 }
497 },
498 entityManagerName, "/", "org.freedesktop.DBus.ObjectManager",
499 "GetManagedObjects");
500}
501
James Feistf7e2c5d2019-02-13 17:27:51 -0800502void reinitSensors(sdbusplus::message::message& message)
503{
James Feist0d4f2bd2019-03-05 13:15:40 -0800504 constexpr const size_t reinitWaitSeconds = 2;
James Feistf7e2c5d2019-02-13 17:27:51 -0800505 std::string objectName;
James Feist52497fd2019-06-07 13:01:33 -0700506 boost::container::flat_map<std::string, std::variant<std::string>> values;
James Feistf7e2c5d2019-02-13 17:27:51 -0800507 message.read(objectName, values);
James Feist0d4f2bd2019-03-05 13:15:40 -0800508
James Feist52497fd2019-06-07 13:01:33 -0700509 auto findStatus = values.find(power::property);
510 if (findStatus != values.end())
James Feistf7e2c5d2019-02-13 17:27:51 -0800511 {
James Feist52497fd2019-06-07 13:01:33 -0700512 bool powerStatus = boost::ends_with(
513 std::get<std::string>(findStatus->second), "Running");
James Feistf7e2c5d2019-02-13 17:27:51 -0800514 if (powerStatus)
515 {
James Feist0d4f2bd2019-03-05 13:15:40 -0800516 if (!initCmdTimer)
James Feistf7e2c5d2019-02-13 17:27:51 -0800517 {
James Feist0d4f2bd2019-03-05 13:15:40 -0800518 // this should be impossible
519 return;
James Feistf7e2c5d2019-02-13 17:27:51 -0800520 }
James Feist0d4f2bd2019-03-05 13:15:40 -0800521 // we seem to send this command too fast sometimes, wait before
522 // sending
523 initCmdTimer->expires_from_now(
524 boost::posix_time::seconds(reinitWaitSeconds));
525
526 initCmdTimer->async_wait([](const boost::system::error_code ec) {
527 if (ec == boost::asio::error::operation_aborted)
528 {
529 return; // we're being canceled
530 }
531
532 for (const auto& sensor : sensors)
533 {
534 if (sensor.second)
535 {
536 sensor.second->runInitCmd();
537 }
538 }
539 });
James Feistf7e2c5d2019-02-13 17:27:51 -0800540 }
541 }
542}
543
James Feistb6c0b912019-07-09 12:21:44 -0700544int main()
James Feist6ef20402019-01-07 16:45:08 -0800545{
546
547 boost::asio::io_service io;
548 auto systemBus = std::make_shared<sdbusplus::asio::connection>(io);
549 systemBus->request_name("xyz.openbmc_project.IpmbSensor");
550 sdbusplus::asio::object_server objectServer(systemBus);
James Feist6ef20402019-01-07 16:45:08 -0800551
James Feist0d4f2bd2019-03-05 13:15:40 -0800552 initCmdTimer = std::make_unique<boost::asio::deadline_timer>(io);
553
James Feist6ef20402019-01-07 16:45:08 -0800554 io.post([&]() { createSensors(io, objectServer, sensors, systemBus); });
555
556 boost::asio::deadline_timer configTimer(io);
557
558 std::function<void(sdbusplus::message::message&)> eventHandler =
James Feistb6c0b912019-07-09 12:21:44 -0700559 [&](sdbusplus::message::message&) {
James Feist6ef20402019-01-07 16:45:08 -0800560 configTimer.expires_from_now(boost::posix_time::seconds(1));
561 // create a timer because normally multiple properties change
562 configTimer.async_wait([&](const boost::system::error_code& ec) {
563 if (ec == boost::asio::error::operation_aborted)
564 {
565 return; // we're being canceled
566 }
567 createSensors(io, objectServer, sensors, systemBus);
568 if (sensors.empty())
569 {
570 std::cout << "Configuration not detected\n";
571 }
572 });
573 };
574
James Feistf7e2c5d2019-02-13 17:27:51 -0800575 sdbusplus::bus::match::match configMatch(
James Feist6ef20402019-01-07 16:45:08 -0800576 static_cast<sdbusplus::bus::bus&>(*systemBus),
577 "type='signal',member='PropertiesChanged',path_namespace='" +
578 std::string(inventoryPath) + "',arg0namespace='" + configInterface +
579 "'",
580 eventHandler);
581
James Feistf7e2c5d2019-02-13 17:27:51 -0800582 sdbusplus::bus::match::match powerChangeMatch(
583 static_cast<sdbusplus::bus::bus&>(*systemBus),
James Feist52497fd2019-06-07 13:01:33 -0700584 "type='signal',interface='" + std::string(properties::interface) +
585 "',path='" + std::string(power::path) + "',arg0='" +
586 std::string(power::interface) + "'",
James Feistf7e2c5d2019-02-13 17:27:51 -0800587 reinitSensors);
588
James Feist6ef20402019-01-07 16:45:08 -0800589 io.run();
590}