blob: e7650cd17c0aeb5323fbc2a52dfbb125d608a521 [file] [log] [blame]
Václav Kubernát48e9dfa2020-07-08 10:55:12 +02001/*
2 * Copyright (C) 2020 CESNET, https://photonics.cesnet.cz/
3 *
4 * Written by Václav Kubernát <kubernat@cesnet.cz>
5 *
6*/
7
8#pragma once
9#include "datastore_access.hpp"
Václav Kubernáte7248b22020-06-26 15:38:59 +020010#include "yang_access.hpp"
Václav Kubernát48e9dfa2020-07-08 10:55:12 +020011
12/*! \class ProxyDatastore
13 * \brief DatastoreAccess wrapper that handles RPC input
14 */
15class ProxyDatastore {
16public:
Václav Kubernáte7248b22020-06-26 15:38:59 +020017 /**
18 * The createTemporaryDatastore function should create a temporary datastore that's going to be used for RPC input.
19 * This temporary datastore and the main datastore are supposed share the same schemas.
20 * */
21 ProxyDatastore(const std::shared_ptr<DatastoreAccess>& datastore, std::function<std::shared_ptr<DatastoreAccess>(const std::shared_ptr<DatastoreAccess>&)> createTemporaryDatastore);
Václav Kubernát48e9dfa2020-07-08 10:55:12 +020022 [[nodiscard]] DatastoreAccess::Tree getItems(const std::string& path) const;
23 void setLeaf(const std::string& path, leaf_data_ value);
24 void createItem(const std::string& path);
25 void deleteItem(const std::string& path);
26 void moveItem(const std::string& source, std::variant<yang::move::Absolute, yang::move::Relative> move);
27 void commitChanges();
28 void discardChanges();
29 void copyConfig(const Datastore source, const Datastore destination);
30 [[nodiscard]] std::string dump(const DataFormat format) const;
31
Václav Kubernáte7248b22020-06-26 15:38:59 +020032 void initiateRpc(const std::string& rpcPath);
Václav Kubernátaa4250a2020-07-22 00:02:23 +020033 void initiateAction(const std::string& actionPath);
34 [[nodiscard]] DatastoreAccess::Tree execute();
35 void cancel();
Václav Kubernáte7248b22020-06-26 15:38:59 +020036
Václav Kubernát48e9dfa2020-07-08 10:55:12 +020037 [[nodiscard]] std::shared_ptr<Schema> schema() const;
Václav Kubernátb4e5b182020-11-16 19:55:09 +010038
Václav Kubernát48e9dfa2020-07-08 10:55:12 +020039private:
Václav Kubernáte7248b22020-06-26 15:38:59 +020040 /** @brief Picks a datastore based on the requested path.
41 *
42 * If the path starts with a currently processed RPC, m_inputDatastore is picked.
43 * Otherwise m_datastore is picked.
44 */
45 [[nodiscard]] std::shared_ptr<DatastoreAccess> pickDatastore(const std::string& path) const;
46
Václav Kubernát48e9dfa2020-07-08 10:55:12 +020047 std::shared_ptr<DatastoreAccess> m_datastore;
Václav Kubernáte7248b22020-06-26 15:38:59 +020048 std::function<std::shared_ptr<DatastoreAccess>(const std::shared_ptr<DatastoreAccess>&)> m_createTemporaryDatastore;
49 std::shared_ptr<DatastoreAccess> m_inputDatastore;
Václav Kubernátaa4250a2020-07-22 00:02:23 +020050
51 struct RpcInput {
52 std::string m_path;
53 };
54
55 struct ActionInput {
56 std::string m_path;
57 };
58 // This variant is needed, so that I know whether to call executeRpc or executeAction
59 // TODO: get rid of this variant with sysrepo2 because the method for RPC/action is the same there
60 std::variant<ActionInput, RpcInput> m_inputPath;
Václav Kubernát48e9dfa2020-07-08 10:55:12 +020061};