James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 1 | /* |
| 2 | // Copyright (c) 2018 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 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 18 | #include <sdbusplus/message.hpp> |
| 19 | |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 20 | #include <filesystem> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 21 | #include <regex> |
Ed Tanous | 4068129 | 2022-02-22 10:11:43 -0800 | [diff] [blame] | 22 | #include <variant> |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 23 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 24 | namespace dbus |
| 25 | { |
| 26 | |
| 27 | namespace utility |
| 28 | { |
| 29 | |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 30 | // clang-format off |
Ed Tanous | 4068129 | 2022-02-22 10:11:43 -0800 | [diff] [blame] | 31 | using DbusVariantType = std::variant< |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 32 | std::vector<std::tuple<std::string, std::string, std::string>>, |
| 33 | std::vector<std::string>, |
| 34 | std::vector<double>, |
| 35 | std::string, |
| 36 | int64_t, |
| 37 | uint64_t, |
| 38 | double, |
| 39 | int32_t, |
| 40 | uint32_t, |
| 41 | int16_t, |
| 42 | uint16_t, |
| 43 | uint8_t, |
| 44 | bool, |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 45 | sdbusplus::message::unix_fd, |
| 46 | std::vector<uint32_t>, |
| 47 | std::vector<uint16_t>, |
| 48 | sdbusplus::message::object_path, |
| 49 | std::tuple<uint64_t, std::vector<std::tuple<std::string, std::string, double, uint64_t>>>, |
| 50 | std::vector<std::tuple<std::string, std::string>>, |
| 51 | std::vector<std::tuple<uint32_t, std::vector<uint32_t>>>, |
| 52 | std::vector<std::tuple<uint32_t, size_t>>, |
| 53 | std::vector<std::tuple<sdbusplus::message::object_path, std::string, |
| 54 | std::string, std::string>> |
| 55 | >; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 56 | |
Ed Tanous | d1a6481 | 2021-12-13 12:14:05 -0800 | [diff] [blame] | 57 | // clang-format on |
Ed Tanous | 711ac7a | 2021-12-20 09:34:41 -0800 | [diff] [blame] | 58 | using DBusPropertiesMap = std::vector<std::pair<std::string, DbusVariantType>>; |
| 59 | using DBusInteracesMap = std::vector<std::pair<std::string, DBusPropertiesMap>>; |
Zbigniew Kurzynski | 755a33c | 2020-02-28 14:06:37 +0100 | [diff] [blame] | 60 | using ManagedObjectType = |
| 61 | std::vector<std::pair<sdbusplus::message::object_path, DBusInteracesMap>>; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 62 | |
James Feist | 73df0db | 2019-03-25 15:29:35 -0700 | [diff] [blame] | 63 | using ManagedItem = std::pair< |
| 64 | sdbusplus::message::object_path, |
Ed Tanous | 630c317 | 2022-02-22 12:02:23 -0800 | [diff] [blame] | 65 | std::vector<std::pair< |
| 66 | std::string, std::vector<std::pair<std::string, DbusVariantType>>>>>; |
James Feist | 73df0db | 2019-03-25 15:29:35 -0700 | [diff] [blame] | 67 | |
Shantappa Teekappanavar | 5df6eda | 2022-01-18 12:29:28 -0600 | [diff] [blame] | 68 | // Map of service name to list of interfaces |
| 69 | using MapperServiceMap = |
| 70 | std::vector<std::pair<std::string, std::vector<std::string>>>; |
| 71 | |
| 72 | // Map of object paths to MapperServiceMaps |
| 73 | using MapperGetSubTreeResponse = |
| 74 | std::vector<std::pair<std::string, MapperServiceMap>>; |
| 75 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 76 | inline void escapePathForDbus(std::string& path) |
| 77 | { |
| 78 | const std::regex reg("[^A-Za-z0-9_/]"); |
| 79 | std::regex_replace(path.begin(), path.begin(), path.end(), reg, "_"); |
| 80 | } |
| 81 | |
| 82 | // gets the string N strings deep into a path |
| 83 | // i.e. /0th/1st/2nd/3rd |
| 84 | inline bool getNthStringFromPath(const std::string& path, int index, |
| 85 | std::string& result) |
| 86 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 87 | if (index < 0) |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 88 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 89 | return false; |
| 90 | } |
| 91 | |
| 92 | std::filesystem::path p1(path); |
| 93 | int count = -1; |
| 94 | for (auto const& element : p1) |
| 95 | { |
| 96 | if (element.has_filename()) |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 97 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 98 | ++count; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 99 | if (count == index) |
| 100 | { |
Manojkiran Eda | 17a897d | 2020-09-12 15:31:58 +0530 | [diff] [blame] | 101 | result = element.stem().string(); |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 102 | break; |
| 103 | } |
| 104 | } |
| 105 | } |
Ed Tanous | dcf2ebc | 2022-01-25 10:07:45 -0800 | [diff] [blame] | 106 | return count >= index; |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Ratan Gupta | 22c3371 | 2019-05-03 21:50:28 +0530 | [diff] [blame] | 109 | template <typename Callback> |
| 110 | inline void checkDbusPathExists(const std::string& path, Callback&& callback) |
| 111 | { |
| 112 | using GetObjectType = |
| 113 | std::vector<std::pair<std::string, std::vector<std::string>>>; |
| 114 | |
| 115 | crow::connections::systemBus->async_method_call( |
Ed Tanous | f94c4ec | 2022-01-06 12:44:41 -0800 | [diff] [blame] | 116 | [callback{std::forward<Callback>(callback)}]( |
| 117 | const boost::system::error_code ec, |
| 118 | const GetObjectType& objectNames) { |
Ed Tanous | 26f6976 | 2022-01-25 09:49:11 -0800 | [diff] [blame] | 119 | callback(!ec && !objectNames.empty()); |
Ratan Gupta | 22c3371 | 2019-05-03 21:50:28 +0530 | [diff] [blame] | 120 | }, |
| 121 | "xyz.openbmc_project.ObjectMapper", |
| 122 | "/xyz/openbmc_project/object_mapper", |
| 123 | "xyz.openbmc_project.ObjectMapper", "GetObject", path, |
| 124 | std::array<std::string, 0>()); |
| 125 | } |
| 126 | |
James Feist | 5b4aa86 | 2018-08-16 14:07:01 -0700 | [diff] [blame] | 127 | } // namespace utility |
| 128 | } // namespace dbus |