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> |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame^] | 13 | #include "CParser.hpp" |
| 14 | #include "CTree.hpp" |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 15 | #include "NETCONF_CLI_VERSION.h" |
| 16 | |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame^] | 17 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 18 | static const char usage[] = |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame^] | 19 | R"(CLI interface to remote NETCONF hosts |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 20 | |
| 21 | Usage: |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame^] | 22 | netconf-cli |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 23 | netconf-cli (-h | --help) |
| 24 | netconf-cli --version |
| 25 | )"; |
| 26 | |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame^] | 27 | namespace x3 = boost::spirit::x3; |
| 28 | namespace ascii = boost::spirit::x3::ascii; |
| 29 | |
| 30 | using Cmd = std::vector<std::string>; |
| 31 | using x3::alpha; |
| 32 | using x3::lit; |
| 33 | using x3::char_; |
| 34 | using x3::_attr; |
| 35 | using x3::lexeme; |
| 36 | using ascii::space; |
| 37 | |
| 38 | |
| 39 | std::string getInput() |
| 40 | { |
| 41 | std::string line; |
| 42 | std::getline(std::cin, line); |
| 43 | return line; |
| 44 | } |
| 45 | |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 46 | int main(int argc, char* argv[]) |
| 47 | { |
| 48 | auto args = docopt::docopt(usage, |
| 49 | {argv + 1, argv + argc}, |
| 50 | true, |
| 51 | "netconf-cli " NETCONF_CLI_VERSION, |
| 52 | true); |
Václav Kubernát | 624a887 | 2018-03-02 17:28:47 +0100 | [diff] [blame^] | 53 | std::cout << "Welcome to netconf-cli" << std::endl; |
Jan Kundrát | dc2b072 | 2018-03-02 14:13:37 +0100 | [diff] [blame] | 54 | return 0; |
| 55 | } |