blob: 357970f3fd91dad19b99eb6665e44f5811786c60 [file] [log] [blame]
Václav Kubernátd6662962018-03-22 17:41:33 +01001/*
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*/
Václav Kubernát2315c732018-05-16 20:25:55 +02008#include <ostream>
Václav Kubernát624a8872018-03-02 17:28:47 +01009#include "CParser.hpp"
10
11TooManyArgumentsException::~TooManyArgumentsException() = default;
12
Václav Kubernátb96eef72018-05-04 19:10:22 +020013InvalidCommandException::~InvalidCommandException() = default;
14
Václav Kubernát2a9e1792018-05-28 12:53:48 +020015struct nodeToString : public boost::static_visitor<std::string> {
16 std::string operator()(const nodeup_&) const
17 {
18 return "..";
19 }
20 template <class T>
21 std::string operator()(const T& node) const
22 {
23 return node.m_name;
24 }
25};
26
Václav Kubernát624a8872018-03-02 17:28:47 +010027CParser::CParser(const CTree& tree)
28 : m_tree(tree)
29{
30}
31
Václav Kubernát2315c732018-05-16 20:25:55 +020032cd_ CParser::parseCommand(const std::string& line, std::ostream& errorStream)
Václav Kubernát624a8872018-03-02 17:28:47 +010033{
Václav Kubernátd6662962018-03-22 17:41:33 +010034 cd_ parsedCommand;
Václav Kubernát2a9e1792018-05-28 12:53:48 +020035 ParserContext ctx(m_tree, m_curDir);
Václav Kubernát624a8872018-03-02 17:28:47 +010036 auto it = line.begin();
Václav Kubernátd6662962018-03-22 17:41:33 +010037
Václav Kubernát2315c732018-05-16 20:25:55 +020038 boost::spirit::x3::error_handler<std::string::const_iterator> errorHandler(it, line.end(), errorStream);
39
Václav Kubernátb96eef72018-05-04 19:10:22 +020040 auto grammar =
41 x3::with<parser_context_tag>(ctx)[
42 x3::with<x3::error_handler_tag>(std::ref(errorHandler))[cd]
43 ];
44 bool result = x3::phrase_parse(it, line.end(), grammar, space, parsedCommand);
Václav Kubernátd6662962018-03-22 17:41:33 +010045
Václav Kubernátb96eef72018-05-04 19:10:22 +020046 if (!result || it != line.end()) {
47 throw InvalidCommandException(std::string(it, line.end()) + " this was left of input");
Václav Kubernát624a8872018-03-02 17:28:47 +010048 }
49
Václav Kubernátd6662962018-03-22 17:41:33 +010050 return parsedCommand;
Václav Kubernát624a8872018-03-02 17:28:47 +010051}
Václav Kubernát2a9e1792018-05-28 12:53:48 +020052
53void CParser::changeNode(const path_& name)
54{
55 if (name.m_nodes.empty()) {
56 m_curDir = "";
57 return;
58 }
59 for (const auto& it : name.m_nodes) {
60 const std::string node = boost::apply_visitor(nodeToString(), it);
61 if (node == "..") {
62 m_curDir = stripLastNodeFromPath(m_curDir);
63 } else {
64 m_curDir = joinPaths(m_curDir, boost::apply_visitor(nodeToString(), it));
65 }
66
67 }
68}
69std::string CParser::currentNode() const
70{
71 return m_curDir;
72}
73