blob: 61d8aec3f2472225e5509a3ff6097e1e9d21983f [file] [log] [blame]
Shawn McCarneyd58858c2020-11-04 18:28:01 -06001/**
2 * Copyright © 2020 IBM 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 "presence_service.hpp"
18
19#include "types.hpp"
20#include "utility.hpp"
21
22namespace phosphor::power::regulators
23{
24
25bool DBusPresenceService::isPresent(const std::string& inventoryPath)
26{
Shawn McCarney3cd2b402021-01-30 15:35:58 -060027 // Initially assume hardware is not present
Shawn McCarneyd58858c2020-11-04 18:28:01 -060028 bool present{false};
29
30 // Try to find cached presence value
31 auto it = cache.find(inventoryPath);
32 if (it != cache.end())
33 {
34 present = it->second;
35 }
36 else
37 {
38 // Get presence from D-Bus interface/property
Shawn McCarney3cd2b402021-01-30 15:35:58 -060039 try
40 {
41 util::getProperty(INVENTORY_IFACE, PRESENT_PROP, inventoryPath,
42 INVENTORY_MGR_IFACE, bus, present);
43 }
Patrick Williams69f10ad2021-09-02 09:46:49 -050044 catch (const sdbusplus::exception::exception& e)
Shawn McCarney3cd2b402021-01-30 15:35:58 -060045 {
46 // If exception type is expected and indicates hardware not present
47 if (isExpectedException(e))
48 {
49 present = false;
50 }
51 else
52 {
53 // Re-throw unexpected exception
54 throw;
55 }
56 }
Shawn McCarneyd58858c2020-11-04 18:28:01 -060057
58 // Cache presence value
59 cache[inventoryPath] = present;
60 }
61
62 return present;
63}
64
Shawn McCarney3cd2b402021-01-30 15:35:58 -060065bool DBusPresenceService::isExpectedException(
Patrick Williams69f10ad2021-09-02 09:46:49 -050066 const sdbusplus::exception::exception& e)
Shawn McCarney3cd2b402021-01-30 15:35:58 -060067{
68 // Initially assume exception is not one of the expected types
69 bool isExpected{false};
70
71 // If the D-Bus error name is set within the exception
72 if (e.name() != nullptr)
73 {
74 // Check if the error name is one of the expected values when hardware
75 // is not present.
76 //
77 // Sometimes the object path does not exist. Sometimes the object path
78 // exists, but it does not implement the D-Bus interface that contains
79 // the present property. Both of these cases result in exceptions.
80 //
81 // In the case where the interface is not implemented, the systemd
82 // documentation seems to indicate that the error name should be
83 // SD_BUS_ERROR_UNKNOWN_INTERFACE. However, in OpenBMC the
84 // SD_BUS_ERROR_UNKNOWN_PROPERTY error name can occur.
85 std::string name = e.name();
86 if ((name == SD_BUS_ERROR_UNKNOWN_OBJECT) ||
87 (name == SD_BUS_ERROR_UNKNOWN_INTERFACE) ||
88 (name == SD_BUS_ERROR_UNKNOWN_PROPERTY))
89 {
90 isExpected = true;
91 }
92 }
93
94 return isExpected;
95}
96
Shawn McCarneyd58858c2020-11-04 18:28:01 -060097} // namespace phosphor::power::regulators