blob: 7384f33b17617ff3298ef2e640b2dc7a118fc933 [file] [log] [blame]
Jan Kundrátdc2b0722018-03-02 14:13:37 +01001/*
2 * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/
Jan Kundráta2740442018-03-22 16:56:43 +01003 * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/
Jan Kundrátdc2b0722018-03-02 14:13:37 +01004 *
Václav Kubernát624a8872018-03-02 17:28:47 +01005 * Written by Václav Kubernát <kubervac@fit.cvut.cz>
Jan Kundrátdc2b0722018-03-02 14:13:37 +01006 *
7*/
Jan Kundrátdc2b0722018-03-02 14:13:37 +01008#include <docopt.h>
Václav Kubernát624a8872018-03-02 17:28:47 +01009#include <iostream>
Václav Kubernát435706e2019-02-20 18:05:59 +010010#include <optional>
Václav Kubernáta395d332019-02-13 16:49:20 +010011#include <replxx.hxx>
Václav Kubernát90de9502019-11-20 17:19:44 +010012#include <sstream>
Jan Kundrátdc2b0722018-03-02 14:13:37 +010013#include "NETCONF_CLI_VERSION.h"
Václav Kubernát96344a12018-05-28 16:33:39 +020014#include "interpreter.hpp"
Václav Kubernátb79f3ca2020-02-04 15:56:01 +010015#if defined(SYSREPO_CLI)
Václav Kubernát6415b822018-08-22 17:40:01 +020016#include "sysrepo_access.hpp"
Václav Kubernátb79f3ca2020-02-04 15:56:01 +010017#define PROGRAM_NAME "sysrepo-cli"
18#define PROGRAM_DESCRIPTION R"(CLI interface to sysrepo \
19\
20Usage: \
21 sysrepo-cli \
22 sysrepo-cli (-h | --help) \
23 sysrepo-cli --version \
24)"
25#else
26#error "Unknown CLI backend"
27#endif
Jan Kundrátdc2b0722018-03-02 14:13:37 +010028
Václav Kubernát624a8872018-03-02 17:28:47 +010029
Jan Kundrátdc2b0722018-03-02 14:13:37 +010030
Václav Kubernátb79f3ca2020-02-04 15:56:01 +010031
32const auto HISTORY_FILE_NAME = PROGRAM_NAME "_history";
33
34static const char usage[] = PROGRAM_DESCRIPTION;
Jan Kundrátdc2b0722018-03-02 14:13:37 +010035
Václav Kubernát624a8872018-03-02 17:28:47 +010036
Jan Kundrátdc2b0722018-03-02 14:13:37 +010037int main(int argc, char* argv[])
38{
39 auto args = docopt::docopt(usage,
40 {argv + 1, argv + argc},
41 true,
Václav Kubernátb79f3ca2020-02-04 15:56:01 +010042 PROGRAM_NAME " " NETCONF_CLI_VERSION,
Jan Kundrátdc2b0722018-03-02 14:13:37 +010043 true);
Václav Kubernátb79f3ca2020-02-04 15:56:01 +010044 std::cout << "Welcome to " PROGRAM_NAME << std::endl;
Václav Kubernátff2c9f62018-05-16 20:26:31 +020045
Václav Kubernátb79f3ca2020-02-04 15:56:01 +010046#if defined(SYSREPO_CLI)
47 SysrepoAccess datastore(PROGRAM_NAME);
48#else
49#error "Unknown CLI backend"
50#endif
51
Václav Kubernát43908fb2020-01-02 19:05:51 +010052 auto dataQuery = std::make_shared<DataQuery>(datastore);
53 Parser parser(datastore.schema(), dataQuery);
Václav Kubernát395d92c2020-01-24 12:18:18 +010054
55 using replxx::Replxx;
56
57 Replxx lineEditor;
58
59 lineEditor.bind_key(Replxx::KEY::meta(Replxx::KEY::BACKSPACE), std::bind(&Replxx::invoke, &lineEditor, Replxx::ACTION::KILL_TO_BEGINING_OF_WORD, std::placeholders::_1));
60 lineEditor.bind_key(Replxx::KEY::control('W'), std::bind(&Replxx::invoke, &lineEditor, Replxx::ACTION::KILL_TO_WHITESPACE_ON_LEFT, std::placeholders::_1));
61
62 lineEditor.set_word_break_characters("\t _[]/:'\"=-%");
63
Václav Kubernát1ed4aa32020-01-23 13:13:28 +010064 lineEditor.set_completion_callback([&parser](const std::string& input, int& context) {
Václav Kubernáta395d332019-02-13 16:49:20 +010065 std::stringstream stream;
Václav Kubernát1ed4aa32020-01-23 13:13:28 +010066 auto completions = parser.completeCommand(input, stream);
Václav Kubernáta395d332019-02-13 16:49:20 +010067
Jan Kundrát8d8efe82019-10-18 10:21:36 +020068 std::vector<replxx::Replxx::Completion> res;
Václav Kubernát1ed4aa32020-01-23 13:13:28 +010069 std::copy(completions.m_completions.begin(), completions.m_completions.end(), std::back_inserter(res));
70 context = completions.m_contextLength;
Václav Kubernáta395d332019-02-13 16:49:20 +010071 return res;
72 });
Václav Kubernát2b684612018-08-09 18:55:24 +020073
Václav Kubernát435706e2019-02-20 18:05:59 +010074 std::optional<std::string> historyFile;
75 if (auto xdgHome = getenv("XDG_DATA_HOME")) {
76 historyFile = std::string(xdgHome) + "/" + HISTORY_FILE_NAME;
77 } else if (auto home = getenv("HOME")) {
78 historyFile = std::string(home) + "/.local/share/" + HISTORY_FILE_NAME;
79 }
80
81 if (historyFile)
82 lineEditor.history_load(historyFile.value());
83
Václav Kubernátff2c9f62018-05-16 20:26:31 +020084 while (true) {
Václav Kubernáta395d332019-02-13 16:49:20 +010085 auto line = lineEditor.input(parser.currentNode() + "> ");
86 if (!line) {
Václav Kubernát82bf1312019-11-05 11:19:26 +010087 // If user pressed CTRL-C to abort the line, errno gets set to EAGAIN.
88 // If user pressed CTRL-D (for EOF), errno doesn't get set to EAGAIN, so we exit the program.
89 // I have no idea why replxx uses errno for this.
90 if (errno == EAGAIN) {
91 continue;
92 } else {
93 break;
94 }
Václav Kubernát5b80e522019-01-25 12:17:03 +010095 }
Václav Kubernátff2c9f62018-05-16 20:26:31 +020096
Jan Kundráte3877022018-09-05 15:32:09 +020097 std::locale C_locale("C");
Václav Kubernáta395d332019-02-13 16:49:20 +010098 std::string_view view{line};
99 if (std::all_of(view.begin(), view.end(),
Jan Kundráte3877022018-09-05 15:32:09 +0200100 [C_locale](const auto c) { return std::isspace(c, C_locale);})) {
101 continue;
102 }
103
Václav Kubernátff2c9f62018-05-16 20:26:31 +0200104 try {
Václav Kubernát5b80e522019-01-25 12:17:03 +0100105 command_ cmd = parser.parseCommand(line, std::cout);
Václav Kubernát6415b822018-08-22 17:40:01 +0200106 boost::apply_visitor(Interpreter(parser, datastore), cmd);
Václav Kubernátff2c9f62018-05-16 20:26:31 +0200107 } catch (InvalidCommandException& ex) {
108 std::cerr << ex.what() << std::endl;
Václav Kubernátc58e4aa2019-04-03 18:37:32 +0200109 } catch (DatastoreException& ex) {
110 std::cerr << ex.what() << std::endl;
Václav Kubernátff2c9f62018-05-16 20:26:31 +0200111 }
Václav Kubernát5b80e522019-01-25 12:17:03 +0100112
Václav Kubernáta395d332019-02-13 16:49:20 +0100113 lineEditor.history_add(line);
Václav Kubernátff2c9f62018-05-16 20:26:31 +0200114 }
115
Václav Kubernát435706e2019-02-20 18:05:59 +0100116 if (historyFile)
117 lineEditor.history_save(historyFile.value());
118
Jan Kundrátdc2b0722018-03-02 14:13:37 +0100119 return 0;
120}