Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 1 | /* |
| 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át | 19097f3 | 2020-10-05 10:08:29 +0200 | [diff] [blame] | 9 | #include <experimental/iterator> |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 10 | #include <libyang/Tree_Data.hpp> |
| 11 | #include <libyang/Tree_Schema.hpp> |
Václav Kubernát | 19097f3 | 2020-10-05 10:08:29 +0200 | [diff] [blame] | 12 | #include <sstream> |
Václav Kubernát | b4e5b18 | 2020-11-16 19:55:09 +0100 | [diff] [blame] | 13 | #include <sysrepo-cpp/Session.hpp> |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 14 | #include "libyang_utils.hpp" |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 15 | #include "sysrepo_access.hpp" |
Jan Kundrát | 6ee8479 | 2020-01-24 01:43:36 +0100 | [diff] [blame] | 16 | #include "utils.hpp" |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 17 | #include "yang_schema.hpp" |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 18 | |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 19 | const auto OPERATION_TIMEOUT_MS = 1000; |
| 20 | |
Jan Kundrát | 68d4a2c | 2018-10-01 17:17:09 +0200 | [diff] [blame] | 21 | leaf_data_ leafValueFromVal(const sysrepo::S_Val& value) |
Václav Kubernát | c89736b | 2018-08-30 16:14:05 +0200 | [diff] [blame] | 22 | { |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 23 | using namespace std::string_literals; |
Václav Kubernát | c89736b | 2018-08-30 16:14:05 +0200 | [diff] [blame] | 24 | switch (value->type()) { |
Ivona Oboňová | 88c78ca | 2019-07-02 18:40:07 +0200 | [diff] [blame] | 25 | case SR_INT8_T: |
| 26 | return value->data()->get_int8(); |
| 27 | case SR_UINT8_T: |
| 28 | return value->data()->get_uint8(); |
| 29 | case SR_INT16_T: |
| 30 | return value->data()->get_int16(); |
| 31 | case SR_UINT16_T: |
| 32 | return value->data()->get_uint16(); |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 33 | case SR_INT32_T: |
| 34 | return value->data()->get_int32(); |
| 35 | case SR_UINT32_T: |
| 36 | return value->data()->get_uint32(); |
Ivona Oboňová | 88c78ca | 2019-07-02 18:40:07 +0200 | [diff] [blame] | 37 | case SR_INT64_T: |
| 38 | return value->data()->get_int64(); |
| 39 | case SR_UINT64_T: |
| 40 | return value->data()->get_uint64(); |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 41 | case SR_BOOL_T: |
| 42 | return value->data()->get_bool(); |
| 43 | case SR_STRING_T: |
| 44 | return std::string(value->data()->get_string()); |
| 45 | case SR_ENUM_T: |
Václav Kubernát | 152ce22 | 2019-12-19 12:23:32 +0100 | [diff] [blame] | 46 | return enum_{std::string(value->data()->get_enum())}; |
Václav Kubernát | b4e5b18 | 2020-11-16 19:55:09 +0100 | [diff] [blame] | 47 | case SR_IDENTITYREF_T: { |
Jan Kundrát | 0d8abd1 | 2020-05-07 02:00:14 +0200 | [diff] [blame] | 48 | auto pair = splitModuleNode(value->data()->get_identityref()); |
| 49 | return identityRef_{*pair.first, pair.second}; |
| 50 | } |
Jan Kundrát | 6898544 | 2020-05-07 02:15:34 +0200 | [diff] [blame] | 51 | case SR_BINARY_T: |
| 52 | return binary_{value->data()->get_binary()}; |
Jan Kundrát | 379bb57 | 2020-05-07 03:23:13 +0200 | [diff] [blame] | 53 | case SR_LEAF_EMPTY_T: |
| 54 | return empty_{}; |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 55 | case SR_DECIMAL64_T: |
| 56 | return value->data()->get_decimal64(); |
| 57 | case SR_CONTAINER_T: |
Václav Kubernát | 144729d | 2020-01-08 15:20:35 +0100 | [diff] [blame] | 58 | return special_{SpecialValue::Container}; |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 59 | case SR_CONTAINER_PRESENCE_T: |
Václav Kubernát | 144729d | 2020-01-08 15:20:35 +0100 | [diff] [blame] | 60 | return special_{SpecialValue::PresenceContainer}; |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 61 | case SR_LIST_T: |
Václav Kubernát | 144729d | 2020-01-08 15:20:35 +0100 | [diff] [blame] | 62 | return special_{SpecialValue::List}; |
Václav Kubernát | b4e5b18 | 2020-11-16 19:55:09 +0100 | [diff] [blame] | 63 | case SR_BITS_T: { |
Václav Kubernát | 19097f3 | 2020-10-05 10:08:29 +0200 | [diff] [blame] | 64 | bits_ res; |
| 65 | std::istringstream ss(value->data()->get_bits()); |
| 66 | while (!ss.eof()) { |
| 67 | std::string bit; |
| 68 | ss >> bit; |
Václav Kubernát | 909d966 | 2020-10-30 00:06:34 +0100 | [diff] [blame] | 69 | res.m_bits.push_back(bit); |
Václav Kubernát | 19097f3 | 2020-10-05 10:08:29 +0200 | [diff] [blame] | 70 | } |
| 71 | return res; |
Václav Kubernát | 19097f3 | 2020-10-05 10:08:29 +0200 | [diff] [blame] | 72 | } |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 73 | default: // TODO: implement all types |
| 74 | return value->val_to_string(); |
Václav Kubernát | c89736b | 2018-08-30 16:14:05 +0200 | [diff] [blame] | 75 | } |
| 76 | } |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 77 | |
Jan Kundrát | 68d4a2c | 2018-10-01 17:17:09 +0200 | [diff] [blame] | 78 | struct valFromValue : boost::static_visitor<sysrepo::S_Val> { |
| 79 | sysrepo::S_Val operator()(const enum_& value) const |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 80 | { |
Jan Kundrát | 68d4a2c | 2018-10-01 17:17:09 +0200 | [diff] [blame] | 81 | return std::make_shared<sysrepo::Val>(value.m_value.c_str(), SR_ENUM_T); |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 82 | } |
| 83 | |
Václav Kubernát | ab53899 | 2019-03-06 15:30:50 +0100 | [diff] [blame] | 84 | sysrepo::S_Val operator()(const binary_& value) const |
| 85 | { |
| 86 | return std::make_shared<sysrepo::Val>(value.m_value.c_str(), SR_BINARY_T); |
| 87 | } |
| 88 | |
Jan Kundrát | 379bb57 | 2020-05-07 03:23:13 +0200 | [diff] [blame] | 89 | sysrepo::S_Val operator()(const empty_) const |
| 90 | { |
| 91 | return std::make_shared<sysrepo::Val>(nullptr, SR_LEAF_EMPTY_T); |
| 92 | } |
| 93 | |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 94 | sysrepo::S_Val operator()(const identityRef_& value) const |
| 95 | { |
Jan Kundrát | 0d8abd1 | 2020-05-07 02:00:14 +0200 | [diff] [blame] | 96 | auto res = value.m_prefix ? (value.m_prefix.value().m_name + ":" + value.m_value) : value.m_value; |
Václav Kubernát | eeb3884 | 2019-03-20 19:46:05 +0100 | [diff] [blame] | 97 | return std::make_shared<sysrepo::Val>(res.c_str(), SR_IDENTITYREF_T); |
| 98 | } |
| 99 | |
Václav Kubernát | 144729d | 2020-01-08 15:20:35 +0100 | [diff] [blame] | 100 | sysrepo::S_Val operator()(const special_& value) const |
| 101 | { |
| 102 | throw std::runtime_error("Tried constructing S_Val from a " + specialValueToString(value)); |
| 103 | } |
| 104 | |
Jan Kundrát | 68d4a2c | 2018-10-01 17:17:09 +0200 | [diff] [blame] | 105 | sysrepo::S_Val operator()(const std::string& value) const |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 106 | { |
Jan Kundrát | 68d4a2c | 2018-10-01 17:17:09 +0200 | [diff] [blame] | 107 | return std::make_shared<sysrepo::Val>(value.c_str()); |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 108 | } |
| 109 | |
Václav Kubernát | 19097f3 | 2020-10-05 10:08:29 +0200 | [diff] [blame] | 110 | sysrepo::S_Val operator()(const bits_& value) const |
| 111 | { |
| 112 | std::stringstream ss; |
| 113 | std::copy(value.m_bits.begin(), value.m_bits.end(), std::experimental::make_ostream_joiner(ss, " ")); |
| 114 | return std::make_shared<sysrepo::Val>(ss.str().c_str(), SR_BITS_T); |
| 115 | } |
| 116 | |
Jan Kundrát | bd17836 | 2019-02-05 19:00:04 +0100 | [diff] [blame] | 117 | template <typename T> |
| 118 | sysrepo::S_Val operator()(const T& value) const |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 119 | { |
Jan Kundrát | 68d4a2c | 2018-10-01 17:17:09 +0200 | [diff] [blame] | 120 | return std::make_shared<sysrepo::Val>(value); |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 121 | } |
| 122 | }; |
| 123 | |
Jan Kundrát | 6ee8479 | 2020-01-24 01:43:36 +0100 | [diff] [blame] | 124 | struct updateSrValFromValue : boost::static_visitor<void> { |
| 125 | std::string xpath; |
| 126 | sysrepo::S_Val v; |
| 127 | updateSrValFromValue(const std::string& xpath, sysrepo::S_Val v) |
| 128 | : xpath(xpath) |
| 129 | , v(v) |
| 130 | { |
| 131 | } |
| 132 | |
| 133 | void operator()(const enum_& value) const |
| 134 | { |
| 135 | v->set(xpath.c_str(), value.m_value.c_str(), SR_ENUM_T); |
| 136 | } |
| 137 | |
| 138 | void operator()(const binary_& value) const |
| 139 | { |
| 140 | v->set(xpath.c_str(), value.m_value.c_str(), SR_BINARY_T); |
| 141 | } |
| 142 | |
Jan Kundrát | 379bb57 | 2020-05-07 03:23:13 +0200 | [diff] [blame] | 143 | void operator()(const empty_) const |
| 144 | { |
| 145 | v->set(xpath.c_str(), nullptr, SR_LEAF_EMPTY_T); |
| 146 | } |
| 147 | |
Jan Kundrát | 6ee8479 | 2020-01-24 01:43:36 +0100 | [diff] [blame] | 148 | void operator()(const identityRef_& value) const |
| 149 | { |
| 150 | v->set(xpath.c_str(), (value.m_prefix.value().m_name + ":" + value.m_value).c_str(), SR_IDENTITYREF_T); |
| 151 | } |
| 152 | |
| 153 | void operator()(const special_& value) const |
| 154 | { |
Václav Kubernát | e7248b2 | 2020-06-26 15:38:59 +0200 | [diff] [blame] | 155 | switch (value.m_value) { |
| 156 | case SpecialValue::PresenceContainer: |
| 157 | v->set(xpath.c_str(), nullptr, SR_CONTAINER_PRESENCE_T); |
| 158 | break; |
| 159 | case SpecialValue::List: |
| 160 | v->set(xpath.c_str(), nullptr, SR_LIST_T); |
| 161 | break; |
| 162 | default: |
| 163 | throw std::runtime_error("Tried constructing S_Val from a " + specialValueToString(value)); |
| 164 | } |
Jan Kundrát | 6ee8479 | 2020-01-24 01:43:36 +0100 | [diff] [blame] | 165 | } |
| 166 | |
Václav Kubernát | 19097f3 | 2020-10-05 10:08:29 +0200 | [diff] [blame] | 167 | auto operator()(const bits_& value) const |
| 168 | { |
| 169 | std::stringstream ss; |
| 170 | std::copy(value.m_bits.begin(), value.m_bits.end(), std::experimental::make_ostream_joiner(ss, " ")); |
| 171 | v->set(xpath.c_str(), ss.str().c_str(), SR_BITS_T); |
| 172 | } |
| 173 | |
Jan Kundrát | 6ee8479 | 2020-01-24 01:43:36 +0100 | [diff] [blame] | 174 | void operator()(const std::string& value) const |
| 175 | { |
| 176 | v->set(xpath.c_str(), value.c_str(), SR_STRING_T); |
| 177 | } |
| 178 | |
| 179 | template <typename T> |
| 180 | void operator()(const T value) const |
| 181 | { |
| 182 | v->set(xpath.c_str(), value); |
| 183 | } |
| 184 | }; |
| 185 | |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 186 | SysrepoAccess::~SysrepoAccess() = default; |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 187 | |
Václav Kubernát | 715c85c | 2020-04-14 01:46:08 +0200 | [diff] [blame] | 188 | sr_datastore_t toSrDatastore(Datastore datastore) |
| 189 | { |
| 190 | switch (datastore) { |
| 191 | case Datastore::Running: |
| 192 | return SR_DS_RUNNING; |
| 193 | case Datastore::Startup: |
| 194 | return SR_DS_STARTUP; |
| 195 | } |
| 196 | __builtin_unreachable(); |
| 197 | } |
| 198 | |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 199 | SysrepoAccess::SysrepoAccess(const Datastore datastore) |
| 200 | : m_connection(std::make_shared<sysrepo::Connection>()) |
| 201 | , m_session(std::make_shared<sysrepo::Session>(m_connection)) |
| 202 | , m_schema(std::make_shared<YangSchema>(m_session->get_context())) |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 203 | { |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 204 | try { |
Václav Kubernát | 715c85c | 2020-04-14 01:46:08 +0200 | [diff] [blame] | 205 | m_session = std::make_shared<sysrepo::Session>(m_connection, toSrDatastore(datastore)); |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 206 | } catch (sysrepo::sysrepo_exception& ex) { |
| 207 | reportErrors(); |
| 208 | } |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 209 | } |
| 210 | |
Václav Kubernát | d628291 | 2020-06-23 14:49:34 +0200 | [diff] [blame] | 211 | DatastoreAccess::Tree SysrepoAccess::getItems(const std::string& path) const |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 212 | { |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 213 | using namespace std::string_literals; |
Jan Kundrát | b331b55 | 2020-01-23 15:25:29 +0100 | [diff] [blame] | 214 | Tree res; |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 215 | |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 216 | try { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 217 | auto oldDs = m_session->session_get_ds(); |
| 218 | m_session->session_switch_ds(SR_DS_OPERATIONAL); |
Václav Kubernát | f90a0b5 | 2020-11-06 05:53:03 +0100 | [diff] [blame] | 219 | auto config = m_session->get_data(((path == "/") ? "/*" : path).c_str()); |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 220 | m_session->session_switch_ds(oldDs); |
| 221 | if (config) { |
| 222 | lyNodesToTree(res, config->tree_for()); |
Václav Kubernát | b6ff0b6 | 2018-08-30 16:14:53 +0200 | [diff] [blame] | 223 | } |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 224 | } catch (sysrepo::sysrepo_exception& ex) { |
| 225 | reportErrors(); |
Václav Kubernát | c89736b | 2018-08-30 16:14:05 +0200 | [diff] [blame] | 226 | } |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 227 | return res; |
| 228 | } |
| 229 | |
| 230 | void SysrepoAccess::setLeaf(const std::string& path, leaf_data_ value) |
| 231 | { |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 232 | try { |
| 233 | m_session->set_item(path.c_str(), boost::apply_visitor(valFromValue(), value)); |
| 234 | } catch (sysrepo::sysrepo_exception& ex) { |
| 235 | reportErrors(); |
| 236 | } |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 237 | } |
| 238 | |
Jan Kundrát | cbf288b | 2020-06-18 20:44:39 +0200 | [diff] [blame] | 239 | void SysrepoAccess::createItem(const std::string& path) |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 240 | { |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 241 | try { |
| 242 | m_session->set_item(path.c_str()); |
| 243 | } catch (sysrepo::sysrepo_exception& ex) { |
| 244 | reportErrors(); |
| 245 | } |
Václav Kubernát | 80aacc0 | 2018-08-22 17:41:54 +0200 | [diff] [blame] | 246 | } |
| 247 | |
Jan Kundrát | cbf288b | 2020-06-18 20:44:39 +0200 | [diff] [blame] | 248 | void SysrepoAccess::deleteItem(const std::string& path) |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 249 | { |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 250 | try { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 251 | // Have to use SR_EDIT_ISOLATE, because deleting something that's been set without committing is not supported |
| 252 | // https://github.com/sysrepo/sysrepo/issues/1967#issuecomment-625085090 |
| 253 | m_session->delete_item(path.c_str(), SR_EDIT_ISOLATE); |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 254 | } catch (sysrepo::sysrepo_exception& ex) { |
| 255 | reportErrors(); |
| 256 | } |
Václav Kubernát | f5f64f0 | 2019-03-19 17:15:47 +0100 | [diff] [blame] | 257 | } |
| 258 | |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 259 | struct impl_toSrMoveOp { |
| 260 | sr_move_position_t operator()(yang::move::Absolute& absolute) |
| 261 | { |
| 262 | return absolute == yang::move::Absolute::Begin ? SR_MOVE_FIRST : SR_MOVE_LAST; |
| 263 | } |
| 264 | sr_move_position_t operator()(yang::move::Relative& relative) |
| 265 | { |
| 266 | return relative.m_position == yang::move::Relative::Position::After ? SR_MOVE_AFTER : SR_MOVE_BEFORE; |
| 267 | } |
| 268 | }; |
| 269 | |
| 270 | sr_move_position_t toSrMoveOp(std::variant<yang::move::Absolute, yang::move::Relative> move) |
| 271 | { |
| 272 | return std::visit(impl_toSrMoveOp{}, move); |
| 273 | } |
| 274 | |
| 275 | void SysrepoAccess::moveItem(const std::string& source, std::variant<yang::move::Absolute, yang::move::Relative> move) |
| 276 | { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 277 | std::string destination; |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 278 | if (std::holds_alternative<yang::move::Relative>(move)) { |
| 279 | auto relative = std::get<yang::move::Relative>(move); |
| 280 | if (m_schema->nodeType(source) == yang::NodeTypes::LeafList) { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 281 | destination = leafDataToString(relative.m_path.at(".")); |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 282 | } else { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 283 | destination = instanceToString(relative.m_path); |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 284 | } |
| 285 | } |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 286 | m_session->move_item(source.c_str(), toSrMoveOp(move), destination.c_str(), destination.c_str()); |
Václav Kubernát | bf65dd7 | 2020-05-28 02:32:31 +0200 | [diff] [blame] | 287 | } |
| 288 | |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 289 | void SysrepoAccess::commitChanges() |
| 290 | { |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 291 | try { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 292 | m_session->apply_changes(OPERATION_TIMEOUT_MS, 1); |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 293 | } catch (sysrepo::sysrepo_exception& ex) { |
| 294 | reportErrors(); |
| 295 | } |
Václav Kubernát | 812ee28 | 2018-08-30 17:10:03 +0200 | [diff] [blame] | 296 | } |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 297 | |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 298 | void SysrepoAccess::discardChanges() |
| 299 | { |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 300 | try { |
| 301 | m_session->discard_changes(); |
| 302 | } catch (sysrepo::sysrepo_exception& ex) { |
| 303 | reportErrors(); |
| 304 | } |
Václav Kubernát | 6d79143 | 2018-10-25 16:00:35 +0200 | [diff] [blame] | 305 | } |
| 306 | |
Václav Kubernát | b3960f8 | 2020-12-01 03:21:48 +0100 | [diff] [blame] | 307 | DatastoreAccess::Tree SysrepoAccess::execute(const std::string& path, const Tree& input) |
Václav Kubernát | a878960 | 2020-07-20 15:18:19 +0200 | [diff] [blame] | 308 | { |
Václav Kubernát | 4077613 | 2021-02-03 08:47:33 +0100 | [diff] [blame] | 309 | auto inputNode = m_schema->dataNodeFromPath(path); |
| 310 | for (const auto& [k, v] : input) { |
Václav Kubernát | 94bb7cf | 2021-02-03 09:59:39 +0100 | [diff] [blame] | 311 | inputNode->new_path(m_session->get_context(), k.c_str(), leafDataToString(v).c_str(), LYD_ANYDATA_CONSTSTRING, LYD_PATH_OPT_UPDATE); |
Václav Kubernát | 4077613 | 2021-02-03 08:47:33 +0100 | [diff] [blame] | 312 | } |
| 313 | |
Václav Kubernát | d57ec45 | 2021-02-05 16:38:03 +0100 | [diff] [blame] | 314 | Tree res; |
Václav Kubernát | 4077613 | 2021-02-03 08:47:33 +0100 | [diff] [blame] | 315 | auto output = m_session->rpc_send(inputNode); |
Václav Kubernát | d57ec45 | 2021-02-05 16:38:03 +0100 | [diff] [blame] | 316 | if (output) { |
| 317 | // The output is "some top-level node". If we actually want the output of our RPC/action we need to use |
Václav Kubernát | 94bb7cf | 2021-02-03 09:59:39 +0100 | [diff] [blame] | 318 | // find_path. Also, our `path` is fully prefixed, but the output paths aren't. So we use outputNode->path() to |
| 319 | // get the unprefixed path. |
| 320 | |
| 321 | auto outputNode = output->find_path(path.c_str())->data().front(); |
| 322 | lyNodesToTree(res, {outputNode}, joinPaths(outputNode->path(), "/")); |
Václav Kubernát | d57ec45 | 2021-02-05 16:38:03 +0100 | [diff] [blame] | 323 | } |
| 324 | return res; |
Václav Kubernát | a878960 | 2020-07-20 15:18:19 +0200 | [diff] [blame] | 325 | } |
Jan Kundrát | 6ee8479 | 2020-01-24 01:43:36 +0100 | [diff] [blame] | 326 | |
Václav Kubernát | 7160a13 | 2020-04-03 02:11:01 +0200 | [diff] [blame] | 327 | void SysrepoAccess::copyConfig(const Datastore source, const Datastore destination) |
| 328 | { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 329 | auto oldDs = m_session->session_get_ds(); |
| 330 | m_session->session_switch_ds(toSrDatastore(destination)); |
| 331 | m_session->copy_config(toSrDatastore(source), nullptr, OPERATION_TIMEOUT_MS, 1); |
| 332 | m_session->session_switch_ds(oldDs); |
Václav Kubernát | a6c5fff | 2018-09-07 15:16:25 +0200 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | std::shared_ptr<Schema> SysrepoAccess::schema() |
| 336 | { |
| 337 | return m_schema; |
| 338 | } |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 339 | |
Václav Kubernát | d628291 | 2020-06-23 14:49:34 +0200 | [diff] [blame] | 340 | [[noreturn]] void SysrepoAccess::reportErrors() const |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 341 | { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 342 | // I only use get_error to get error info, since the error code from |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 343 | // sysrepo_exception doesn't really give any meaningful information. For |
| 344 | // example an "invalid argument" error could mean a node isn't enabled, or |
| 345 | // it could mean something totally different and there is no documentation |
| 346 | // for that, so it's better to just use the message sysrepo gives me. |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 347 | auto srErrors = m_session->get_error(); |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 348 | std::vector<DatastoreError> res; |
| 349 | |
| 350 | for (size_t i = 0; i < srErrors->error_cnt(); i++) { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 351 | res.emplace_back(srErrors->message(i), srErrors->xpath(i) ? std::optional<std::string>{srErrors->xpath(i)} : std::nullopt); |
Václav Kubernát | c58e4aa | 2019-04-03 18:37:32 +0200 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | throw DatastoreException(res); |
| 355 | } |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 356 | |
| 357 | std::vector<ListInstance> SysrepoAccess::listInstances(const std::string& path) |
| 358 | { |
| 359 | std::vector<ListInstance> res; |
| 360 | auto lists = getItems(path); |
| 361 | |
| 362 | decltype(lists) instances; |
| 363 | auto wantedTree = *(m_schema->dataNodeFromPath(path)->find_path(path.c_str())->data().begin()); |
Václav Kubernát | b4e5b18 | 2020-11-16 19:55:09 +0100 | [diff] [blame] | 364 | std::copy_if(lists.begin(), lists.end(), std::inserter(instances, instances.end()), [this, pathToCheck = wantedTree->schema()->path()](const auto& item) { |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 365 | // This filters out non-instances. |
| 366 | if (item.second.type() != typeid(special_) || boost::get<special_>(item.second).m_value != SpecialValue::List) { |
| 367 | return false; |
| 368 | } |
| 369 | |
| 370 | // Now, getItems is recursive: it gives everything including nested lists. So I try create a tree from the instance... |
| 371 | auto instanceTree = *(m_schema->dataNodeFromPath(item.first)->find_path(item.first.c_str())->data().begin()); |
| 372 | // And then check if its schema path matches the list we actually want. This filters out lists which are not the ones I requested. |
| 373 | return instanceTree->schema()->path() == pathToCheck; |
| 374 | }); |
| 375 | |
| 376 | // If there are no instances, then just return |
| 377 | if (instances.empty()) { |
| 378 | return res; |
| 379 | } |
| 380 | |
| 381 | // I need to find out which keys does the list have. To do that, I create a |
| 382 | // tree from the first instance. This is gives me some top level node, |
| 383 | // which will be our list in case out list is a top-level node. In case it |
| 384 | // isn't, we have call find_path on the top level node. After that, I just |
| 385 | // retrieve the keys. |
| 386 | auto topLevelTree = m_schema->dataNodeFromPath(instances.begin()->first); |
| 387 | auto list = *(topLevelTree->find_path(path.c_str())->data().begin()); |
| 388 | auto keys = libyang::Schema_Node_List{list->schema()}.keys(); |
| 389 | |
| 390 | // Creating a full tree at the same time from the values sysrepo gives me |
| 391 | // would be a pain (and after sysrepo switches to libyang meaningless), so |
| 392 | // I just use this algorithm to create data nodes one by one and get the |
| 393 | // key values from them. |
| 394 | for (const auto& instance : instances) { |
| 395 | auto wantedList = *(m_schema->dataNodeFromPath(instance.first)->find_path(path.c_str())->data().begin()); |
| 396 | ListInstance instanceRes; |
| 397 | for (const auto& key : keys) { |
| 398 | auto vec = wantedList->find_path(key->name())->data(); |
Václav Kubernát | 2e4cafe | 2020-11-05 01:53:21 +0100 | [diff] [blame] | 399 | auto leaf = std::make_shared<libyang::Data_Node_Leaf_List>(*(vec.begin())); |
| 400 | instanceRes.emplace(key->name(), leafValueFromNode(leaf)); |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 401 | } |
Václav Kubernát | faacd02 | 2020-07-08 16:44:38 +0200 | [diff] [blame] | 402 | res.emplace_back(instanceRes); |
Václav Kubernát | ab612e9 | 2019-11-26 19:51:31 +0100 | [diff] [blame] | 403 | } |
| 404 | |
| 405 | return res; |
| 406 | } |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 407 | |
| 408 | std::string SysrepoAccess::dump(const DataFormat format) const |
| 409 | { |
Václav Kubernát | 654303f | 2020-07-31 13:16:54 +0200 | [diff] [blame] | 410 | auto root = m_session->get_data("/*"); |
Václav Kubernát | 70d7f7a | 2020-06-23 14:40:40 +0200 | [diff] [blame] | 411 | return root->print_mem(format == DataFormat::Xml ? LYD_XML : LYD_JSON, LYP_WITHSIBLINGS | LYP_FORMAT); |
| 412 | } |