Václav Kubernát | 94938b7 | 2018-05-04 15:12:24 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/ |
| 3 | * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/ |
| 4 | * |
| 5 | * Written by Václav Kubernát <kubervac@fit.cvut.cz> |
| 6 | * |
| 7 | */ |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 8 | #include <boost/algorithm/string/erase.hpp> |
| 9 | #include <boost/algorithm/string/predicate.hpp> |
Václav Kubernát | 94938b7 | 2018-05-04 15:12:24 +0200 | [diff] [blame] | 10 | #include "utils.hpp" |
| 11 | |
| 12 | std::string joinPaths(const std::string& prefix, const std::string& suffix) |
| 13 | { |
Václav Kubernát | 50949e6 | 2018-08-30 12:50:08 +0200 | [diff] [blame] | 14 | if (prefix.empty() || suffix.empty() || prefix == "/") |
Václav Kubernát | 94938b7 | 2018-05-04 15:12:24 +0200 | [diff] [blame] | 15 | return prefix + suffix; |
| 16 | else |
| 17 | return prefix + '/' + suffix; |
| 18 | } |
Václav Kubernát | 60d6f29 | 2018-05-25 09:45:32 +0200 | [diff] [blame] | 19 | |
| 20 | std::string stripLastNodeFromPath(const std::string& path) |
| 21 | { |
| 22 | std::string res = path; |
| 23 | auto pos = res.find_last_of('/'); |
| 24 | if (pos == res.npos) |
| 25 | res.clear(); |
| 26 | else |
| 27 | res.erase(pos); |
| 28 | return res; |
| 29 | } |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 30 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 31 | schemaPath_ pathWithoutLastNode(const schemaPath_& path) |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 32 | { |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 33 | return schemaPath_{path.m_scope, decltype(schemaPath_::m_nodes)(path.m_nodes.begin(), path.m_nodes.end() - 1)}; |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 34 | } |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 35 | |
| 36 | std::string leafDataTypeToString(yang::LeafDataTypes type) |
| 37 | { |
| 38 | switch (type) { |
| 39 | case yang::LeafDataTypes::String: |
| 40 | return "a string"; |
| 41 | case yang::LeafDataTypes::Decimal: |
| 42 | return "a decimal"; |
| 43 | case yang::LeafDataTypes::Bool: |
| 44 | return "a boolean"; |
| 45 | case yang::LeafDataTypes::Int: |
| 46 | return "an integer"; |
| 47 | case yang::LeafDataTypes::Uint: |
| 48 | return "an unsigned integer"; |
| 49 | case yang::LeafDataTypes::Enum: |
| 50 | return "an enum"; |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 51 | case yang::LeafDataTypes::IdentityRef: |
| 52 | return "an identity"; |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 53 | default: |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 54 | throw std::runtime_error("leafDataTypeToString: unsupported leaf data type"); |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 55 | } |
| 56 | } |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 57 | |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 58 | std::string fullNodeName(const schemaPath_& location, const ModuleNodePair& pair) |
Václav Kubernát | 744f57f | 2018-06-29 22:46:26 +0200 | [diff] [blame] | 59 | { |
| 60 | if (!pair.first) { |
| 61 | return location.m_nodes.at(0).m_prefix.value().m_name + ":" + pair.second; |
| 62 | } else { |
| 63 | return pair.first.value() + ":" + pair.second; |
| 64 | } |
| 65 | } |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 66 | |
| 67 | std::string fullNodeName(const dataPath_& location, const ModuleNodePair& pair) |
| 68 | { |
| 69 | return fullNodeName(dataPathToSchemaPath(location), pair); |
| 70 | } |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 71 | |
Václav Kubernát | a395d33 | 2019-02-13 16:49:20 +0100 | [diff] [blame] | 72 | std::set<std::string> filterByPrefix(const std::set<std::string>& set, const std::string_view prefix) |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 73 | { |
| 74 | std::set<std::string> filtered; |
| 75 | std::copy_if(set.begin(), set.end(), |
| 76 | std::inserter(filtered, filtered.end()), |
| 77 | [prefix] (auto it) { return boost::starts_with(it, prefix); }); |
Václav Kubernát | a395d33 | 2019-02-13 16:49:20 +0100 | [diff] [blame] | 78 | return filtered; |
Václav Kubernát | 4108e0d | 2018-10-29 13:32:22 +0100 | [diff] [blame] | 79 | } |