blob: 2f93bfb180bc737befc8d5969341ca66454ca2bd [file] [log] [blame]
Václav Kubernát94938b72018-05-04 15:12:24 +02001/*
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át4108e0d2018-10-29 13:32:22 +01008/*! \file utils.hpp
9 \brief A header containing utility functions
10*/
Václav Kubernát94938b72018-05-04 15:12:24 +020011#include <string>
Václav Kubernátebca2552018-06-08 19:06:02 +020012#include "ast_path.hpp"
Václav Kubernátc31bd602019-03-07 11:44:48 +010013#include "ast_values.hpp"
Václav Kubernát0b0272f2018-06-13 14:13:08 +020014#include "schema.hpp"
Václav Kubernát94938b72018-05-04 15:12:24 +020015
16std::string joinPaths(const std::string& prefix, const std::string& suffix);
Václav Kubernát60d6f292018-05-25 09:45:32 +020017std::string stripLastNodeFromPath(const std::string& path);
Václav Kubernát2eaceb82018-10-08 19:56:30 +020018schemaPath_ pathWithoutLastNode(const schemaPath_& path);
19dataPath_ pathWithoutLastNode(const dataPath_& path);
Václav Kubernát3a99f002020-03-31 02:27:41 +020020std::string leafDataTypeToString(const yang::LeafDataType& type);
Václav Kubernát2eaceb82018-10-08 19:56:30 +020021std::string fullNodeName(const schemaPath_& location, const ModuleNodePair& pair);
22std::string fullNodeName(const dataPath_& location, const ModuleNodePair& pair);
Václav Kubernát9b725992019-05-29 16:39:47 +020023std::string leafDataToString(const leaf_data_ value);