| /* |
| * Copyright (C) 2018 CESNET, https://photonics.cesnet.cz/ |
| * Copyright (C) 2018 FIT CVUT, https://fit.cvut.cz/ |
| * |
| * Written by Václav Kubernát <kubervac@fit.cvut.cz> |
| * |
| */ |
| |
| #pragma once |
| #include "ast_commands.hpp" |
| #include "ast_path.hpp" |
| #include "data_query.hpp" |
| #include "schema.hpp" |
| |
| |
| class InvalidCommandException : public std::invalid_argument { |
| public: |
| using std::invalid_argument::invalid_argument; |
| ~InvalidCommandException() override; |
| }; |
| |
| class TooManyArgumentsException : public std::invalid_argument { |
| public: |
| using std::invalid_argument::invalid_argument; |
| ~TooManyArgumentsException() override; |
| }; |
| |
| struct Completions { |
| bool operator==(const Completions& b) const; |
| std::set<std::string> m_completions; |
| int m_contextLength; |
| }; |
| |
| class Parser { |
| public: |
| Parser(const std::shared_ptr<const Schema> schema, const std::shared_ptr<const DataQuery> dataQuery = nullptr); |
| command_ parseCommand(const std::string& line, std::ostream& errorStream); |
| void changeNode(const dataPath_& name); |
| std::string currentNode() const; |
| Completions completeCommand(const std::string& line, std::ostream& errorStream) const; |
| dataPath_ currentPath(); |
| |
| private: |
| const std::shared_ptr<const Schema> m_schema; |
| const std::shared_ptr<const DataQuery> m_dataquery; |
| dataPath_ m_curDir; |
| }; |