| /* |
| * 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 <string> |
| #include "ast_commands.hpp" |
| #include "datastore_access.hpp" |
| |
| /*! \class DatastoreAccess |
| * \brief Abstract class for accessing a datastore |
| */ |
| |
| namespace sysrepo { |
| class Connection; |
| class Session; |
| } |
| |
| class Schema; |
| class YangSchema; |
| |
| class SysrepoAccess : public DatastoreAccess { |
| public: |
| ~SysrepoAccess() override; |
| SysrepoAccess(const std::string& appname); |
| std::map<std::string, leaf_data_> getItems(const std::string& path) override; |
| void setLeaf(const std::string& path, leaf_data_ value) override; |
| void createPresenceContainer(const std::string& path) override; |
| void deletePresenceContainer(const std::string& path) override; |
| std::string fetchSchema(const char* module, const char* revision, const char* submodule); |
| std::vector<std::string> listImplementedSchemas(); |
| |
| void commitChanges() override; |
| void discardChanges() override; |
| |
| std::shared_ptr<Schema> schema(); |
| |
| private: |
| std::shared_ptr<sysrepo::Connection> m_connection; |
| std::shared_ptr<sysrepo::Session> m_session; |
| std::shared_ptr<YangSchema> m_schema; |
| }; |