Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/ |
Jan Kundrát | a274044 | 2018-03-22 16:56:43 +0100 | [diff] [blame] | 3 | * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/ |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 4 | * |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 5 | * Written by Václav Kubernát <kubervac@fit.cvut.cz> |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 6 | * |
| 7 | */ |
| 8 | |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 9 | #include <boost/spirit/home/x3.hpp> |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 10 | #include <docopt.h> |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 11 | #include <iostream> |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 12 | #include <string> |
| 13 | #include "NETCONF_CLI_VERSION.h" |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame^] | 14 | #include "interpreter.hpp" |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 15 | #include "parser.hpp" |
| 16 | #include "schema.hpp" |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 17 | |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 18 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 19 | static const char usage[] = |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 20 | R"(CLI interface to remote NETCONF hosts |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 21 | |
| 22 | Usage: |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 23 | netconf-cli |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 24 | netconf-cli (-h | --help) |
| 25 | netconf-cli --version |
| 26 | )"; |
| 27 | |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 28 | namespace x3 = boost::spirit::x3; |
| 29 | namespace ascii = boost::spirit::x3::ascii; |
| 30 | |
| 31 | using Cmd = std::vector<std::string>; |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 32 | using ascii::space; |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 33 | using x3::_attr; |
| 34 | using x3::alpha; |
| 35 | using x3::char_; |
| 36 | using x3::lexeme; |
| 37 | using x3::lit; |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 38 | |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame^] | 39 | using command = boost::variant<cd_>; |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 40 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 41 | int main(int argc, char* argv[]) |
| 42 | { |
| 43 | auto args = docopt::docopt(usage, |
| 44 | {argv + 1, argv + argc}, |
| 45 | true, |
| 46 | "netconf-cli " NETCONF_CLI_VERSION, |
| 47 | true); |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame] | 48 | std::cout << "Welcome to netconf-cli" << std::endl; |
Václav Kubernát | ff2c9f6 | 2018-05-16 20:26:31 +0200 | [diff] [blame] | 49 | |
Václav Kubernát | 48fc383 | 2018-05-28 14:21:22 +0200 | [diff] [blame] | 50 | Schema schema; |
| 51 | schema.addContainer("", "a"); |
| 52 | schema.addContainer("", "b"); |
| 53 | schema.addContainer("a", "a2"); |
| 54 | schema.addContainer("b", "b2"); |
| 55 | schema.addContainer("a/a2", "a3"); |
| 56 | schema.addContainer("b/b2", "b3"); |
| 57 | schema.addList("", "list", {"number"}); |
| 58 | schema.addContainer("list", "contInList"); |
| 59 | schema.addList("", "twoKeyList", {"number", "name"}); |
| 60 | Parser parser(schema); |
Václav Kubernát | ff2c9f6 | 2018-05-16 20:26:31 +0200 | [diff] [blame] | 61 | |
| 62 | while (true) { |
Václav Kubernát | f2e463f | 2018-05-28 15:51:08 +0200 | [diff] [blame] | 63 | std::cout << parser.currentNode() << "> "; |
Václav Kubernát | ff2c9f6 | 2018-05-16 20:26:31 +0200 | [diff] [blame] | 64 | std::string input; |
| 65 | std::getline(std::cin, input); |
| 66 | if (std::cin.eof()) |
| 67 | break; |
| 68 | |
| 69 | try { |
Václav Kubernát | 96344a1 | 2018-05-28 16:33:39 +0200 | [diff] [blame^] | 70 | command cmd = parser.parseCommand(input, std::cout); |
| 71 | boost::apply_visitor(Interpreter(parser), cmd); |
Václav Kubernát | ff2c9f6 | 2018-05-16 20:26:31 +0200 | [diff] [blame] | 72 | } catch (InvalidCommandException& ex) { |
| 73 | std::cerr << ex.what() << std::endl; |
| 74 | } |
| 75 | } |
| 76 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 77 | return 0; |
| 78 | } |