| #include "utils.hpp" |
| |
| #include "defines.hpp" |
| |
| #include <phosphor-logging/log.hpp> |
| #include <sdbusplus/server.hpp> |
| |
| namespace openpower |
| { |
| namespace vpd |
| { |
| |
| namespace inventory |
| { |
| |
| auto getPIMService() |
| { |
| auto bus = sdbusplus::bus::new_default(); |
| auto mapper = |
| bus.new_method_call("xyz.openbmc_project.ObjectMapper", |
| "/xyz/openbmc_project/object_mapper", |
| "xyz.openbmc_project.ObjectMapper", "GetObject"); |
| |
| mapper.append(pimPath); |
| mapper.append(std::vector<std::string>({pimIntf})); |
| |
| auto result = bus.call(mapper); |
| if (result.is_method_error()) |
| { |
| throw std::runtime_error("ObjectMapper GetObject failed"); |
| } |
| |
| std::map<std::string, std::vector<std::string>> response; |
| result.read(response); |
| if (response.empty()) |
| { |
| throw std::runtime_error("ObjectMapper GetObject bad response"); |
| } |
| |
| return response.begin()->first; |
| } |
| |
| void callPIM(ObjectMap&& objects) |
| { |
| std::string service; |
| |
| try |
| { |
| service = getPIMService(); |
| auto bus = sdbusplus::bus::new_default(); |
| auto pimMsg = |
| bus.new_method_call(service.c_str(), pimPath, pimIntf, "Notify"); |
| pimMsg.append(std::move(objects)); |
| auto result = bus.call(pimMsg); |
| if (result.is_method_error()) |
| { |
| std::cerr << "PIM Notify() failed\n"; |
| } |
| } |
| catch (const std::runtime_error& e) |
| { |
| using namespace phosphor::logging; |
| log<level::ERR>(e.what()); |
| } |
| } |
| |
| } // namespace inventory |
| |
| using namespace openpower::vpd::constants; |
| LE2ByteData readUInt16LE(Binary::const_iterator iterator) |
| { |
| LE2ByteData lowByte = *iterator; |
| LE2ByteData highByte = *(iterator + 1); |
| lowByte |= (highByte << 8); |
| return lowByte; |
| } |
| |
| /** @brief Encodes a keyword for D-Bus. |
| */ |
| string encodeKeyword(const string& kw, const string& encoding) |
| { |
| if (encoding == "MAC") |
| { |
| string res{}; |
| size_t first = kw[0]; |
| res += toHex(first >> 4); |
| res += toHex(first & 0x0f); |
| for (size_t i = 1; i < kw.size(); ++i) |
| { |
| res += ":"; |
| res += toHex(kw[i] >> 4); |
| res += toHex(kw[i] & 0x0f); |
| } |
| return res; |
| } |
| else if (encoding == "DATE") |
| { |
| // Date, represent as |
| // <year>-<month>-<day> <hour>:<min> |
| string res{}; |
| static constexpr uint8_t skipPrefix = 3; |
| |
| auto strItr = kw.begin(); |
| advance(strItr, skipPrefix); |
| for_each(strItr, kw.end(), [&res](size_t c) { res += c; }); |
| |
| res.insert(BD_YEAR_END, 1, '-'); |
| res.insert(BD_MONTH_END, 1, '-'); |
| res.insert(BD_DAY_END, 1, ' '); |
| res.insert(BD_HOUR_END, 1, ':'); |
| |
| return res; |
| } |
| else // default to string encoding |
| { |
| return string(kw.begin(), kw.end()); |
| } |
| } |
| } // namespace vpd |
| } // namespace openpower |