James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 1 | /* |
| 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 | #pragma once |
| 17 | |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 18 | #include "app.hpp" |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 19 | #include "async_resp.hpp" |
| 20 | #include "dbus_utility.hpp" |
| 21 | #include "redfish_util.hpp" |
| 22 | |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 23 | #include <sdbusplus/asio/property.hpp> |
John Edward Broadbent | 7e860f1 | 2021-04-08 15:57:16 -0700 | [diff] [blame] | 24 | |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 25 | namespace redfish |
| 26 | { |
| 27 | /** |
| 28 | * @brief Retrieves identify led group properties over dbus |
| 29 | * |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 30 | * @param[in] asyncResp Shared pointer for generating response message. |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 31 | * |
| 32 | * @return None. |
| 33 | */ |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 34 | // TODO (Gunnar): Remove IndicatorLED after enough time has passed |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 35 | inline void |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 36 | getIndicatorLedState(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 37 | { |
| 38 | BMCWEB_LOG_DEBUG << "Get led groups"; |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 39 | sdbusplus::asio::getProperty<bool>( |
| 40 | *crow::connections::systemBus, "xyz.openbmc_project.LED.GroupManager", |
| 41 | "/xyz/openbmc_project/led/groups/enclosure_identify_blink", |
| 42 | "xyz.openbmc_project.Led.Group", "Asserted", |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 43 | [asyncResp](const boost::system::error_code& ec, const bool blinking) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 44 | // Some systems may not have enclosure_identify_blink object so |
| 45 | // proceed to get enclosure_identify state. |
| 46 | if (ec == boost::system::errc::invalid_argument) |
| 47 | { |
| 48 | BMCWEB_LOG_DEBUG |
| 49 | << "Get identity blinking LED failed, missmatch in property type"; |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 50 | messages::internalError(asyncResp->res); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 51 | return; |
| 52 | } |
| 53 | |
| 54 | // Blinking ON, no need to check enclosure_identify assert. |
| 55 | if (!ec && blinking) |
| 56 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 57 | asyncResp->res.jsonValue["IndicatorLED"] = "Blinking"; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 58 | return; |
| 59 | } |
| 60 | |
| 61 | sdbusplus::asio::getProperty<bool>( |
| 62 | *crow::connections::systemBus, |
| 63 | "xyz.openbmc_project.LED.GroupManager", |
| 64 | "/xyz/openbmc_project/led/groups/enclosure_identify", |
| 65 | "xyz.openbmc_project.Led.Group", "Asserted", |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 66 | [asyncResp](const boost::system::error_code& ec2, |
| 67 | const bool ledOn) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 68 | if (ec2 == boost::system::errc::invalid_argument) |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 69 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 70 | BMCWEB_LOG_DEBUG |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 71 | << "Get enclosure identity led failed, missmatch in property type"; |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 72 | messages::internalError(asyncResp->res); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 73 | return; |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 74 | } |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 75 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 76 | if (ec2) |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 77 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 78 | return; |
| 79 | } |
| 80 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 81 | if (ledOn) |
| 82 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 83 | asyncResp->res.jsonValue["IndicatorLED"] = "Lit"; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 84 | } |
| 85 | else |
| 86 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 87 | asyncResp->res.jsonValue["IndicatorLED"] = "Off"; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 88 | } |
| 89 | }); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 90 | }); |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 91 | } |
| 92 | |
| 93 | /** |
| 94 | * @brief Sets identify led group properties |
| 95 | * |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 96 | * @param[in] asyncResp Shared pointer for generating response message. |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 97 | * @param[in] ledState LED state passed from request |
| 98 | * |
| 99 | * @return None. |
| 100 | */ |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 101 | // TODO (Gunnar): Remove IndicatorLED after enough time has passed |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 102 | inline void |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 103 | setIndicatorLedState(const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, |
zhanghch05 | 8d1b46d | 2021-04-01 11:18:24 +0800 | [diff] [blame] | 104 | const std::string& ledState) |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 105 | { |
| 106 | BMCWEB_LOG_DEBUG << "Set led groups"; |
| 107 | bool ledOn = false; |
| 108 | bool ledBlinkng = false; |
| 109 | |
| 110 | if (ledState == "Lit") |
| 111 | { |
| 112 | ledOn = true; |
| 113 | } |
| 114 | else if (ledState == "Blinking") |
| 115 | { |
| 116 | ledBlinkng = true; |
| 117 | } |
| 118 | else if (ledState != "Off") |
| 119 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 120 | messages::propertyValueNotInList(asyncResp->res, ledState, |
| 121 | "IndicatorLED"); |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 122 | return; |
| 123 | } |
| 124 | |
| 125 | crow::connections::systemBus->async_method_call( |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 126 | [asyncResp, ledOn, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 127 | ledBlinkng](const boost::system::error_code& ec) mutable { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 128 | if (ec) |
| 129 | { |
| 130 | // Some systems may not have enclosure_identify_blink object so |
| 131 | // Lets set enclosure_identify state to true if Blinking is |
| 132 | // true. |
| 133 | if (ledBlinkng) |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 134 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 135 | ledOn = true; |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 136 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 137 | } |
| 138 | crow::connections::systemBus->async_method_call( |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 139 | [asyncResp](const boost::system::error_code& ec2) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 140 | if (ec2) |
| 141 | { |
| 142 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 143 | messages::internalError(asyncResp->res); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 144 | return; |
| 145 | } |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 146 | messages::success(asyncResp->res); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 147 | }, |
| 148 | "xyz.openbmc_project.LED.GroupManager", |
| 149 | "/xyz/openbmc_project/led/groups/enclosure_identify", |
| 150 | "org.freedesktop.DBus.Properties", "Set", |
| 151 | "xyz.openbmc_project.Led.Group", "Asserted", |
| 152 | dbus::utility::DbusVariantType(ledOn)); |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 153 | }, |
| 154 | "xyz.openbmc_project.LED.GroupManager", |
| 155 | "/xyz/openbmc_project/led/groups/enclosure_identify_blink", |
| 156 | "org.freedesktop.DBus.Properties", "Set", |
| 157 | "xyz.openbmc_project.Led.Group", "Asserted", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 158 | dbus::utility::DbusVariantType(ledBlinkng)); |
James Feist | 1c8fba9 | 2019-12-20 15:12:07 -0800 | [diff] [blame] | 159 | } |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 160 | |
| 161 | /** |
| 162 | * @brief Retrieves identify led group properties over dbus |
| 163 | * |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 164 | * @param[in] asyncResp Shared pointer for generating response message. |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 165 | * |
| 166 | * @return None. |
| 167 | */ |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 168 | inline void getLocationIndicatorActive( |
| 169 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp) |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 170 | { |
| 171 | BMCWEB_LOG_DEBUG << "Get LocationIndicatorActive"; |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 172 | sdbusplus::asio::getProperty<bool>( |
| 173 | *crow::connections::systemBus, "xyz.openbmc_project.LED.GroupManager", |
| 174 | "/xyz/openbmc_project/led/groups/enclosure_identify_blink", |
| 175 | "xyz.openbmc_project.Led.Group", "Asserted", |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 176 | [asyncResp](const boost::system::error_code& ec, const bool blinking) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 177 | // Some systems may not have enclosure_identify_blink object so |
| 178 | // proceed to get enclosure_identify state. |
| 179 | if (ec == boost::system::errc::invalid_argument) |
| 180 | { |
| 181 | BMCWEB_LOG_DEBUG |
| 182 | << "Get identity blinking LED failed, missmatch in property type"; |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 183 | messages::internalError(asyncResp->res); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 184 | return; |
| 185 | } |
| 186 | |
| 187 | // Blinking ON, no need to check enclosure_identify assert. |
| 188 | if (!ec && blinking) |
| 189 | { |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 190 | asyncResp->res.jsonValue["LocationIndicatorActive"] = true; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 191 | return; |
| 192 | } |
| 193 | |
| 194 | sdbusplus::asio::getProperty<bool>( |
| 195 | *crow::connections::systemBus, |
| 196 | "xyz.openbmc_project.LED.GroupManager", |
| 197 | "/xyz/openbmc_project/led/groups/enclosure_identify", |
| 198 | "xyz.openbmc_project.Led.Group", "Asserted", |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 199 | [asyncResp](const boost::system::error_code& ec2, |
| 200 | const bool ledOn) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 201 | if (ec2 == boost::system::errc::invalid_argument) |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 202 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 203 | BMCWEB_LOG_DEBUG |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 204 | << "Get enclosure identity led failed, missmatch in property type"; |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 205 | messages::internalError(asyncResp->res); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 206 | return; |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 207 | } |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 208 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 209 | if (ec2) |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 210 | { |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 211 | return; |
| 212 | } |
| 213 | |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 214 | asyncResp->res.jsonValue["LocationIndicatorActive"] = ledOn; |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 215 | }); |
Jonathan Doman | 1e1e598 | 2021-06-11 09:36:17 -0700 | [diff] [blame] | 216 | }); |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | /** |
| 220 | * @brief Sets identify led group properties |
| 221 | * |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 222 | * @param[in] asyncResp Shared pointer for generating response message. |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 223 | * @param[in] ledState LED state passed from request |
| 224 | * |
| 225 | * @return None. |
| 226 | */ |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 227 | inline void setLocationIndicatorActive( |
| 228 | const std::shared_ptr<bmcweb::AsyncResp>& asyncResp, const bool ledState) |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 229 | { |
| 230 | BMCWEB_LOG_DEBUG << "Set LocationIndicatorActive"; |
| 231 | |
| 232 | crow::connections::systemBus->async_method_call( |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 233 | [asyncResp, ledState](const boost::system::error_code& ec) mutable { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 234 | if (ec) |
| 235 | { |
| 236 | // Some systems may not have enclosure_identify_blink object so |
| 237 | // lets set enclosure_identify state also if |
| 238 | // enclosure_identify_blink failed |
| 239 | crow::connections::systemBus->async_method_call( |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 240 | [asyncResp](const boost::system::error_code& ec2) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 241 | if (ec2) |
| 242 | { |
| 243 | BMCWEB_LOG_DEBUG << "DBUS response error " << ec2; |
Ed Tanous | ac106bf | 2023-06-07 09:24:59 -0700 | [diff] [blame] | 244 | messages::internalError(asyncResp->res); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 245 | return; |
| 246 | } |
| 247 | }, |
| 248 | "xyz.openbmc_project.LED.GroupManager", |
| 249 | "/xyz/openbmc_project/led/groups/enclosure_identify", |
| 250 | "org.freedesktop.DBus.Properties", "Set", |
| 251 | "xyz.openbmc_project.Led.Group", "Asserted", |
| 252 | dbus::utility::DbusVariantType(ledState)); |
| 253 | } |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 254 | }, |
| 255 | "xyz.openbmc_project.LED.GroupManager", |
| 256 | "/xyz/openbmc_project/led/groups/enclosure_identify_blink", |
| 257 | "org.freedesktop.DBus.Properties", "Set", |
| 258 | "xyz.openbmc_project.Led.Group", "Asserted", |
Ed Tanous | 168e20c | 2021-12-13 14:39:53 -0800 | [diff] [blame] | 259 | dbus::utility::DbusVariantType(ledState)); |
Gunnar Mills | 9f8bfa7 | 2020-09-28 13:45:19 -0500 | [diff] [blame] | 260 | } |
Ed Tanous | 23a21a1 | 2020-07-25 04:45:05 +0000 | [diff] [blame] | 261 | } // namespace redfish |