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 | |
Václav Kubernát | e2e15ee | 2020-02-05 17:38:13 +0100 | [diff] [blame] | 10 | #include <libnetconf2/log.h> |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 11 | #include <string> |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 12 | #include "datastore_access.hpp" |
| 13 | |
| 14 | /*! \class NetconfAccess |
| 15 | * \brief Implementation of DatastoreAccess for accessing a NETCONF server |
| 16 | */ |
| 17 | |
| 18 | namespace libnetconf { |
| 19 | namespace client { |
| 20 | class Session; |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | namespace libyang { |
| 25 | class Data_Node; |
| 26 | } |
| 27 | |
| 28 | class Schema; |
| 29 | class YangSchema; |
| 30 | |
Václav Kubernát | e2e15ee | 2020-02-05 17:38:13 +0100 | [diff] [blame] | 31 | using LogCb = std::function<void(NC_VERB_LEVEL, const char*)>; |
| 32 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 33 | class NetconfAccess : public DatastoreAccess { |
| 34 | public: |
| 35 | NetconfAccess(const std::string& hostname, uint16_t port, const std::string& user, const std::string& pubKey, const std::string& privKey); |
| 36 | NetconfAccess(const std::string& socketPath); |
Václav Kubernát | 7a9463f | 2020-10-30 08:57:59 +0100 | [diff] [blame] | 37 | NetconfAccess(const int source, const int sink); |
Jan Kundrát | dab815e | 2020-01-22 19:44:11 +0100 | [diff] [blame] | 38 | NetconfAccess(std::unique_ptr<libnetconf::client::Session>&& session); |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 39 | ~NetconfAccess() override; |
Václav Kubernát | 59e4ee4 | 2020-07-08 17:32:45 +0200 | [diff] [blame] | 40 | [[nodiscard]] Tree getItems(const std::string& path) const override; |
Václav Kubernát | e2e15ee | 2020-02-05 17:38:13 +0100 | [diff] [blame] | 41 | |
| 42 | static void setNcLogLevel(NC_VERB_LEVEL level); |
| 43 | static void setNcLogCallback(const LogCb& callback); |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 44 | void setLeaf(const std::string& path, leaf_data_ value) override; |
Jan Kundrát | cbf288b | 2020-06-18 20:44:39 +0200 | [diff] [blame] | 45 | void createItem(const std::string& path) override; |
| 46 | void deleteItem(const std::string& path) override; |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 47 | void moveItem(const std::string& path, std::variant<yang::move::Absolute, yang::move::Relative> move) override; |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 48 | void commitChanges() override; |
| 49 | void discardChanges() override; |
Jan Kundrát | 6ee8479 | 2020-01-24 01:43:36 +0100 | [diff] [blame] | 50 | Tree executeRpc(const std::string& path, const Tree& input) override; |
Václav Kubernát | a878960 | 2020-07-20 15:18:19 +0200 | [diff] [blame] | 51 | Tree executeAction(const std::string& path, const Tree& input) override; |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 52 | void copyConfig(const Datastore source, const Datastore destination) override; |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 53 | |
| 54 | std::shared_ptr<Schema> schema() override; |
| 55 | |
Václav Kubernát | 59e4ee4 | 2020-07-08 17:32:45 +0200 | [diff] [blame] | 56 | [[nodiscard]] std::string dump(const DataFormat format) const override; |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 57 | |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 58 | private: |
Václav Kubernát | c15fe82 | 2020-06-04 11:28:39 +0200 | [diff] [blame] | 59 | std::vector<ListInstance> listInstances(const std::string& path) override; |
Václav Kubernát | a878960 | 2020-07-20 15:18:19 +0200 | [diff] [blame] | 60 | DatastoreAccess::Tree impl_execute(const std::string& path, const Tree& input); |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 61 | |
Václav Kubernát | b52dc25 | 2019-12-04 13:03:39 +0100 | [diff] [blame] | 62 | std::string fetchSchema(const std::string_view module, const |
| 63 | std::optional<std::string_view> revision, const |
| 64 | std::optional<std::string_view> submodule, const |
| 65 | std::optional<std::string_view> submoduleRevision); |
Václav Kubernát | c31bd60 | 2019-03-07 11:44:48 +0100 | [diff] [blame] | 66 | std::vector<std::string> listImplementedSchemas(); |
| 67 | void datastoreInit(); |
| 68 | void doEditFromDataNode(std::shared_ptr<libyang::Data_Node> dataNode); |
| 69 | |
| 70 | std::unique_ptr<libnetconf::client::Session> m_session; |
| 71 | std::shared_ptr<YangSchema> m_schema; |
| 72 | }; |