Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2019 CESNET, https://photonics.cesnet.cz/ |
| 3 | * |
| 4 | * Written by Václav Kubernát <kubernat@cesnet.cz> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #pragma once |
| 9 | |
| 10 | #include <string> |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 11 | #include "datastore_access.hpp" |
| 12 | |
| 13 | /*! \class NetconfAccess |
| 14 | * \brief Implementation of DatastoreAccess for accessing a NETCONF server |
| 15 | */ |
| 16 | |
| 17 | namespace libnetconf { |
| 18 | namespace client { |
| 19 | class Session; |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | namespace libyang { |
| 24 | class Data_Node; |
| 25 | } |
| 26 | |
| 27 | class Schema; |
| 28 | class YangSchema; |
| 29 | |
| 30 | class NetconfAccess : public DatastoreAccess { |
| 31 | public: |
| 32 | NetconfAccess(const std::string& hostname, uint16_t port, const std::string& user, const std::string& pubKey, const std::string& privKey); |
| 33 | NetconfAccess(const std::string& socketPath); |
| 34 | ~NetconfAccess() override; |
| 35 | std::map<std::string, leaf_data_> getItems(const std::string& path) override; |
| 36 | void setLeaf(const std::string& path, leaf_data_ value) override; |
| 37 | void createPresenceContainer(const std::string& path) override; |
| 38 | void deletePresenceContainer(const std::string& path) override; |
| 39 | void createListInstance(const std::string& path) override; |
| 40 | void deleteListInstance(const std::string& path) override; |
| 41 | void commitChanges() override; |
| 42 | void discardChanges() override; |
| 43 | |
| 44 | std::shared_ptr<Schema> schema() override; |
| 45 | |
| 46 | private: |
Václav Kubernát | b52dc25 | 2019-12-04 13:03:39 +0100 | [diff] [blame^] | 47 | std::string fetchSchema(const std::string_view module, const |
| 48 | std::optional<std::string_view> revision, const |
| 49 | std::optional<std::string_view> submodule, const |
| 50 | std::optional<std::string_view> submoduleRevision); |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 51 | std::vector<std::string> listImplementedSchemas(); |
| 52 | void datastoreInit(); |
| 53 | void doEditFromDataNode(std::shared_ptr<libyang::Data_Node> dataNode); |
| 54 | |
| 55 | std::unique_ptr<libnetconf::client::Session> m_session; |
| 56 | std::shared_ptr<YangSchema> m_schema; |
| 57 | }; |