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 | /*! \file utils.hpp |
| 9 | \brief A header containing utility functions |
| 10 | */ |
Václav Kubernát | 94938b7 | 2018-05-04 15:12:24 +0200 | [diff] [blame] | 11 | #include <string> |
Václav Kubernát | ebca255 | 2018-06-08 19:06:02 +0200 | [diff] [blame] | 12 | #include "ast_path.hpp" |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 13 | #include "ast_values.hpp" |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 14 | #include "schema.hpp" |
Václav Kubernát | 94938b7 | 2018-05-04 15:12:24 +0200 | [diff] [blame] | 15 | |
| 16 | std::string joinPaths(const std::string& prefix, const std::string& suffix); |
Václav Kubernát | 60d6f29 | 2018-05-25 09:45:32 +0200 | [diff] [blame] | 17 | std::string stripLastNodeFromPath(const std::string& path); |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 18 | schemaPath_ pathWithoutLastNode(const schemaPath_& path); |
| 19 | dataPath_ pathWithoutLastNode(const dataPath_& path); |
Václav Kubernát | 0b0272f | 2018-06-13 14:13:08 +0200 | [diff] [blame] | 20 | std::string leafDataTypeToString(yang::LeafDataTypes type); |
Václav Kubernát | 2eaceb8 | 2018-10-08 19:56:30 +0200 | [diff] [blame] | 21 | std::string fullNodeName(const schemaPath_& location, const ModuleNodePair& pair); |
| 22 | std::string fullNodeName(const dataPath_& location, const ModuleNodePair& pair); |
Václav Kubernát | a395d33 | 2019-02-13 16:49:20 +0100 | [diff] [blame] | 23 | /** Returns a subset of the original set with only the strings starting with prefix */ |
| 24 | std::set<std::string> filterByPrefix(const std::set<std::string>& set, const std::string_view prefix); |
Václav Kubernát | 9b72599 | 2019-05-29 16:39:47 +0200 | [diff] [blame] | 25 | std::string leafDataToString(const leaf_data_ value); |