blob: 8946d3014bc3440c6c95b0bfc25f7d83729ed32d [file] [log] [blame]
Cheng C Yange83604b2020-01-09 09:41:47 +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 "util.hpp"
18
19#include "utility.hpp"
20
21#include <boost/algorithm/string/predicate.hpp>
22#include <phosphor-logging/elog-errors.hpp>
23
24namespace CR
25{
26
27void 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",
Patrick Williams7354ce62022-07-22 19:26:56 -050038 static_cast<sdbusplus::bus_t&>(*conn), result);
Cheng C Yange83604b2020-01-09 09:41:47 +080039
40 if (!result)
41 {
42 state = PSUState::acLost;
43 }
44}
45
46} // namespace CR