blob: 0082d36317a06394aca1770ad570c0f43a12e01e [file] [log] [blame]
Matt Spinler974c9162017-08-04 08:36:37 -05001/**
2 * Copyright © 2017 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#include "utility.hpp"
17
Lei YUcfc040c2019-10-29 17:10:26 +080018#include "types.hpp"
19
Lei YU7dc31bb2019-08-30 10:07:08 +080020#include <fstream>
21
Lei YUab093322019-10-09 16:43:22 +080022namespace phosphor
Matt Spinler974c9162017-08-04 08:36:37 -050023{
24namespace power
25{
26namespace util
27{
28
29constexpr auto MAPPER_BUSNAME = "xyz.openbmc_project.ObjectMapper";
30constexpr auto MAPPER_PATH = "/xyz/openbmc_project/object_mapper";
31constexpr auto MAPPER_INTERFACE = "xyz.openbmc_project.ObjectMapper";
32
33using namespace phosphor::logging;
Lei YU7dc31bb2019-08-30 10:07:08 +080034using json = nlohmann::json;
Matt Spinler48b4a432017-08-04 11:57:37 -050035
Matt Spinlerf0f02b92018-10-25 16:12:43 -050036std::string getService(const std::string& path, const std::string& interface,
Patrick Williams7354ce62022-07-22 19:26:56 -050037 sdbusplus::bus_t& bus, bool logError)
Matt Spinler974c9162017-08-04 08:36:37 -050038{
Matt Spinlerf0f02b92018-10-25 16:12:43 -050039 auto method = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
40 MAPPER_INTERFACE, "GetObject");
Matt Spinler974c9162017-08-04 08:36:37 -050041
42 method.append(path);
43 method.append(std::vector<std::string>({interface}));
44
45 auto reply = bus.call(method);
Matt Spinler974c9162017-08-04 08:36:37 -050046
47 std::map<std::string, std::vector<std::string>> response;
48 reply.read(response);
49
50 if (response.empty())
51 {
Matthew Barthd2624402020-02-03 15:35:12 -060052 if (logError)
53 {
Jay Meyer6a3fd2c2020-08-25 16:37:16 -050054 log<level::ERR>(
55 std::string("Error in mapper response for getting service name "
56 "PATH=" +
57 path + " INTERFACE=" + interface)
58 .c_str());
Matthew Barthd2624402020-02-03 15:35:12 -060059 }
Matt Spinler974c9162017-08-04 08:36:37 -050060 return std::string{};
61 }
62
63 return response.begin()->first;
64}
65
Patrick Williams7354ce62022-07-22 19:26:56 -050066DbusPropertyMap getAllProperties(sdbusplus::bus_t& bus, const std::string& path,
Adriana Kobylak4e8b3352021-03-16 20:38:50 +000067 const std::string& interface,
68 const std::string& service)
69{
70 DbusPropertyMap properties;
71
72 auto serviceStr = service;
73 if (serviceStr.empty())
74 {
75 serviceStr = getService(path, interface, bus);
76 if (serviceStr.empty())
77 {
78 return properties;
79 }
80 }
81
82 auto method = bus.new_method_call(serviceStr.c_str(), path.c_str(),
83 PROPERTY_INTF, "GetAll");
84 method.append(interface);
85 auto reply = bus.call(method);
86 reply.read(properties);
87 return properties;
88}
89
Patrick Williams7354ce62022-07-22 19:26:56 -050090DbusSubtree getSubTree(sdbusplus::bus_t& bus, const std::string& path,
Brandon Wymanc761b5f2020-11-05 18:30:41 -060091 const std::string& interface, int32_t depth)
92{
93 auto mapperCall = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
94 MAPPER_INTERFACE, "GetSubTree");
95 mapperCall.append(path);
96 mapperCall.append(depth);
97 mapperCall.append(std::vector<std::string>({interface}));
98
99 auto reply = bus.call(mapperCall);
100
101 DbusSubtree response;
102 reply.read(response);
103 return response;
104}
105
Matt Spinler06594222023-05-01 10:44:43 -0500106std::vector<DbusPath> getAssociatedSubTreePaths(
107 sdbusplus::bus_t& bus,
108 const sdbusplus::message::object_path& associationPath,
109 const sdbusplus::message::object_path& path,
110 const std::vector<std::string>& interfaces, int32_t depth)
111{
112 auto mapperCall =
113 bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, MAPPER_INTERFACE,
114 "GetAssociatedSubTreePaths");
115 mapperCall.append(associationPath);
116 mapperCall.append(path);
117 mapperCall.append(depth);
118 mapperCall.append(interfaces);
119
120 auto reply = bus.call(mapperCall);
121
122 std::vector<DbusPath> response;
123 reply.read(response);
124 return response;
125}
126
Lei YU7dc31bb2019-08-30 10:07:08 +0800127json loadJSONFromFile(const char* path)
128{
129 std::ifstream ifs(path);
130 if (!ifs.good())
131 {
Jay Meyer6a3fd2c2020-08-25 16:37:16 -0500132 log<level::ERR>(std::string("Unable to open file "
133 "PATH=" +
134 std::string(path))
135 .c_str());
Lei YU7dc31bb2019-08-30 10:07:08 +0800136 return nullptr;
137 }
138 auto data = json::parse(ifs, nullptr, false);
139 if (data.is_discarded())
140 {
Jay Meyer6a3fd2c2020-08-25 16:37:16 -0500141 log<level::ERR>(std::string("Failed to parse json "
142 "PATH=" +
143 std::string(path))
144 .c_str());
Lei YU7dc31bb2019-08-30 10:07:08 +0800145 return nullptr;
146 }
147 return data;
148}
149
Lei YU40705462019-10-09 17:07:11 +0800150phosphor::pmbus::Type getPMBusAccessType(const json& json)
151{
152 using namespace phosphor::pmbus;
153 Type type;
154
155 auto typeStr = json.at("inventoryPMBusAccessType");
156
157 if (typeStr == "Hwmon")
158 {
159 type = Type::Hwmon;
160 }
161 else if (typeStr == "DeviceDebug")
162 {
163 type = Type::DeviceDebug;
164 }
165 else if (typeStr == "Debug")
166 {
167 type = Type::Debug;
168 }
169 else if (typeStr == "HwmonDeviceDebug")
170 {
171 type = Type::HwmonDeviceDebug;
172 }
173 else
174 {
175 type = Type::Base;
176 }
177 return type;
178}
179
Patrick Williams7354ce62022-07-22 19:26:56 -0500180bool isPoweredOn(sdbusplus::bus_t& bus, bool defaultState)
Lei YUcfc040c2019-10-29 17:10:26 +0800181{
Lei YUe8c9cd62019-11-04 14:24:41 +0800182 int32_t state = defaultState;
Lei YUcfc040c2019-10-29 17:10:26 +0800183
184 try
185 {
Lei YUe8c9cd62019-11-04 14:24:41 +0800186 // When state = 1, system is powered on
Lei YUcfc040c2019-10-29 17:10:26 +0800187 auto service = util::getService(POWER_OBJ_PATH, POWER_IFACE, bus);
188 getProperty<int32_t>(POWER_IFACE, "state", POWER_OBJ_PATH, service, bus,
189 state);
190 }
Patrick Williamsc1d4de52021-10-06 12:45:57 -0500191 catch (const std::exception& e)
Lei YUcfc040c2019-10-29 17:10:26 +0800192 {
Lei YUe8c9cd62019-11-04 14:24:41 +0800193 log<level::INFO>("Failed to get power state.");
Lei YUcfc040c2019-10-29 17:10:26 +0800194 }
195 return state != 0;
196}
197
Patrick Williams7354ce62022-07-22 19:26:56 -0500198std::vector<std::string> getPSUInventoryPaths(sdbusplus::bus_t& bus)
Lei YUe8c9cd62019-11-04 14:24:41 +0800199{
200 std::vector<std::string> paths;
201 auto method = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH,
202 MAPPER_INTERFACE, "GetSubTreePaths");
203 method.append(INVENTORY_OBJ_PATH);
204 method.append(0); // Depth 0 to search all
205 method.append(std::vector<std::string>({PSU_INVENTORY_IFACE}));
206 auto reply = bus.call(method);
207
208 reply.read(paths);
209 return paths;
210}
211
Matt Spinlerf0f02b92018-10-25 16:12:43 -0500212} // namespace util
213} // namespace power
Lei YUab093322019-10-09 16:43:22 +0800214} // namespace phosphor