1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122 | /*
* Copyright (C) 2021 CESNET, https://photonics.cesnet.cz/
*
* Written by Václav Kubernát <kubernat@cesnet.cz>
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#pragma once
#include <filesystem>
#include <functional>
#include <libyang-cpp/Collection.hpp>
#include <libyang-cpp/ChildInstantiables.hpp>
#include <libyang-cpp/DataNode.hpp>
#include <libyang-cpp/Enum.hpp>
#include <libyang-cpp/Module.hpp>
#include <libyang-cpp/SchemaNode.hpp>
#include <libyang-cpp/Set.hpp>
#include <libyang-cpp/export.h>
#include <memory>
struct ly_ctx;
/**
* @brief The libyang-cpp namespace.
*/
namespace libyang {
class Context;
using ContextDeleter = std::function<void(ly_ctx*)>;
LIBYANG_CPP_EXPORT Context createUnmanagedContext(ly_ctx* ctx, ContextDeleter);
LIBYANG_CPP_EXPORT ly_ctx* retrieveContext(Context ctx);
/**
* @brief A structure containing a module as a string and its format.
*
* Used as the return value for module retrieval callback.
*/
struct LIBYANG_CPP_EXPORT ModuleInfo {
std::string data;
SchemaFormat format;
};
/**
* @brief Callback for supplying module data.
*
* This callback is used for supplying both module and submodule data.
*
* @param modName The name of the missing module.
* @param modRevision Optional missing module revision. std::nullopt can mean two things
* - latest revision is requested
* - a submodule is requested, in that case submodName won't be std::nullopt
* @param submodName Optional missing submodule name. std::nullopt if requesting the main module
* @param submodRev Optional missing submodule revision. std::nullopt if requesting the latest submodule revision.
*/
using ModuleCallback = std::optional<ModuleInfo>(std::string_view modName,
std::optional<std::string_view> modRevision,
std::optional<std::string_view> submodName,
std::optional<std::string_view> submodRev);
/**
* @brief Contains detailed libyang error.
*
* Wraps `ly_err_item`.
*/
struct LIBYANG_CPP_EXPORT ErrorInfo {
bool operator==(const ErrorInfo& other) const = default;
std::optional<std::string> appTag;
LogLevel level;
std::string message;
ErrorCode code;
std::optional<std::string> path;
ValidationErrorCode validationCode;
};
/**
* @brief libyang context class.
*/
class LIBYANG_CPP_EXPORT Context {
public:
Context(const std::optional<std::string>& searchPath = std::nullopt, const std::optional<ContextOptions> options = std::nullopt);<--- Class 'Context' has a constructor with 1 argument that is not explicit. [+]Class 'Context' has a constructor with 1 argument that is not explicit. Such, so called "Converting constructors", should in general be explicit for type safety reasons as that prevents unintended implicit conversions.
Module parseModuleMem(const std::string& data, const SchemaFormat format) const;
Module parseModulePath(const std::string& path, const SchemaFormat format) const;
std::optional<DataNode> parseDataMem(
const std::string& data,
const DataFormat format,
const std::optional<ParseOptions> parseOpts = std::nullopt,
const std::optional<ValidationOptions> validationOpts = std::nullopt) const;
std::optional<DataNode> parseDataPath(
const std::filesystem::path& path,
const DataFormat format,
const std::optional<ParseOptions> parseOpts = std::nullopt,
const std::optional<ValidationOptions> validationOpts = std::nullopt) const;
Module loadModule(const std::string& name, const std::optional<std::string>& revision = std::nullopt, const std::vector<std::string>& = {}) const;
void setSearchDir(const std::string& searchDir) const;
std::optional<Module> getModule(const std::string& name, const std::optional<std::string>& revision = std::nullopt) const;
std::optional<Module> getModuleImplemented(const std::string& name) const;
std::vector<Module> modules() const;
void registerModuleCallback(std::function<ModuleCallback> callback);
ParsedOp parseOp(const std::string& input, const DataFormat format, const OperationType opType) const;
DataNode newPath(const std::string& path, const std::optional<std::string>& value = std::nullopt, const std::optional<CreationOptions> options = std::nullopt) const;
CreatedNodes newPath2(const std::string& path, const std::optional<std::string>& value = std::nullopt, const std::optional<CreationOptions> options = std::nullopt) const;
CreatedNodes newPath2(const std::string& path, libyang::JSON json, const std::optional<CreationOptions> options = std::nullopt) const;
CreatedNodes newPath2(const std::string& path, libyang::XML xml, const std::optional<CreationOptions> options = std::nullopt) const;
SchemaNode findPath(const std::string& dataPath, const OutputNodes output = OutputNodes::No) const;
Set<SchemaNode> findXPath(const std::string& path) const;
std::vector<ErrorInfo> getErrors() const;
void cleanAllErrors();
friend LIBYANG_CPP_EXPORT Context createUnmanagedContext(ly_ctx* ctx, ContextDeleter);
friend LIBYANG_CPP_EXPORT ly_ctx* retrieveContext(Context ctx);
private:
Context(ly_ctx* ctx, ContextDeleter = nullptr);
std::shared_ptr<ly_ctx> m_ctx;
std::function<ModuleCallback> m_moduleCallback;
};
}
|