blob: 436ca3414a283245d06c3db07677c6fdf3cf1170 [file] [log] [blame]
Václav Kubernát96344a12018-05-28 16:33:39 +02001/*
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*/
8
Václav Kubernátb61336d2018-05-28 17:35:03 +02009#include <iostream>
Václav Kubernát6415b822018-08-22 17:40:01 +020010#include "datastore_access.hpp"
Václav Kubernát96344a12018-05-28 16:33:39 +020011#include "interpreter.hpp"
12
Václav Kubernátebca2552018-06-08 19:06:02 +020013struct leafDataToString : boost::static_visitor<std::string> {
14 std::string operator()(const enum_& data) const
15 {
16 return data.m_value;
17 }
18 template <typename T>
19 std::string operator()(const T& data) const
20 {
21 std::stringstream stream;
22 stream << data;
23 return stream.str();
24 }
25};
26
Václav Kubernát812ee282018-08-30 17:10:03 +020027void Interpreter::operator()(const commit_&) const
28{
29 m_datastore.commitChanges();
30}
31
Václav Kubernát07204242018-06-04 18:12:09 +020032void Interpreter::operator()(const set_& set) const
33{
Václav Kubernát6415b822018-08-22 17:40:01 +020034 m_datastore.setLeaf(absolutePathFromCommand(set), set.m_data);
Václav Kubernát07204242018-06-04 18:12:09 +020035}
36
Václav Kubernát96344a12018-05-28 16:33:39 +020037void Interpreter::operator()(const cd_& cd) const
38{
39 m_parser.changeNode(cd.m_path);
40}
41
Václav Kubernátb61336d2018-05-28 17:35:03 +020042void Interpreter::operator()(const create_& create) const
43{
Václav Kubernát6415b822018-08-22 17:40:01 +020044 m_datastore.createPresenceContainer(absolutePathFromCommand(create));
Václav Kubernátb61336d2018-05-28 17:35:03 +020045}
46
47void Interpreter::operator()(const delete_& delet) const
48{
Václav Kubernát6415b822018-08-22 17:40:01 +020049 m_datastore.deletePresenceContainer(absolutePathFromCommand(delet));
Václav Kubernátb61336d2018-05-28 17:35:03 +020050}
51
Václav Kubernát11afac72018-07-18 14:59:53 +020052void Interpreter::operator()(const ls_& ls) const
53{
54 std::cout << "Possible nodes:" << std::endl;
55
56 for (const auto& it : m_parser.availableNodes(ls.m_path))
57 std::cout << it << std::endl;
58}
59
Václav Kubernát6415b822018-08-22 17:40:01 +020060template <typename T>
61std::string Interpreter::absolutePathFromCommand(const T& command) const
62{
63 return joinPaths(m_parser.currentNode(), pathToDataString(command.m_path));
64}
65
66Interpreter::Interpreter(Parser& parser, DatastoreAccess& datastore)
Václav Kubernát812ee282018-08-30 17:10:03 +020067 : m_parser(parser)
68 , m_datastore(datastore)
Václav Kubernát96344a12018-05-28 16:33:39 +020069{
70}