blob: ddaac35ceece5652092a587e56ddf79f02634415 [file] [log] [blame]
Václav Kubernát24df80e2018-06-06 15:18:03 +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*/
8#pragma once
9
Václav Kubernát57272422019-02-08 12:48:24 +010010#include <boost/mpl/vector.hpp>
Václav Kubernát509ce652019-05-29 19:46:44 +020011#include <boost/spirit/home/x3/support/ast/position_tagged.hpp>
Václav Kubernát24df80e2018-06-06 15:18:03 +020012#include "ast_path.hpp"
Václav Kubernát627f6152018-08-29 13:23:56 +020013#include "ast_values.hpp"
Václav Kubernát24df80e2018-06-06 15:18:03 +020014
15namespace x3 = boost::spirit::x3;
Václav Kubernát24df80e2018-06-06 15:18:03 +020016
Václav Kubernát7707cae2020-01-16 12:04:53 +010017using keyValue_ = std::pair<std::string, leaf_data_>;
Václav Kubernát24df80e2018-06-06 15:18:03 +020018
Václav Kubernáte7d4aea2018-09-11 18:15:48 +020019enum class LsOption {
20 Recursive
21};
22
Václav Kubernát6d791432018-10-25 16:00:35 +020023struct discard_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +010024 static constexpr auto name = "discard";
Václav Kubernát054cc992019-02-21 14:23:52 +010025 static constexpr auto shortHelp = "discard - Discard current changes.";
26 static constexpr auto longHelp = R"(
27 discard
28
29 Discards current changes. Accepts no arguments.
30
31 Usage:
32 /> discard)";
Václav Kubernát6d791432018-10-25 16:00:35 +020033 bool operator==(const discard_& b) const;
34};
35
Václav Kubernát11afac72018-07-18 14:59:53 +020036struct ls_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +010037 static constexpr auto name = "ls";
Václav Kubernát054cc992019-02-21 14:23:52 +010038 static constexpr auto shortHelp = "ls - List available nodes.";
39 static constexpr auto longHelp = R"(
40 ls [--recursive] [path]
41
42 Lists available nodes in the current directory. Optionally
43 accepts a path argument. Accepts both schema paths and data
44 paths. Path starting with a forward slash means an absolute
45 path.
46
47 Usage:
48 /> ls
49 /> ls --recursive module:node
50 /> ls /module:node)";
Václav Kubernát11afac72018-07-18 14:59:53 +020051 bool operator==(const ls_& b) const;
Václav Kubernáte7d4aea2018-09-11 18:15:48 +020052 std::vector<LsOption> m_options;
Václav Kubernát9456b5c2019-10-02 21:14:52 +020053 boost::optional<boost::variant<boost::variant<dataPath_, schemaPath_>, module_>> m_path;
Václav Kubernát11afac72018-07-18 14:59:53 +020054};
55
Václav Kubernát24df80e2018-06-06 15:18:03 +020056struct cd_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +010057 static constexpr auto name = "cd";
Václav Kubernát054cc992019-02-21 14:23:52 +010058 static constexpr auto shortHelp = "cd - Enter a different node.";
59 static constexpr auto longHelp = R"(
60 cd path
61
62 Enters a node specified by path. Only accepts data paths.
63
64 Usage:
65 /> cd /module:node/node2
66 /> cd ..)";
Václav Kubernát24df80e2018-06-06 15:18:03 +020067 bool operator==(const cd_& b) const;
Václav Kubernát2eaceb82018-10-08 19:56:30 +020068 dataPath_ m_path;
Václav Kubernát24df80e2018-06-06 15:18:03 +020069};
70
71struct create_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +010072 static constexpr auto name = "create";
Václav Kubernát054cc992019-02-21 14:23:52 +010073 static constexpr auto shortHelp = "create - Create a presence container.";
74 static constexpr auto longHelp = R"(
Václav Kubernátf5f64f02019-03-19 17:15:47 +010075 create path
Václav Kubernát054cc992019-02-21 14:23:52 +010076
Václav Kubernátf5f64f02019-03-19 17:15:47 +010077 Creates a presence container or a list instance specified by path.
Václav Kubernát054cc992019-02-21 14:23:52 +010078
79 Usage:
Václav Kubernátf5f64f02019-03-19 17:15:47 +010080 /> create /module:pContainer
81 /> create /module:list[key=value][anotherKey=value])";
Václav Kubernát24df80e2018-06-06 15:18:03 +020082 bool operator==(const create_& b) const;
Václav Kubernát2eaceb82018-10-08 19:56:30 +020083 dataPath_ m_path;
Václav Kubernát24df80e2018-06-06 15:18:03 +020084};
85
86struct delete_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +010087 static constexpr auto name = "delete";
Václav Kubernát054cc992019-02-21 14:23:52 +010088 static constexpr auto shortHelp = "delete - Delete a presence container.";
89 static constexpr auto longHelp = R"(
Václav Kubernátf5f64f02019-03-19 17:15:47 +010090 delete path
Václav Kubernát054cc992019-02-21 14:23:52 +010091
Václav Kubernátf5f64f02019-03-19 17:15:47 +010092 Deletes a presence container or a list instance specified by path.
Václav Kubernát054cc992019-02-21 14:23:52 +010093
94 Usage:
Václav Kubernátf5f64f02019-03-19 17:15:47 +010095 /> delete /module:pContainer
96 /> delete /module:list[key=value][anotherKey=value])";
Václav Kubernát24df80e2018-06-06 15:18:03 +020097 bool operator==(const delete_& b) const;
Václav Kubernát2eaceb82018-10-08 19:56:30 +020098 dataPath_ m_path;
Václav Kubernát24df80e2018-06-06 15:18:03 +020099};
100
101struct set_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +0100102 static constexpr auto name = "set";
Václav Kubernát054cc992019-02-21 14:23:52 +0100103 static constexpr auto shortHelp = "set - Change value of a leaf.";
104 static constexpr auto longHelp = R"(
105 set path_to_leaf value
106
107 Changes the leaf specified by path to value.
108
109 Usage:
110 /> set /module:leaf 123
111 /> set /module:leaf abc)";
Václav Kubernát24df80e2018-06-06 15:18:03 +0200112 bool operator==(const set_& b) const;
Václav Kubernát2eaceb82018-10-08 19:56:30 +0200113 dataPath_ m_path;
Václav Kubernátebca2552018-06-08 19:06:02 +0200114 leaf_data_ m_data;
Václav Kubernát24df80e2018-06-06 15:18:03 +0200115};
116
Václav Kubernát812ee282018-08-30 17:10:03 +0200117struct commit_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +0100118 static constexpr auto name = "commit";
Václav Kubernát054cc992019-02-21 14:23:52 +0100119 static constexpr auto shortHelp = "commit - Commit current changes.";
120 static constexpr auto longHelp = R"(
121 commit
122
123 Commits the current changes. Accepts no arguments.
124
125 Usage:
126 /> commit)";
Václav Kubernát812ee282018-08-30 17:10:03 +0200127 bool operator==(const set_& b) const;
128};
129
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200130struct get_ : x3::position_tagged {
Václav Kubernát57272422019-02-08 12:48:24 +0100131 static constexpr auto name = "get";
Václav Kubernát054cc992019-02-21 14:23:52 +0100132 static constexpr auto shortHelp = "get - Retrieve configuration from the server.";
133 static constexpr auto longHelp = R"(
134 get [path]
135
136 Retrieves configuration of the current node. Works recursively.
137 Optionally takes an argument specifying a path, the output will,
138 as if the user was in that node.
139
140 Usage:
141 /> get
142 /> get /module:path)";
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200143 bool operator==(const get_& b) const;
Václav Kubernát9456b5c2019-10-02 21:14:52 +0200144 boost::optional<boost::variant<boost::variant<dataPath_, schemaPath_>, module_>> m_path;
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200145};
Václav Kubernát812ee282018-08-30 17:10:03 +0200146
Václav Kubernát9cfcd872020-02-18 12:34:02 +0100147struct describe_ : x3::position_tagged {
148 static constexpr auto name = "describe";
149 static constexpr auto shortHelp = "describe - Print information about YANG tree path.";
150 static constexpr auto longHelp = R"(
151 describe <path>
152
153 Show documentation of YANG tree paths. In the YANG model, each item may
154 have an optional `description` which often explains the function of that
155 node to the end user. This command takes the description from the YANG
156 model and shows it to the user along with additional data, such as the type
157 of the node, units of leaf values, etc.
158
159 Usage:
160 /> describe /module:node)";
161 bool operator==(const describe_& b) const;
162
163 boost::variant<schemaPath_, dataPath_> m_path;
164};
165
Václav Kubernát054cc992019-02-21 14:23:52 +0100166struct help_;
Jan Kundrátc6a6bc82020-02-26 16:19:50 +0100167using CommandTypes = boost::mpl::vector<cd_, commit_, create_, delete_, describe_, discard_, get_, help_, ls_, set_>;
Václav Kubernát054cc992019-02-21 14:23:52 +0100168struct help_ : x3::position_tagged {
169 static constexpr auto name = "help";
170 static constexpr auto shortHelp = "help - Print help for commands.";
171 static constexpr auto longHelp = R"(
172 help [command_name]
173
174 Print help for command_name. If used without an argument,
175 print short help for all commands.
176
177 Usage:
178 /> help
179 /> help cd
180 /> help help)";
181 bool operator==(const help_& b) const;
182
183 // The help command has got one optional argument – a command name (type).
184 // All commands are saved in CommandTypes, so we could just use that, but
185 // that way, Spirit would be default constructing the command structs,
186 // which is undesirable, so firstly we use mpl::transform to wrap
187 // CommandTypes with boost::type:
188 using WrappedCommandTypes = boost::mpl::transform<CommandTypes, boost::type<boost::mpl::_>>::type;
189 // Next, we create a variant over the wrapped types:
190 using CommandTypesVariant = boost::make_variant_over<WrappedCommandTypes>::type;
191 // Finally, we wrap the variant with boost::optional:
192 boost::optional<CommandTypesVariant> m_cmd;
193};
194
Václav Kubernát57272422019-02-08 12:48:24 +0100195// TODO: The usage of MPL won't be necessary after std::variant support is added to Spirit
196// https://github.com/boostorg/spirit/issues/270
Václav Kubernát57272422019-02-08 12:48:24 +0100197using command_ = boost::make_variant_over<CommandTypes>::type;
Václav Kubernát24df80e2018-06-06 15:18:03 +0200198
Václav Kubernáte7d4aea2018-09-11 18:15:48 +0200199BOOST_FUSION_ADAPT_STRUCT(ls_, m_options, m_path)
Václav Kubernát24df80e2018-06-06 15:18:03 +0200200BOOST_FUSION_ADAPT_STRUCT(cd_, m_path)
201BOOST_FUSION_ADAPT_STRUCT(create_, m_path)
202BOOST_FUSION_ADAPT_STRUCT(delete_, m_path)
Václav Kubernát24df80e2018-06-06 15:18:03 +0200203BOOST_FUSION_ADAPT_STRUCT(set_, m_path, m_data)
Václav Kubernátab538992019-03-06 15:30:50 +0100204BOOST_FUSION_ADAPT_STRUCT(enum_, m_value)
205BOOST_FUSION_ADAPT_STRUCT(binary_, m_value)
Václav Kubernáteeb38842019-03-20 19:46:05 +0100206BOOST_FUSION_ADAPT_STRUCT(identityRef_, m_prefix, m_value)
Václav Kubernát812ee282018-08-30 17:10:03 +0200207BOOST_FUSION_ADAPT_STRUCT(commit_)
Václav Kubernát9cfcd872020-02-18 12:34:02 +0100208BOOST_FUSION_ADAPT_STRUCT(describe_, m_path)
Václav Kubernát054cc992019-02-21 14:23:52 +0100209BOOST_FUSION_ADAPT_STRUCT(help_, m_cmd)
Václav Kubernát6d791432018-10-25 16:00:35 +0200210BOOST_FUSION_ADAPT_STRUCT(discard_)
Václav Kubernátb6ff0b62018-08-30 16:14:53 +0200211BOOST_FUSION_ADAPT_STRUCT(get_, m_path)