blob: d821982c3f0a20a41106d5135ad2df6546afecf3 [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;
141 netfn = 0x4; // sensor
142 command = 0x2d; // get sensor reading
143 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;
149 netfn = 0x2e; // me bridge
150 command = 0xd9; // send raw pmbus
151 initCommand = 0xd9; // send raw pmbus
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};
158 readingFormat = ReadingFormat::byte3;
James Feist6ef20402019-01-07 16:45:08 -0800159 }
160 else if (type == IpmbType::IR38363VR)
161 {
162 commandAddress = meAddress;
163 netfn = 0x2e; // me bridge
164 command = 0xd9; // send raw pmbus
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;
182 netfn = 0x2e; // me bridge
183 command = 0xd9; // send raw pmbus
184 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:
190 netfn = 0x4; // sensor
191 command = 0x2d; // get sensor reading
192 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;
202 netfn = 0x2e; // me bridge
203 command = 0xd9; // send raw pmbus
204 initCommand = 0xd9; // send raw pmbus
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 Feistcf4238e2020-07-28 16:40:03 -0700237 // from node manager app-note, response of 0 means scanning disabled
238 // for get sensor reading command
239 if (data[0] == 0)
240 {
241 return false;
242 }
James Feist961bf092020-07-01 16:38:12 -0700243 resp = data[0];
James Feistcf4238e2020-07-28 16:40:03 -0700244
James Feist961bf092020-07-01 16:38:12 -0700245 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700246 case (ReadingFormat::byte3):
247 if (data.size() < 4)
248 {
James Feist961bf092020-07-01 16:38:12 -0700249 if (!errCount)
250 {
251 std::cerr << "Invalid data length returned for " << name
252 << "\n";
253 }
254 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700255 }
James Feist961bf092020-07-01 16:38:12 -0700256 resp = data[3];
257 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700258 case (ReadingFormat::elevenBit):
259 if (data.size() < 5)
260 {
James Feist961bf092020-07-01 16:38:12 -0700261 if (!errCount)
262 {
263 std::cerr << "Invalid data length returned for " << name
264 << "\n";
265 }
266 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700267 }
268
James Feist961bf092020-07-01 16:38:12 -0700269 resp = ((data[4] << 8) | data[3]);
270 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700271 case (ReadingFormat::elevenBitShift):
272 if (data.size() < 5)
273 {
James Feist961bf092020-07-01 16:38:12 -0700274 if (!errCount)
275 {
276 std::cerr << "Invalid data length returned for " << name
277 << "\n";
278 }
279 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700280 }
281
James Feist961bf092020-07-01 16:38:12 -0700282 resp = ((data[4] << 8) | data[3]) >> 3;
283 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700284 default:
285 throw std::runtime_error("Invalid reading type");
286 }
287}
288
James Feist6ef20402019-01-07 16:45:08 -0800289void IpmbSensor::read(void)
290{
291 static constexpr size_t pollTime = 1; // in seconds
292
293 waitTimer.expires_from_now(boost::posix_time::seconds(pollTime));
294 waitTimer.async_wait([this](const boost::system::error_code& ec) {
295 if (ec == boost::asio::error::operation_aborted)
296 {
297 return; // we're being canceled
298 }
Adrian Ambrożewicz623723b2020-07-29 12:53:54 +0200299 if (!readingStateGood())
James Feist6ef20402019-01-07 16:45:08 -0800300 {
Adrian Ambrożewicz623723b2020-07-29 12:53:54 +0200301 updateValue(std::numeric_limits<double>::quiet_NaN());
James Feist6ef20402019-01-07 16:45:08 -0800302 read();
303 return;
304 }
305 dbusConnection->async_method_call(
306 [this](boost::system::error_code ec,
307 const IpmbMethodType& response) {
308 const int& status = std::get<0>(response);
309 if (ec || status)
310 {
James Feist961bf092020-07-01 16:38:12 -0700311 incrementError();
James Feist6ef20402019-01-07 16:45:08 -0800312 read();
313 return;
314 }
315 const std::vector<uint8_t>& data = std::get<5>(response);
316 if constexpr (debug)
317 {
318 std::cout << name << ": ";
319 for (size_t d : data)
320 {
321 std::cout << d << " ";
322 }
323 std::cout << "\n";
324 }
James Feistd7ae29a2020-06-25 15:42:46 -0700325 if (data.empty())
James Feist6ef20402019-01-07 16:45:08 -0800326 {
James Feist961bf092020-07-01 16:38:12 -0700327 incrementError();
James Feistd7ae29a2020-06-25 15:42:46 -0700328 read();
329 return;
James Feist6ef20402019-01-07 16:45:08 -0800330 }
James Feist961bf092020-07-01 16:38:12 -0700331
332 double value = 0;
333
334 if (!processReading(data, value))
335 {
336 incrementError();
337 read();
338 return;
339 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700340
341 /* Adjust value as per scale and offset */
342 value = (value * scaleVal) + offsetVal;
James Feist6ef20402019-01-07 16:45:08 -0800343 updateValue(value);
344 read();
345 },
346 "xyz.openbmc_project.Ipmi.Channel.Ipmb",
347 "/xyz/openbmc_project/Ipmi/Channel/Ipmb", "org.openbmc.Ipmb",
348 "sendRequest", commandAddress, netfn, lun, command, commandData);
349 });
350}
351void createSensors(
352 boost::asio::io_service& io, sdbusplus::asio::object_server& objectServer,
353 boost::container::flat_map<std::string, std::unique_ptr<IpmbSensor>>&
354 sensors,
355 std::shared_ptr<sdbusplus::asio::connection>& dbusConnection)
356{
357 if (!dbusConnection)
358 {
359 std::cerr << "Connection not created\n";
360 return;
361 }
362 dbusConnection->async_method_call(
363 [&](boost::system::error_code ec, const ManagedObjectType& resp) {
364 if (ec)
365 {
366 std::cerr << "Error contacting entity manager\n";
367 return;
368 }
369 for (const auto& pathPair : resp)
370 {
371 for (const auto& entry : pathPair.second)
372 {
373 if (entry.first != configInterface)
374 {
375 continue;
376 }
377 std::string name =
378 loadVariant<std::string>(entry.second, "Name");
379
380 std::vector<thresholds::Threshold> sensorThresholds;
381 if (!parseThresholdsFromConfig(pathPair.second,
382 sensorThresholds))
383 {
384 std::cerr << "error populating thresholds for " << name
385 << "\n";
386 }
387 uint8_t deviceAddress =
388 loadVariant<uint8_t>(entry.second, "Address");
389
390 std::string sensorClass =
391 loadVariant<std::string>(entry.second, "Class");
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700392
393 /* Default sensor type is "temperature" */
394 std::string sensorTypeName = "temperature";
395 auto findType = entry.second.find("SensorType");
396 if (findType != entry.second.end())
397 {
398 sensorTypeName = std::visit(VariantToStringVisitor(),
399 findType->second);
400 }
401
James Feist6ef20402019-01-07 16:45:08 -0800402 auto& sensor = sensors[name];
403 sensor = std::make_unique<IpmbSensor>(
404 dbusConnection, io, name, pathPair.first, objectServer,
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700405 std::move(sensorThresholds), deviceAddress,
406 sensorTypeName);
407
408 /* Initialize scale and offset value */
409 sensor->scaleVal = 1;
410 sensor->offsetVal = 0;
411
412 auto findScaleVal = entry.second.find("ScaleValue");
413 if (findScaleVal != entry.second.end())
414 {
415 sensor->scaleVal = std::visit(VariantToDoubleVisitor(),
416 findScaleVal->second);
417 }
418
419 auto findOffsetVal = entry.second.find("OffsetValue");
420 if (findOffsetVal != entry.second.end())
421 {
422 sensor->offsetVal = std::visit(VariantToDoubleVisitor(),
423 findOffsetVal->second);
424 }
James Feist6ef20402019-01-07 16:45:08 -0800425
James Feistfc94b212019-02-06 16:14:51 -0800426 auto findPowerState = entry.second.find("PowerState");
427
428 if (findPowerState != entry.second.end())
429 {
430 std::string powerState = std::visit(
431 VariantToStringVisitor(), findPowerState->second);
432
433 setReadState(powerState, sensor->readState);
434 }
435
James Feist6ef20402019-01-07 16:45:08 -0800436 if (sensorClass == "PxeBridgeTemp")
437 {
438 sensor->type = IpmbType::PXE1410CVR;
439 }
440 else if (sensorClass == "IRBridgeTemp")
441 {
442 sensor->type = IpmbType::IR38363VR;
443 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700444 else if (sensorClass == "HSCBridge")
445 {
446 sensor->type = IpmbType::ADM1278HSC;
447 }
James Feist6ef20402019-01-07 16:45:08 -0800448 else if (sensorClass == "MpsBridgeTemp")
449 {
450 sensor->type = IpmbType::mpsVR;
451 }
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200452 else if (sensorClass == "METemp" ||
453 sensorClass == "MESensor")
James Feist6ef20402019-01-07 16:45:08 -0800454 {
455 sensor->type = IpmbType::meSensor;
456 }
457 else
458 {
459 std::cerr << "Invalid class " << sensorClass << "\n";
460 continue;
461 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700462
463 if (sensorTypeName == "voltage")
464 {
465 sensor->subType = IpmbSubType::volt;
466 }
467 else if (sensorTypeName == "power")
468 {
469 sensor->subType = IpmbSubType::power;
470 }
471 else if (sensorTypeName == "current")
472 {
473 sensor->subType = IpmbSubType::curr;
474 }
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200475 else if (sensorTypeName == "utilization")
476 {
477 sensor->subType = IpmbSubType::util;
478 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700479 else
480 {
481 sensor->subType = IpmbSubType::temp;
482 }
James Feist6ef20402019-01-07 16:45:08 -0800483 sensor->init();
484 }
485 }
486 },
487 entityManagerName, "/", "org.freedesktop.DBus.ObjectManager",
488 "GetManagedObjects");
489}
490
James Feistf7e2c5d2019-02-13 17:27:51 -0800491void reinitSensors(sdbusplus::message::message& message)
492{
James Feist0d4f2bd2019-03-05 13:15:40 -0800493 constexpr const size_t reinitWaitSeconds = 2;
James Feistf7e2c5d2019-02-13 17:27:51 -0800494 std::string objectName;
James Feist52497fd2019-06-07 13:01:33 -0700495 boost::container::flat_map<std::string, std::variant<std::string>> values;
James Feistf7e2c5d2019-02-13 17:27:51 -0800496 message.read(objectName, values);
James Feist0d4f2bd2019-03-05 13:15:40 -0800497
James Feist52497fd2019-06-07 13:01:33 -0700498 auto findStatus = values.find(power::property);
499 if (findStatus != values.end())
James Feistf7e2c5d2019-02-13 17:27:51 -0800500 {
James Feist52497fd2019-06-07 13:01:33 -0700501 bool powerStatus = boost::ends_with(
502 std::get<std::string>(findStatus->second), "Running");
James Feistf7e2c5d2019-02-13 17:27:51 -0800503 if (powerStatus)
504 {
James Feist0d4f2bd2019-03-05 13:15:40 -0800505 if (!initCmdTimer)
James Feistf7e2c5d2019-02-13 17:27:51 -0800506 {
James Feist0d4f2bd2019-03-05 13:15:40 -0800507 // this should be impossible
508 return;
James Feistf7e2c5d2019-02-13 17:27:51 -0800509 }
James Feist0d4f2bd2019-03-05 13:15:40 -0800510 // we seem to send this command too fast sometimes, wait before
511 // sending
512 initCmdTimer->expires_from_now(
513 boost::posix_time::seconds(reinitWaitSeconds));
514
515 initCmdTimer->async_wait([](const boost::system::error_code ec) {
516 if (ec == boost::asio::error::operation_aborted)
517 {
518 return; // we're being canceled
519 }
520
521 for (const auto& sensor : sensors)
522 {
523 if (sensor.second)
524 {
525 sensor.second->runInitCmd();
526 }
527 }
528 });
James Feistf7e2c5d2019-02-13 17:27:51 -0800529 }
530 }
531}
532
James Feistb6c0b912019-07-09 12:21:44 -0700533int main()
James Feist6ef20402019-01-07 16:45:08 -0800534{
535
536 boost::asio::io_service io;
537 auto systemBus = std::make_shared<sdbusplus::asio::connection>(io);
538 systemBus->request_name("xyz.openbmc_project.IpmbSensor");
539 sdbusplus::asio::object_server objectServer(systemBus);
James Feist6ef20402019-01-07 16:45:08 -0800540
James Feist0d4f2bd2019-03-05 13:15:40 -0800541 initCmdTimer = std::make_unique<boost::asio::deadline_timer>(io);
542
James Feist6ef20402019-01-07 16:45:08 -0800543 io.post([&]() { createSensors(io, objectServer, sensors, systemBus); });
544
545 boost::asio::deadline_timer configTimer(io);
546
547 std::function<void(sdbusplus::message::message&)> eventHandler =
James Feistb6c0b912019-07-09 12:21:44 -0700548 [&](sdbusplus::message::message&) {
James Feist6ef20402019-01-07 16:45:08 -0800549 configTimer.expires_from_now(boost::posix_time::seconds(1));
550 // create a timer because normally multiple properties change
551 configTimer.async_wait([&](const boost::system::error_code& ec) {
552 if (ec == boost::asio::error::operation_aborted)
553 {
554 return; // we're being canceled
555 }
556 createSensors(io, objectServer, sensors, systemBus);
557 if (sensors.empty())
558 {
559 std::cout << "Configuration not detected\n";
560 }
561 });
562 };
563
James Feistf7e2c5d2019-02-13 17:27:51 -0800564 sdbusplus::bus::match::match configMatch(
James Feist6ef20402019-01-07 16:45:08 -0800565 static_cast<sdbusplus::bus::bus&>(*systemBus),
566 "type='signal',member='PropertiesChanged',path_namespace='" +
567 std::string(inventoryPath) + "',arg0namespace='" + configInterface +
568 "'",
569 eventHandler);
570
James Feistf7e2c5d2019-02-13 17:27:51 -0800571 sdbusplus::bus::match::match powerChangeMatch(
572 static_cast<sdbusplus::bus::bus&>(*systemBus),
James Feist52497fd2019-06-07 13:01:33 -0700573 "type='signal',interface='" + std::string(properties::interface) +
574 "',path='" + std::string(power::path) + "',arg0='" +
575 std::string(power::interface) + "'",
James Feistf7e2c5d2019-02-13 17:27:51 -0800576 reinitSensors);
577
James Feist6ef20402019-01-07 16:45:08 -0800578 io.run();
579}