Jan Kundrát | bd3169c | 2020-02-03 19:31:34 +0100 | [diff] [blame] | 1 | #include <cmath> |
Václav Kubernát | 3c8fe02 | 2020-06-04 01:35:03 +0200 | [diff] [blame] | 2 | #include "datastore_access.hpp" |
| 3 | #include "libyang_utils.hpp" |
| 4 | #include "utils.hpp" |
Václav Kubernát | 02a7115 | 2020-01-21 14:52:51 +0100 | [diff] [blame] | 5 | |
| 6 | leaf_data_ leafValueFromValue(const libyang::S_Value& value, LY_DATA_TYPE type) |
| 7 | { |
| 8 | using namespace std::string_literals; |
| 9 | switch (type) { |
| 10 | case LY_TYPE_INT8: |
| 11 | return value->int8(); |
| 12 | case LY_TYPE_INT16: |
| 13 | return value->int16(); |
| 14 | case LY_TYPE_INT32: |
| 15 | return value->int32(); |
| 16 | case LY_TYPE_INT64: |
| 17 | return value->int64(); |
| 18 | case LY_TYPE_UINT8: |
| 19 | return value->uint8(); |
| 20 | case LY_TYPE_UINT16: |
| 21 | return value->uint16(); |
| 22 | case LY_TYPE_UINT32: |
Jan Kundrát | cc2538f | 2020-02-03 11:33:42 +0100 | [diff] [blame] | 23 | return value->uint32(); |
Václav Kubernát | 02a7115 | 2020-01-21 14:52:51 +0100 | [diff] [blame] | 24 | case LY_TYPE_UINT64: |
| 25 | return value->uint64(); |
| 26 | case LY_TYPE_BOOL: |
| 27 | return bool(value->bln()); |
| 28 | case LY_TYPE_STRING: |
| 29 | return std::string(value->string()); |
| 30 | case LY_TYPE_ENUM: |
| 31 | return enum_{std::string(value->enm()->name())}; |
Jan Kundrát | 0d8abd1 | 2020-05-07 02:00:14 +0200 | [diff] [blame] | 32 | case LY_TYPE_IDENT: |
| 33 | return identityRef_{value->ident()->module()->name(), value->ident()->name()}; |
Jan Kundrát | 4225b3f | 2020-01-24 12:58:38 +0100 | [diff] [blame] | 34 | case LY_TYPE_BINARY: |
Jan Kundrát | 6898544 | 2020-05-07 02:15:34 +0200 | [diff] [blame] | 35 | return binary_{value->binary()}; |
Jan Kundrát | 379bb57 | 2020-05-07 03:23:13 +0200 | [diff] [blame] | 36 | case LY_TYPE_EMPTY: |
| 37 | return empty_{}; |
Jan Kundrát | bd3169c | 2020-02-03 19:31:34 +0100 | [diff] [blame] | 38 | case LY_TYPE_DEC64: |
| 39 | { |
| 40 | auto v = value->dec64(); |
| 41 | return v.value * std::pow(10, -v.digits); |
| 42 | } |
Václav Kubernát | 02a7115 | 2020-01-21 14:52:51 +0100 | [diff] [blame] | 43 | default: // TODO: implement all types |
| 44 | return "(can't print)"s; |
| 45 | } |
| 46 | } |
Václav Kubernát | 3c8fe02 | 2020-06-04 01:35:03 +0200 | [diff] [blame] | 47 | |
| 48 | // This is very similar to the fillMap lambda in SysrepoAccess, however, |
| 49 | // Sysrepo returns a weird array-like structure, while libnetconf |
| 50 | // returns libyang::Data_Node |
| 51 | void lyNodesToTree(DatastoreAccess::Tree& res, const std::vector<std::shared_ptr<libyang::Data_Node>> items, std::optional<std::string> ignoredXPathPrefix) |
| 52 | { |
| 53 | auto stripXPathPrefix = [&ignoredXPathPrefix] (auto path) { |
| 54 | return ignoredXPathPrefix ? path.substr(ignoredXPathPrefix->size()) : path; |
| 55 | }; |
| 56 | |
| 57 | for (const auto& it : items) { |
Václav Kubernát | 3c8fe02 | 2020-06-04 01:35:03 +0200 | [diff] [blame] | 58 | if (it->schema()->nodetype() == LYS_CONTAINER) { |
| 59 | if (libyang::Schema_Node_Container{it->schema()}.presence()) { |
| 60 | // The fact that the container is included in the data tree |
| 61 | // means that it is present and I don't need to check any |
| 62 | // value. |
| 63 | res.emplace_back(stripXPathPrefix(it->path()), special_{SpecialValue::PresenceContainer}); |
| 64 | } |
| 65 | } |
| 66 | if (it->schema()->nodetype() == LYS_LIST) { |
| 67 | res.push_back({stripXPathPrefix(it->path()), special_{SpecialValue::List}}); |
| 68 | } |
| 69 | if (it->schema()->nodetype() == LYS_LEAF || it->schema()->nodetype() == LYS_LEAFLIST) { |
| 70 | libyang::Data_Node_Leaf_List leaf(it); |
| 71 | auto value = leafValueFromValue(leaf.value(), leaf.leaf_type()->base()); |
| 72 | res.emplace_back(stripXPathPrefix(it->path()), value); |
| 73 | } |
| 74 | } |
| 75 | } |