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
17 #include "util.hpp"
18
19 #include "utility.hpp"
20
21 #include <boost/algorithm/string/predicate.hpp>
22 #include <phosphor-logging/elog-errors.hpp>
23
24 namespace CR
25 {
26
getPSUEvent(const std::shared_ptr<sdbusplus::asio::connection> & conn,const std::string & psuName,PSUState & state)27 void getPSUEvent(const std::shared_ptr<sdbusplus::asio::connection>& conn,
28 const std::string& psuName, PSUState& state)
29 {
30 state = PSUState::normal;
31 bool result = true;
32 // /State/Decorator/PSUx_OperationalStatus
33 std::string pathStr = psuEventPath + psuName + "_OperationalStatus";
34
35 phosphor::power::util::getProperty<bool>(
36 "xyz.openbmc_project.State.Decorator.OperationalStatus", "functional",
37 pathStr, "xyz.openbmc_project.PSUSensor",
38 static_cast<sdbusplus::bus_t&>(*conn), result);
39
40 if (!result)
41 {
42 state = PSUState::acLost;
43 }
44 }
45
46 } // namespace CR
47