blob: d8b0d4fa52055a8a1cdca01be06c9c12f4be1755 [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 Feist961bf092020-07-01 16:38:12 -0700237 resp = data[0];
238 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700239 case (ReadingFormat::byte3):
240 if (data.size() < 4)
241 {
James Feist961bf092020-07-01 16:38:12 -0700242 if (!errCount)
243 {
244 std::cerr << "Invalid data length returned for " << name
245 << "\n";
246 }
247 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700248 }
James Feist961bf092020-07-01 16:38:12 -0700249 resp = data[3];
250 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700251 case (ReadingFormat::elevenBit):
252 if (data.size() < 5)
253 {
James Feist961bf092020-07-01 16:38:12 -0700254 if (!errCount)
255 {
256 std::cerr << "Invalid data length returned for " << name
257 << "\n";
258 }
259 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700260 }
261
James Feist961bf092020-07-01 16:38:12 -0700262 resp = ((data[4] << 8) | data[3]);
263 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700264 case (ReadingFormat::elevenBitShift):
265 if (data.size() < 5)
266 {
James Feist961bf092020-07-01 16:38:12 -0700267 if (!errCount)
268 {
269 std::cerr << "Invalid data length returned for " << name
270 << "\n";
271 }
272 return false;
James Feistd7ae29a2020-06-25 15:42:46 -0700273 }
274
James Feist961bf092020-07-01 16:38:12 -0700275 resp = ((data[4] << 8) | data[3]) >> 3;
276 return true;
James Feistd7ae29a2020-06-25 15:42:46 -0700277 default:
278 throw std::runtime_error("Invalid reading type");
279 }
280}
281
James Feist6ef20402019-01-07 16:45:08 -0800282void IpmbSensor::read(void)
283{
284 static constexpr size_t pollTime = 1; // in seconds
285
286 waitTimer.expires_from_now(boost::posix_time::seconds(pollTime));
287 waitTimer.async_wait([this](const boost::system::error_code& ec) {
288 if (ec == boost::asio::error::operation_aborted)
289 {
290 return; // we're being canceled
291 }
James Feist52497fd2019-06-07 13:01:33 -0700292 if (!isPowerOn() && readState != PowerState::always)
James Feist6ef20402019-01-07 16:45:08 -0800293 {
James Feist6ef20402019-01-07 16:45:08 -0800294 read();
295 return;
296 }
297 dbusConnection->async_method_call(
298 [this](boost::system::error_code ec,
299 const IpmbMethodType& response) {
300 const int& status = std::get<0>(response);
301 if (ec || status)
302 {
James Feist961bf092020-07-01 16:38:12 -0700303 incrementError();
James Feist6ef20402019-01-07 16:45:08 -0800304 read();
305 return;
306 }
307 const std::vector<uint8_t>& data = std::get<5>(response);
308 if constexpr (debug)
309 {
310 std::cout << name << ": ";
311 for (size_t d : data)
312 {
313 std::cout << d << " ";
314 }
315 std::cout << "\n";
316 }
James Feistd7ae29a2020-06-25 15:42:46 -0700317 if (data.empty())
James Feist6ef20402019-01-07 16:45:08 -0800318 {
James Feist961bf092020-07-01 16:38:12 -0700319 incrementError();
James Feistd7ae29a2020-06-25 15:42:46 -0700320 read();
321 return;
James Feist6ef20402019-01-07 16:45:08 -0800322 }
James Feist961bf092020-07-01 16:38:12 -0700323
324 double value = 0;
325
326 if (!processReading(data, value))
327 {
328 incrementError();
329 read();
330 return;
331 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700332
333 /* Adjust value as per scale and offset */
334 value = (value * scaleVal) + offsetVal;
James Feist6ef20402019-01-07 16:45:08 -0800335 updateValue(value);
336 read();
337 },
338 "xyz.openbmc_project.Ipmi.Channel.Ipmb",
339 "/xyz/openbmc_project/Ipmi/Channel/Ipmb", "org.openbmc.Ipmb",
340 "sendRequest", commandAddress, netfn, lun, command, commandData);
341 });
342}
343void createSensors(
344 boost::asio::io_service& io, sdbusplus::asio::object_server& objectServer,
345 boost::container::flat_map<std::string, std::unique_ptr<IpmbSensor>>&
346 sensors,
347 std::shared_ptr<sdbusplus::asio::connection>& dbusConnection)
348{
349 if (!dbusConnection)
350 {
351 std::cerr << "Connection not created\n";
352 return;
353 }
354 dbusConnection->async_method_call(
355 [&](boost::system::error_code ec, const ManagedObjectType& resp) {
356 if (ec)
357 {
358 std::cerr << "Error contacting entity manager\n";
359 return;
360 }
361 for (const auto& pathPair : resp)
362 {
363 for (const auto& entry : pathPair.second)
364 {
365 if (entry.first != configInterface)
366 {
367 continue;
368 }
369 std::string name =
370 loadVariant<std::string>(entry.second, "Name");
371
372 std::vector<thresholds::Threshold> sensorThresholds;
373 if (!parseThresholdsFromConfig(pathPair.second,
374 sensorThresholds))
375 {
376 std::cerr << "error populating thresholds for " << name
377 << "\n";
378 }
379 uint8_t deviceAddress =
380 loadVariant<uint8_t>(entry.second, "Address");
381
382 std::string sensorClass =
383 loadVariant<std::string>(entry.second, "Class");
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700384
385 /* Default sensor type is "temperature" */
386 std::string sensorTypeName = "temperature";
387 auto findType = entry.second.find("SensorType");
388 if (findType != entry.second.end())
389 {
390 sensorTypeName = std::visit(VariantToStringVisitor(),
391 findType->second);
392 }
393
James Feist6ef20402019-01-07 16:45:08 -0800394 auto& sensor = sensors[name];
395 sensor = std::make_unique<IpmbSensor>(
396 dbusConnection, io, name, pathPair.first, objectServer,
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700397 std::move(sensorThresholds), deviceAddress,
398 sensorTypeName);
399
400 /* Initialize scale and offset value */
401 sensor->scaleVal = 1;
402 sensor->offsetVal = 0;
403
404 auto findScaleVal = entry.second.find("ScaleValue");
405 if (findScaleVal != entry.second.end())
406 {
407 sensor->scaleVal = std::visit(VariantToDoubleVisitor(),
408 findScaleVal->second);
409 }
410
411 auto findOffsetVal = entry.second.find("OffsetValue");
412 if (findOffsetVal != entry.second.end())
413 {
414 sensor->offsetVal = std::visit(VariantToDoubleVisitor(),
415 findOffsetVal->second);
416 }
James Feist6ef20402019-01-07 16:45:08 -0800417
James Feistfc94b212019-02-06 16:14:51 -0800418 auto findPowerState = entry.second.find("PowerState");
419
420 if (findPowerState != entry.second.end())
421 {
422 std::string powerState = std::visit(
423 VariantToStringVisitor(), findPowerState->second);
424
425 setReadState(powerState, sensor->readState);
426 }
427
James Feist6ef20402019-01-07 16:45:08 -0800428 if (sensorClass == "PxeBridgeTemp")
429 {
430 sensor->type = IpmbType::PXE1410CVR;
431 }
432 else if (sensorClass == "IRBridgeTemp")
433 {
434 sensor->type = IpmbType::IR38363VR;
435 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700436 else if (sensorClass == "HSCBridge")
437 {
438 sensor->type = IpmbType::ADM1278HSC;
439 }
James Feist6ef20402019-01-07 16:45:08 -0800440 else if (sensorClass == "MpsBridgeTemp")
441 {
442 sensor->type = IpmbType::mpsVR;
443 }
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200444 else if (sensorClass == "METemp" ||
445 sensorClass == "MESensor")
James Feist6ef20402019-01-07 16:45:08 -0800446 {
447 sensor->type = IpmbType::meSensor;
448 }
449 else
450 {
451 std::cerr << "Invalid class " << sensorClass << "\n";
452 continue;
453 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700454
455 if (sensorTypeName == "voltage")
456 {
457 sensor->subType = IpmbSubType::volt;
458 }
459 else if (sensorTypeName == "power")
460 {
461 sensor->subType = IpmbSubType::power;
462 }
463 else if (sensorTypeName == "current")
464 {
465 sensor->subType = IpmbSubType::curr;
466 }
Adrian Ambrożewicz45e92772020-06-04 13:59:55 +0200467 else if (sensorTypeName == "utilization")
468 {
469 sensor->subType = IpmbSubType::util;
470 }
Vijay Khemka682a5cb2019-07-18 17:34:03 -0700471 else
472 {
473 sensor->subType = IpmbSubType::temp;
474 }
James Feist6ef20402019-01-07 16:45:08 -0800475 sensor->init();
476 }
477 }
478 },
479 entityManagerName, "/", "org.freedesktop.DBus.ObjectManager",
480 "GetManagedObjects");
481}
482
James Feistf7e2c5d2019-02-13 17:27:51 -0800483void reinitSensors(sdbusplus::message::message& message)
484{
James Feist0d4f2bd2019-03-05 13:15:40 -0800485 constexpr const size_t reinitWaitSeconds = 2;
James Feistf7e2c5d2019-02-13 17:27:51 -0800486 std::string objectName;
James Feist52497fd2019-06-07 13:01:33 -0700487 boost::container::flat_map<std::string, std::variant<std::string>> values;
James Feistf7e2c5d2019-02-13 17:27:51 -0800488 message.read(objectName, values);
James Feist0d4f2bd2019-03-05 13:15:40 -0800489
James Feist52497fd2019-06-07 13:01:33 -0700490 auto findStatus = values.find(power::property);
491 if (findStatus != values.end())
James Feistf7e2c5d2019-02-13 17:27:51 -0800492 {
James Feist52497fd2019-06-07 13:01:33 -0700493 bool powerStatus = boost::ends_with(
494 std::get<std::string>(findStatus->second), "Running");
James Feistf7e2c5d2019-02-13 17:27:51 -0800495 if (powerStatus)
496 {
James Feist0d4f2bd2019-03-05 13:15:40 -0800497 if (!initCmdTimer)
James Feistf7e2c5d2019-02-13 17:27:51 -0800498 {
James Feist0d4f2bd2019-03-05 13:15:40 -0800499 // this should be impossible
500 return;
James Feistf7e2c5d2019-02-13 17:27:51 -0800501 }
James Feist0d4f2bd2019-03-05 13:15:40 -0800502 // we seem to send this command too fast sometimes, wait before
503 // sending
504 initCmdTimer->expires_from_now(
505 boost::posix_time::seconds(reinitWaitSeconds));
506
507 initCmdTimer->async_wait([](const boost::system::error_code ec) {
508 if (ec == boost::asio::error::operation_aborted)
509 {
510 return; // we're being canceled
511 }
512
513 for (const auto& sensor : sensors)
514 {
515 if (sensor.second)
516 {
517 sensor.second->runInitCmd();
518 }
519 }
520 });
James Feistf7e2c5d2019-02-13 17:27:51 -0800521 }
522 }
523}
524
James Feistb6c0b912019-07-09 12:21:44 -0700525int main()
James Feist6ef20402019-01-07 16:45:08 -0800526{
527
528 boost::asio::io_service io;
529 auto systemBus = std::make_shared<sdbusplus::asio::connection>(io);
530 systemBus->request_name("xyz.openbmc_project.IpmbSensor");
531 sdbusplus::asio::object_server objectServer(systemBus);
James Feist6ef20402019-01-07 16:45:08 -0800532
James Feist0d4f2bd2019-03-05 13:15:40 -0800533 initCmdTimer = std::make_unique<boost::asio::deadline_timer>(io);
534
James Feist6ef20402019-01-07 16:45:08 -0800535 io.post([&]() { createSensors(io, objectServer, sensors, systemBus); });
536
537 boost::asio::deadline_timer configTimer(io);
538
539 std::function<void(sdbusplus::message::message&)> eventHandler =
James Feistb6c0b912019-07-09 12:21:44 -0700540 [&](sdbusplus::message::message&) {
James Feist6ef20402019-01-07 16:45:08 -0800541 configTimer.expires_from_now(boost::posix_time::seconds(1));
542 // create a timer because normally multiple properties change
543 configTimer.async_wait([&](const boost::system::error_code& ec) {
544 if (ec == boost::asio::error::operation_aborted)
545 {
546 return; // we're being canceled
547 }
548 createSensors(io, objectServer, sensors, systemBus);
549 if (sensors.empty())
550 {
551 std::cout << "Configuration not detected\n";
552 }
553 });
554 };
555
James Feistf7e2c5d2019-02-13 17:27:51 -0800556 sdbusplus::bus::match::match configMatch(
James Feist6ef20402019-01-07 16:45:08 -0800557 static_cast<sdbusplus::bus::bus&>(*systemBus),
558 "type='signal',member='PropertiesChanged',path_namespace='" +
559 std::string(inventoryPath) + "',arg0namespace='" + configInterface +
560 "'",
561 eventHandler);
562
James Feistf7e2c5d2019-02-13 17:27:51 -0800563 sdbusplus::bus::match::match powerChangeMatch(
564 static_cast<sdbusplus::bus::bus&>(*systemBus),
James Feist52497fd2019-06-07 13:01:33 -0700565 "type='signal',interface='" + std::string(properties::interface) +
566 "',path='" + std::string(power::path) + "',arg0='" +
567 std::string(power::interface) + "'",
James Feistf7e2c5d2019-02-13 17:27:51 -0800568 reinitSensors);
569
James Feist6ef20402019-01-07 16:45:08 -0800570 io.run();
571}