Monitor - improved use of Inventory for Sensor func. state
When Monitor starts, Tach Sensors attempted to read their functional
state from inventory first. This fails on a genesis state and generates
a D-Bus exception what was previously indistinguishable from an
Inventory-service-not-running state. No functional record entries
existed for any sensors.
This change catches Inventory-offline exceptions separately from
invalid-records, so that the Inventory can be correctly established
during the genesis state.
Signed-off-by: Mike Capps <mikepcapps@gmail.com>
Change-Id: I0c4a3f0453a05859d640fa299471d33fae3ade10
diff --git a/monitor/tach_sensor.cpp b/monitor/tach_sensor.cpp
index 91aecdd..9bf9932 100644
--- a/monitor/tach_sensor.cpp
+++ b/monitor/tach_sensor.cpp
@@ -84,31 +84,31 @@
// Query functional state from inventory
// TODO - phosphor-fan-presence/issues/25
+ _functional = true;
+
try
{
- auto service =
- util::SDBusPlus::getService(_bus, util::INVENTORY_PATH + _invName,
- util::OPERATIONAL_STATUS_INTF);
+ // see if any object paths in the inventory have the
+ // OperationalStatus interface.
+ auto subtree = util::SDBusPlus::getSubTreeRaw(
+ _bus, util::INVENTORY_PATH, util::OPERATIONAL_STATUS_INTF, 0);
- if (!service.empty())
+ // if the tach sensor's entry already exists, we for sure can
+ // read its functional state from the inventory
+ if (subtree.end() != subtree.find(util::INVENTORY_PATH + _invName))
{
_functional = util::SDBusPlus::getProperty<bool>(
- service, util::INVENTORY_PATH + _invName,
+ _bus, util::INVENTORY_PATH + _invName,
util::OPERATIONAL_STATUS_INTF, util::FUNCTIONAL_PROPERTY);
}
- else
- {
- // default to functional when service not up. Error handling done
- // later
- _functional = true;
- }
}
catch (util::DBusError& e)
{
log<level::DEBUG>(e.what());
- _functional = true;
}
+ updateInventory(_functional);
+
if (!_functional && MethodMode::count == _method)
{
// force continual nonfunctional state