Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 1 | /** |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 2 | * @file tree_schema_free.c |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 3 | * @author Radek Krejci <rkrejci@cesnet.cz> |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 4 | * @brief Freeing functions for schema tree structures. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 5 | * |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 6 | * Copyright (c) 2019 CESNET, z.s.p.o. |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 7 | * |
| 8 | * This source code is licensed under BSD 3-Clause License (the "License"). |
| 9 | * You may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * https://opensource.org/licenses/BSD-3-Clause |
| 13 | */ |
| 14 | |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 15 | #include <stdlib.h> |
| 16 | |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 17 | #include "common.h" |
Michal Vasko | 6973015 | 2020-10-09 16:30:07 +0200 | [diff] [blame^] | 18 | #include "compat.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 19 | #include "plugins_exts.h" |
| 20 | #include "plugins_types.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 21 | #include "tree.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 22 | #include "tree_data.h" |
Radek Krejci | e7b9509 | 2019-05-15 11:03:07 +0200 | [diff] [blame] | 23 | #include "tree_schema.h" |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 24 | #include "tree_schema_internal.h" |
Radek Krejci | 535ea9f | 2020-05-29 16:01:05 +0200 | [diff] [blame] | 25 | #include "xml.h" |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 26 | #include "xpath.h" |
| 27 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 28 | void lysp_grp_free(struct ly_ctx *ctx, struct lysp_grp *grp); |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 29 | void lysc_extension_free(struct ly_ctx *ctx, struct lysc_ext **ext); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 30 | |
| 31 | static void |
| 32 | lysp_stmt_free(struct ly_ctx *ctx, struct lysp_stmt *stmt) |
| 33 | { |
| 34 | struct lysp_stmt *child, *next; |
| 35 | |
| 36 | FREE_STRING(ctx, stmt->stmt); |
| 37 | FREE_STRING(ctx, stmt->arg); |
| 38 | |
| 39 | LY_LIST_FOR_SAFE(stmt->child, next, child) { |
| 40 | lysp_stmt_free(ctx, child); |
| 41 | } |
| 42 | |
| 43 | free(stmt); |
| 44 | } |
| 45 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 46 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 47 | lysp_ext_instance_free(struct ly_ctx *ctx, struct lysp_ext_instance *ext) |
| 48 | { |
| 49 | struct lysp_stmt *stmt, *next; |
| 50 | |
| 51 | FREE_STRING(ctx, ext->name); |
| 52 | FREE_STRING(ctx, ext->argument); |
| 53 | |
| 54 | LY_LIST_FOR_SAFE(ext->child, next, stmt) { |
| 55 | lysp_stmt_free(ctx, stmt); |
| 56 | } |
| 57 | } |
| 58 | |
David Sedlák | 298ff6d | 2019-07-26 14:29:03 +0200 | [diff] [blame] | 59 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 60 | lysp_import_free(struct ly_ctx *ctx, struct lysp_import *import) |
| 61 | { |
| 62 | /* imported module is freed directly from the context's list */ |
| 63 | FREE_STRING(ctx, import->name); |
| 64 | FREE_STRING(ctx, import->prefix); |
| 65 | FREE_STRING(ctx, import->dsc); |
| 66 | FREE_STRING(ctx, import->ref); |
| 67 | FREE_ARRAY(ctx, import->exts, lysp_ext_instance_free); |
| 68 | } |
| 69 | |
David Sedlák | 0c2bab9 | 2019-07-22 15:33:19 +0200 | [diff] [blame] | 70 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 71 | lysp_include_free(struct ly_ctx *ctx, struct lysp_include *include) |
| 72 | { |
| 73 | if (include->submodule) { |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 74 | lysp_submodule_free(ctx, include->submodule); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 75 | } |
| 76 | FREE_STRING(ctx, include->name); |
| 77 | FREE_STRING(ctx, include->dsc); |
| 78 | FREE_STRING(ctx, include->ref); |
| 79 | FREE_ARRAY(ctx, include->exts, lysp_ext_instance_free); |
| 80 | } |
| 81 | |
David Sedlák | aa854b0 | 2019-07-22 14:17:10 +0200 | [diff] [blame] | 82 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 83 | lysp_revision_free(struct ly_ctx *ctx, struct lysp_revision *rev) |
| 84 | { |
| 85 | FREE_STRING(ctx, rev->dsc); |
| 86 | FREE_STRING(ctx, rev->ref); |
| 87 | FREE_ARRAY(ctx, rev->exts, lysp_ext_instance_free); |
| 88 | } |
| 89 | |
David Sedlák | 986cb41 | 2019-07-04 13:10:11 +0200 | [diff] [blame] | 90 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 91 | lysp_ext_free(struct ly_ctx *ctx, struct lysp_ext *ext) |
| 92 | { |
| 93 | FREE_STRING(ctx, ext->name); |
| 94 | FREE_STRING(ctx, ext->argument); |
| 95 | FREE_STRING(ctx, ext->dsc); |
| 96 | FREE_STRING(ctx, ext->ref); |
| 97 | FREE_ARRAY(ctx, ext->exts, lysp_ext_instance_free); |
Michal Vasko | 5fe75f1 | 2020-03-02 13:52:37 +0100 | [diff] [blame] | 98 | if (ext->compiled) { |
| 99 | lysc_extension_free(ctx, &ext->compiled); |
| 100 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 101 | } |
| 102 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 103 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 104 | lysp_feature_free(struct ly_ctx *ctx, struct lysp_feature *feat) |
| 105 | { |
| 106 | FREE_STRING(ctx, feat->name); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 107 | FREE_ARRAY(ctx, feat->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 108 | FREE_STRING(ctx, feat->dsc); |
| 109 | FREE_STRING(ctx, feat->ref); |
| 110 | FREE_ARRAY(ctx, feat->exts, lysp_ext_instance_free); |
| 111 | } |
| 112 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 113 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 114 | lysp_ident_free(struct ly_ctx *ctx, struct lysp_ident *ident) |
| 115 | { |
| 116 | FREE_STRING(ctx, ident->name); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 117 | FREE_ARRAY(ctx, ident->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 118 | FREE_STRINGS(ctx, ident->bases); |
| 119 | FREE_STRING(ctx, ident->dsc); |
| 120 | FREE_STRING(ctx, ident->ref); |
| 121 | FREE_ARRAY(ctx, ident->exts, lysp_ext_instance_free); |
| 122 | } |
| 123 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 124 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 125 | lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr) |
| 126 | { |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 127 | FREE_STRING(ctx, restr->arg.str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 128 | FREE_STRING(ctx, restr->emsg); |
| 129 | FREE_STRING(ctx, restr->eapptag); |
| 130 | FREE_STRING(ctx, restr->dsc); |
| 131 | FREE_STRING(ctx, restr->ref); |
| 132 | FREE_ARRAY(ctx, restr->exts, lysp_ext_instance_free); |
| 133 | } |
| 134 | |
| 135 | static void |
| 136 | lysp_type_enum_free(struct ly_ctx *ctx, struct lysp_type_enum *item) |
| 137 | { |
| 138 | FREE_STRING(ctx, item->name); |
| 139 | FREE_STRING(ctx, item->dsc); |
| 140 | FREE_STRING(ctx, item->ref); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 141 | FREE_ARRAY(ctx, item->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 142 | FREE_ARRAY(ctx, item->exts, lysp_ext_instance_free); |
| 143 | } |
| 144 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 145 | void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 146 | |
David Sedlák | 3248810 | 2019-07-15 17:44:10 +0200 | [diff] [blame] | 147 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 148 | lysp_type_free(struct ly_ctx *ctx, struct lysp_type *type) |
| 149 | { |
| 150 | FREE_STRING(ctx, type->name); |
| 151 | FREE_MEMBER(ctx, type->range, lysp_restr_free); |
| 152 | FREE_MEMBER(ctx, type->length, lysp_restr_free); |
| 153 | FREE_ARRAY(ctx, type->patterns, lysp_restr_free); |
| 154 | FREE_ARRAY(ctx, type->enums, lysp_type_enum_free); |
| 155 | FREE_ARRAY(ctx, type->bits, lysp_type_enum_free); |
Michal Vasko | 004d315 | 2020-06-11 19:59:22 +0200 | [diff] [blame] | 156 | lyxp_expr_free(ctx, type->path); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 157 | FREE_STRINGS(ctx, type->bases); |
| 158 | FREE_ARRAY(ctx, type->types, lysp_type_free); |
| 159 | FREE_ARRAY(ctx, type->exts, lysp_ext_instance_free); |
| 160 | if (type->compiled) { |
| 161 | lysc_type_free(ctx, type->compiled); |
| 162 | } |
| 163 | } |
| 164 | |
David Sedlák | 04e17b2 | 2019-07-19 15:29:48 +0200 | [diff] [blame] | 165 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 166 | lysp_tpdf_free(struct ly_ctx *ctx, struct lysp_tpdf *tpdf) |
| 167 | { |
| 168 | FREE_STRING(ctx, tpdf->name); |
| 169 | FREE_STRING(ctx, tpdf->units); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 170 | FREE_STRING(ctx, tpdf->dflt.str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 171 | FREE_STRING(ctx, tpdf->dsc); |
| 172 | FREE_STRING(ctx, tpdf->ref); |
| 173 | FREE_ARRAY(ctx, tpdf->exts, lysp_ext_instance_free); |
| 174 | |
| 175 | lysp_type_free(ctx, &tpdf->type); |
| 176 | |
| 177 | } |
| 178 | |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 179 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 180 | lysp_action_inout_free(struct ly_ctx *ctx, struct lysp_action_inout *inout) |
| 181 | { |
| 182 | struct lysp_node *node, *next; |
| 183 | |
| 184 | FREE_ARRAY(ctx, inout->musts, lysp_restr_free); |
| 185 | FREE_ARRAY(ctx, inout->typedefs, lysp_tpdf_free); |
| 186 | FREE_ARRAY(ctx, inout->groupings, lysp_grp_free); |
| 187 | LY_LIST_FOR_SAFE(inout->data, next, node) { |
| 188 | lysp_node_free(ctx, node); |
| 189 | } |
| 190 | FREE_ARRAY(ctx, inout->exts, lysp_ext_instance_free); |
| 191 | |
| 192 | } |
| 193 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 194 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 195 | lysp_action_free(struct ly_ctx *ctx, struct lysp_action *action) |
| 196 | { |
| 197 | FREE_STRING(ctx, action->name); |
| 198 | FREE_STRING(ctx, action->dsc); |
| 199 | FREE_STRING(ctx, action->ref); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 200 | FREE_ARRAY(ctx, action->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 201 | FREE_ARRAY(ctx, action->typedefs, lysp_tpdf_free); |
| 202 | FREE_ARRAY(ctx, action->groupings, lysp_grp_free); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 203 | lysp_action_inout_free(ctx, &action->input); |
| 204 | lysp_action_inout_free(ctx, &action->output); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 205 | FREE_ARRAY(ctx, action->exts, lysp_ext_instance_free); |
| 206 | } |
| 207 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 208 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 209 | lysp_notif_free(struct ly_ctx *ctx, struct lysp_notif *notif) |
| 210 | { |
| 211 | struct lysp_node *node, *next; |
| 212 | |
| 213 | FREE_STRING(ctx, notif->name); |
| 214 | FREE_STRING(ctx, notif->dsc); |
| 215 | FREE_STRING(ctx, notif->ref); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 216 | FREE_ARRAY(ctx, notif->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 217 | FREE_ARRAY(ctx, notif->musts, lysp_restr_free); |
| 218 | FREE_ARRAY(ctx, notif->typedefs, lysp_tpdf_free); |
| 219 | FREE_ARRAY(ctx, notif->groupings, lysp_grp_free); |
| 220 | LY_LIST_FOR_SAFE(notif->data, next, node) { |
| 221 | lysp_node_free(ctx, node); |
| 222 | } |
| 223 | FREE_ARRAY(ctx, notif->exts, lysp_ext_instance_free); |
| 224 | } |
| 225 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 226 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 227 | lysp_grp_free(struct ly_ctx *ctx, struct lysp_grp *grp) |
| 228 | { |
| 229 | struct lysp_node *node, *next; |
| 230 | |
| 231 | FREE_STRING(ctx, grp->name); |
| 232 | FREE_STRING(ctx, grp->dsc); |
| 233 | FREE_STRING(ctx, grp->ref); |
| 234 | FREE_ARRAY(ctx, grp->typedefs, lysp_tpdf_free); |
| 235 | FREE_ARRAY(ctx, grp->groupings, lysp_grp_free); |
| 236 | LY_LIST_FOR_SAFE(grp->data, next, node) { |
| 237 | lysp_node_free(ctx, node); |
| 238 | } |
| 239 | FREE_ARRAY(ctx, grp->actions, lysp_action_free); |
| 240 | FREE_ARRAY(ctx, grp->notifs, lysp_notif_free); |
| 241 | FREE_ARRAY(ctx, grp->exts, lysp_ext_instance_free); |
| 242 | } |
| 243 | |
Radek Krejci | f09e4e8 | 2019-06-14 15:08:11 +0200 | [diff] [blame] | 244 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 245 | lysp_when_free(struct ly_ctx *ctx, struct lysp_when *when) |
| 246 | { |
| 247 | FREE_STRING(ctx, when->cond); |
| 248 | FREE_STRING(ctx, when->dsc); |
| 249 | FREE_STRING(ctx, when->ref); |
| 250 | FREE_ARRAY(ctx, when->exts, lysp_ext_instance_free); |
| 251 | } |
| 252 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 253 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 254 | lysp_augment_free(struct ly_ctx *ctx, struct lysp_augment *augment) |
| 255 | { |
| 256 | struct lysp_node *node, *next; |
| 257 | |
| 258 | FREE_STRING(ctx, augment->nodeid); |
| 259 | FREE_STRING(ctx, augment->dsc); |
| 260 | FREE_STRING(ctx, augment->ref); |
| 261 | FREE_MEMBER(ctx, augment->when, lysp_when_free); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 262 | FREE_ARRAY(ctx, augment->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 263 | LY_LIST_FOR_SAFE(augment->child, next, node) { |
| 264 | lysp_node_free(ctx, node); |
| 265 | } |
| 266 | FREE_ARRAY(ctx, augment->actions, lysp_action_free); |
| 267 | FREE_ARRAY(ctx, augment->notifs, lysp_notif_free); |
| 268 | FREE_ARRAY(ctx, augment->exts, lysp_ext_instance_free); |
| 269 | } |
| 270 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 271 | void |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 272 | lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname) |
| 273 | { |
| 274 | if (qname) { |
| 275 | FREE_STRING(ctx, qname->str); |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 280 | lysp_deviate_free(struct ly_ctx *ctx, struct lysp_deviate *d) |
| 281 | { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 282 | struct lysp_deviate_add *add = (struct lysp_deviate_add *)d; |
| 283 | struct lysp_deviate_rpl *rpl = (struct lysp_deviate_rpl *)d; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 284 | |
| 285 | FREE_ARRAY(ctx, d->exts, lysp_ext_instance_free); |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 286 | switch (d->mod) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 287 | case LYS_DEV_NOT_SUPPORTED: |
| 288 | /* nothing to do */ |
| 289 | break; |
| 290 | case LYS_DEV_ADD: |
| 291 | case LYS_DEV_DELETE: /* compatible for dynamically allocated data */ |
| 292 | FREE_STRING(ctx, add->units); |
| 293 | FREE_ARRAY(ctx, add->musts, lysp_restr_free); |
| 294 | FREE_STRINGS(ctx, add->uniques); |
| 295 | FREE_STRINGS(ctx, add->dflts); |
| 296 | break; |
| 297 | case LYS_DEV_REPLACE: |
| 298 | FREE_MEMBER(ctx, rpl->type, lysp_type_free); |
| 299 | FREE_STRING(ctx, rpl->units); |
| 300 | FREE_STRING(ctx, rpl->dflt); |
| 301 | break; |
| 302 | default: |
| 303 | LOGINT(ctx); |
| 304 | break; |
| 305 | } |
| 306 | } |
| 307 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 308 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 309 | lysp_deviation_free(struct ly_ctx *ctx, struct lysp_deviation *dev) |
| 310 | { |
| 311 | struct lysp_deviate *next, *iter; |
| 312 | |
| 313 | FREE_STRING(ctx, dev->nodeid); |
| 314 | FREE_STRING(ctx, dev->dsc); |
| 315 | FREE_STRING(ctx, dev->ref); |
| 316 | LY_LIST_FOR_SAFE(dev->deviates, next, iter) { |
| 317 | lysp_deviate_free(ctx, iter); |
| 318 | free(iter); |
| 319 | } |
| 320 | FREE_ARRAY(ctx, dev->exts, lysp_ext_instance_free); |
| 321 | } |
| 322 | |
David Sedlák | d2d676a | 2019-07-22 11:28:19 +0200 | [diff] [blame] | 323 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 324 | lysp_refine_free(struct ly_ctx *ctx, struct lysp_refine *ref) |
| 325 | { |
| 326 | FREE_STRING(ctx, ref->nodeid); |
| 327 | FREE_STRING(ctx, ref->dsc); |
| 328 | FREE_STRING(ctx, ref->ref); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 329 | FREE_ARRAY(ctx, ref->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 330 | FREE_ARRAY(ctx, ref->musts, lysp_restr_free); |
| 331 | FREE_STRING(ctx, ref->presence); |
| 332 | FREE_STRINGS(ctx, ref->dflts); |
| 333 | FREE_ARRAY(ctx, ref->exts, lysp_ext_instance_free); |
| 334 | } |
| 335 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 336 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 337 | lysp_node_free(struct ly_ctx *ctx, struct lysp_node *node) |
| 338 | { |
| 339 | struct lysp_node *child, *next; |
| 340 | |
| 341 | FREE_STRING(ctx, node->name); |
| 342 | FREE_STRING(ctx, node->dsc); |
| 343 | FREE_STRING(ctx, node->ref); |
| 344 | FREE_MEMBER(ctx, node->when, lysp_when_free); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 345 | FREE_ARRAY(ctx, node->iffeatures, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 346 | FREE_ARRAY(ctx, node->exts, lysp_ext_instance_free); |
| 347 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 348 | switch (node->nodetype) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 349 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 350 | FREE_ARRAY(ctx, ((struct lysp_node_container *)node)->musts, lysp_restr_free); |
| 351 | FREE_STRING(ctx, ((struct lysp_node_container *)node)->presence); |
| 352 | FREE_ARRAY(ctx, ((struct lysp_node_container *)node)->typedefs, lysp_tpdf_free); |
| 353 | FREE_ARRAY(ctx, ((struct lysp_node_container *)node)->groupings, lysp_grp_free); |
| 354 | LY_LIST_FOR_SAFE(((struct lysp_node_container *)node)->child, next, child) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 355 | lysp_node_free(ctx, child); |
| 356 | } |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 357 | FREE_ARRAY(ctx, ((struct lysp_node_container *)node)->actions, lysp_action_free); |
| 358 | FREE_ARRAY(ctx, ((struct lysp_node_container *)node)->notifs, lysp_notif_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 359 | break; |
| 360 | case LYS_LEAF: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 361 | FREE_ARRAY(ctx, ((struct lysp_node_leaf *)node)->musts, lysp_restr_free); |
| 362 | lysp_type_free(ctx, &((struct lysp_node_leaf *)node)->type); |
| 363 | FREE_STRING(ctx, ((struct lysp_node_leaf *)node)->units); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 364 | FREE_STRING(ctx, ((struct lysp_node_leaf *)node)->dflt.str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 365 | break; |
| 366 | case LYS_LEAFLIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 367 | FREE_ARRAY(ctx, ((struct lysp_node_leaflist *)node)->musts, lysp_restr_free); |
| 368 | lysp_type_free(ctx, &((struct lysp_node_leaflist *)node)->type); |
| 369 | FREE_STRING(ctx, ((struct lysp_node_leaflist *)node)->units); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 370 | FREE_ARRAY(ctx, ((struct lysp_node_leaflist *)node)->dflts, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 371 | break; |
| 372 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 373 | FREE_ARRAY(ctx, ((struct lysp_node_list *)node)->musts, lysp_restr_free); |
| 374 | FREE_STRING(ctx, ((struct lysp_node_list *)node)->key); |
| 375 | FREE_ARRAY(ctx, ((struct lysp_node_list *)node)->typedefs, lysp_tpdf_free); |
| 376 | FREE_ARRAY(ctx, ((struct lysp_node_list *)node)->groupings, lysp_grp_free); |
| 377 | LY_LIST_FOR_SAFE(((struct lysp_node_list *)node)->child, next, child) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 378 | lysp_node_free(ctx, child); |
| 379 | } |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 380 | FREE_ARRAY(ctx, ((struct lysp_node_list *)node)->actions, lysp_action_free); |
| 381 | FREE_ARRAY(ctx, ((struct lysp_node_list *)node)->notifs, lysp_notif_free); |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 382 | FREE_ARRAY(ctx, ((struct lysp_node_list *)node)->uniques, lysp_qname_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 383 | break; |
| 384 | case LYS_CHOICE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 385 | LY_LIST_FOR_SAFE(((struct lysp_node_choice *)node)->child, next, child) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 386 | lysp_node_free(ctx, child); |
| 387 | } |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 388 | FREE_STRING(ctx, ((struct lysp_node_choice *)node)->dflt.str); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 389 | break; |
| 390 | case LYS_CASE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 391 | LY_LIST_FOR_SAFE(((struct lysp_node_case *)node)->child, next, child) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 392 | lysp_node_free(ctx, child); |
| 393 | } |
| 394 | break; |
| 395 | case LYS_ANYDATA: |
| 396 | case LYS_ANYXML: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 397 | FREE_ARRAY(ctx, ((struct lysp_node_anydata *)node)->musts, lysp_restr_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 398 | break; |
| 399 | case LYS_USES: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 400 | FREE_ARRAY(ctx, ((struct lysp_node_uses *)node)->refines, lysp_refine_free); |
| 401 | FREE_ARRAY(ctx, ((struct lysp_node_uses *)node)->augments, lysp_augment_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 402 | break; |
| 403 | default: |
| 404 | LOGINT(ctx); |
| 405 | } |
| 406 | |
| 407 | free(node); |
| 408 | } |
| 409 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 410 | void |
| 411 | lysp_submodule_free(struct ly_ctx *ctx, struct lysp_submodule *submod) |
| 412 | { |
| 413 | struct lysp_node *node, *next; |
| 414 | |
Radek Krejci | 40544fa | 2019-01-11 09:38:37 +0100 | [diff] [blame] | 415 | if (!submod) { |
| 416 | return; |
| 417 | } |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 418 | |
| 419 | FREE_ARRAY(ctx, submod->imports, lysp_import_free); |
| 420 | FREE_ARRAY(ctx, submod->includes, lysp_include_free); |
| 421 | |
| 422 | FREE_ARRAY(ctx, submod->revs, lysp_revision_free); |
| 423 | FREE_ARRAY(ctx, submod->extensions, lysp_ext_free); |
| 424 | FREE_ARRAY(ctx, submod->features, lysp_feature_free); |
| 425 | FREE_ARRAY(ctx, submod->identities, lysp_ident_free); |
| 426 | FREE_ARRAY(ctx, submod->typedefs, lysp_tpdf_free); |
| 427 | FREE_ARRAY(ctx, submod->groupings, lysp_grp_free); |
| 428 | LY_LIST_FOR_SAFE(submod->data, next, node) { |
| 429 | lysp_node_free(ctx, node); |
| 430 | } |
| 431 | FREE_ARRAY(ctx, submod->augments, lysp_augment_free); |
| 432 | FREE_ARRAY(ctx, submod->rpcs, lysp_action_free); |
| 433 | FREE_ARRAY(ctx, submod->notifs, lysp_notif_free); |
| 434 | FREE_ARRAY(ctx, submod->deviations, lysp_deviation_free); |
| 435 | FREE_ARRAY(ctx, submod->exts, lysp_ext_instance_free); |
| 436 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 437 | FREE_STRING(ctx, submod->name); |
| 438 | FREE_STRING(ctx, submod->filepath); |
| 439 | FREE_STRING(ctx, submod->prefix); |
| 440 | FREE_STRING(ctx, submod->org); |
| 441 | FREE_STRING(ctx, submod->contact); |
| 442 | FREE_STRING(ctx, submod->dsc); |
| 443 | FREE_STRING(ctx, submod->ref); |
| 444 | |
| 445 | free(submod); |
| 446 | } |
| 447 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 448 | API void |
| 449 | lysp_module_free(struct lysp_module *module) |
| 450 | { |
| 451 | struct ly_ctx *ctx; |
| 452 | struct lysp_node *node, *next; |
| 453 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 454 | if (!module) { |
| 455 | return; |
| 456 | } |
| 457 | ctx = module->mod->ctx; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 458 | |
| 459 | FREE_ARRAY(ctx, module->imports, lysp_import_free); |
| 460 | FREE_ARRAY(ctx, module->includes, lysp_include_free); |
| 461 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 462 | FREE_ARRAY(ctx, module->revs, lysp_revision_free); |
| 463 | FREE_ARRAY(ctx, module->extensions, lysp_ext_free); |
| 464 | FREE_ARRAY(ctx, module->features, lysp_feature_free); |
| 465 | FREE_ARRAY(ctx, module->identities, lysp_ident_free); |
| 466 | FREE_ARRAY(ctx, module->typedefs, lysp_tpdf_free); |
| 467 | FREE_ARRAY(ctx, module->groupings, lysp_grp_free); |
| 468 | LY_LIST_FOR_SAFE(module->data, next, node) { |
| 469 | lysp_node_free(ctx, node); |
| 470 | } |
| 471 | FREE_ARRAY(ctx, module->augments, lysp_augment_free); |
| 472 | FREE_ARRAY(ctx, module->rpcs, lysp_action_free); |
| 473 | FREE_ARRAY(ctx, module->notifs, lysp_notif_free); |
| 474 | FREE_ARRAY(ctx, module->deviations, lysp_deviation_free); |
| 475 | FREE_ARRAY(ctx, module->exts, lysp_ext_instance_free); |
| 476 | |
| 477 | free(module); |
| 478 | } |
| 479 | |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 480 | void |
Michal Vasko | 6f4cbb6 | 2020-02-28 11:15:47 +0100 | [diff] [blame] | 481 | lysc_extension_free(struct ly_ctx *ctx, struct lysc_ext **ext) |
| 482 | { |
| 483 | if (--(*ext)->refcount) { |
| 484 | return; |
| 485 | } |
| 486 | FREE_STRING(ctx, (*ext)->name); |
| 487 | FREE_STRING(ctx, (*ext)->argument); |
| 488 | FREE_ARRAY(ctx, (*ext)->exts, lysc_ext_instance_free); |
| 489 | free(*ext); |
| 490 | } |
| 491 | |
| 492 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 493 | lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext) |
| 494 | { |
fredgan | ebc5057 | 2019-10-31 15:39:23 +0800 | [diff] [blame] | 495 | if (ext->def && ext->def->plugin && ext->def->plugin->free) { |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 496 | ext->def->plugin->free(ctx, ext); |
| 497 | } |
Juraj Vijtiuk | 4a19ab0 | 2020-03-03 13:50:14 +0100 | [diff] [blame] | 498 | if (ext->def) { |
| 499 | lysc_extension_free(ctx, &ext->def); |
| 500 | } |
Radek Krejci | 0935f41 | 2019-08-20 16:15:18 +0200 | [diff] [blame] | 501 | FREE_STRING(ctx, ext->argument); |
| 502 | FREE_ARRAY(ctx, ext->exts, lysc_ext_instance_free); |
| 503 | } |
| 504 | |
| 505 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 506 | lysc_iffeature_free(struct ly_ctx *UNUSED(ctx), struct lysc_iffeature *iff) |
| 507 | { |
| 508 | LY_ARRAY_FREE(iff->features); |
| 509 | free(iff->expr); |
| 510 | } |
| 511 | |
| 512 | static void |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 513 | lysc_when_free(struct ly_ctx *ctx, struct lysc_when **w) |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 514 | { |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 515 | if (--(*w)->refcount) { |
| 516 | return; |
| 517 | } |
| 518 | lyxp_expr_free(ctx, (*w)->cond); |
| 519 | FREE_STRING(ctx, (*w)->dsc); |
| 520 | FREE_STRING(ctx, (*w)->ref); |
| 521 | FREE_ARRAY(ctx, (*w)->exts, lysc_ext_instance_free); |
| 522 | free(*w); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 523 | } |
| 524 | |
Radek Krejci | ccd20f1 | 2019-02-15 14:12:27 +0100 | [diff] [blame] | 525 | void |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 526 | lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must) |
| 527 | { |
| 528 | lyxp_expr_free(ctx, must->cond); |
| 529 | FREE_STRING(ctx, must->emsg); |
| 530 | FREE_STRING(ctx, must->eapptag); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 531 | FREE_STRING(ctx, must->dsc); |
| 532 | FREE_STRING(ctx, must->ref); |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 533 | FREE_ARRAY(ctx, must->exts, lysc_ext_instance_free); |
| 534 | } |
| 535 | |
| 536 | static void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 537 | lysc_ident_free(struct ly_ctx *ctx, struct lysc_ident *ident) |
| 538 | { |
| 539 | FREE_STRING(ctx, ident->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 540 | FREE_STRING(ctx, ident->dsc); |
| 541 | FREE_STRING(ctx, ident->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 542 | FREE_ARRAY(ctx, ident->iffeatures, lysc_iffeature_free); |
| 543 | LY_ARRAY_FREE(ident->derived); |
| 544 | FREE_ARRAY(ctx, ident->exts, lysc_ext_instance_free); |
| 545 | } |
| 546 | |
Radek Krejci | 2d7a47b | 2019-05-16 13:34:10 +0200 | [diff] [blame] | 547 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 548 | lysc_feature_free(struct ly_ctx *ctx, struct lysc_feature *feat) |
| 549 | { |
| 550 | FREE_STRING(ctx, feat->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 551 | FREE_STRING(ctx, feat->dsc); |
| 552 | FREE_STRING(ctx, feat->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 553 | FREE_ARRAY(ctx, feat->iffeatures, lysc_iffeature_free); |
| 554 | LY_ARRAY_FREE(feat->depfeatures); |
| 555 | FREE_ARRAY(ctx, feat->exts, lysc_ext_instance_free); |
| 556 | } |
| 557 | |
| 558 | static void |
| 559 | lysc_range_free(struct ly_ctx *ctx, struct lysc_range *range) |
| 560 | { |
| 561 | LY_ARRAY_FREE(range->parts); |
| 562 | FREE_STRING(ctx, range->eapptag); |
| 563 | FREE_STRING(ctx, range->emsg); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 564 | FREE_STRING(ctx, range->dsc); |
| 565 | FREE_STRING(ctx, range->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 566 | FREE_ARRAY(ctx, range->exts, lysc_ext_instance_free); |
| 567 | } |
| 568 | |
| 569 | static void |
| 570 | lysc_pattern_free(struct ly_ctx *ctx, struct lysc_pattern **pattern) |
| 571 | { |
| 572 | if (--(*pattern)->refcount) { |
| 573 | return; |
| 574 | } |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 575 | pcre2_code_free((*pattern)->code); |
| 576 | FREE_STRING(ctx, (*pattern)->expr); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 577 | FREE_STRING(ctx, (*pattern)->eapptag); |
| 578 | FREE_STRING(ctx, (*pattern)->emsg); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 579 | FREE_STRING(ctx, (*pattern)->dsc); |
| 580 | FREE_STRING(ctx, (*pattern)->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 581 | FREE_ARRAY(ctx, (*pattern)->exts, lysc_ext_instance_free); |
| 582 | free(*pattern); |
| 583 | } |
| 584 | |
| 585 | static void |
Radek Krejci | 693262f | 2019-04-29 15:23:20 +0200 | [diff] [blame] | 586 | lysc_enum_item_free(struct ly_ctx *ctx, struct lysc_type_bitenum_item *item) |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 587 | { |
| 588 | FREE_STRING(ctx, item->name); |
Radek Krejci | c8b3100 | 2019-01-08 10:24:45 +0100 | [diff] [blame] | 589 | FREE_STRING(ctx, item->dsc); |
| 590 | FREE_STRING(ctx, item->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 591 | FREE_ARRAY(ctx, item->iffeatures, lysc_iffeature_free); |
| 592 | FREE_ARRAY(ctx, item->exts, lysc_ext_instance_free); |
| 593 | } |
| 594 | |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 595 | static void |
| 596 | lysc_type2_free(struct ly_ctx *ctx, struct lysc_type **type) |
| 597 | { |
| 598 | lysc_type_free(ctx, *type); |
| 599 | } |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 600 | |
Radek Krejci | cdfecd9 | 2018-11-26 11:27:32 +0100 | [diff] [blame] | 601 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 602 | lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type) |
| 603 | { |
| 604 | if (--type->refcount) { |
| 605 | return; |
| 606 | } |
Radek Krejci | b915ac9 | 2020-08-14 23:31:04 +0200 | [diff] [blame] | 607 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 608 | switch (type->basetype) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 609 | case LY_TYPE_BINARY: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 610 | FREE_MEMBER(ctx, ((struct lysc_type_bin *)type)->length, lysc_range_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 611 | break; |
| 612 | case LY_TYPE_BITS: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 613 | FREE_ARRAY(ctx, (struct lysc_type_bitenum_item *)((struct lysc_type_bits *)type)->bits, lysc_enum_item_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 614 | break; |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 615 | case LY_TYPE_DEC64: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 616 | FREE_MEMBER(ctx, ((struct lysc_type_dec *)type)->range, lysc_range_free); |
Radek Krejci | 6cba429 | 2018-11-15 17:33:29 +0100 | [diff] [blame] | 617 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 618 | case LY_TYPE_STRING: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 619 | FREE_MEMBER(ctx, ((struct lysc_type_str *)type)->length, lysc_range_free); |
| 620 | FREE_ARRAY(ctx, ((struct lysc_type_str *)type)->patterns, lysc_pattern_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 621 | break; |
| 622 | case LY_TYPE_ENUM: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 623 | FREE_ARRAY(ctx, ((struct lysc_type_enum *)type)->enums, lysc_enum_item_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 624 | break; |
| 625 | case LY_TYPE_INT8: |
| 626 | case LY_TYPE_UINT8: |
| 627 | case LY_TYPE_INT16: |
| 628 | case LY_TYPE_UINT16: |
| 629 | case LY_TYPE_INT32: |
| 630 | case LY_TYPE_UINT32: |
| 631 | case LY_TYPE_INT64: |
| 632 | case LY_TYPE_UINT64: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 633 | FREE_MEMBER(ctx, ((struct lysc_type_num *)type)->range, lysc_range_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 634 | break; |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 635 | case LY_TYPE_IDENT: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 636 | LY_ARRAY_FREE(((struct lysc_type_identityref *)type)->bases); |
Radek Krejci | 555cb5b | 2018-11-16 14:54:33 +0100 | [diff] [blame] | 637 | break; |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 638 | case LY_TYPE_UNION: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 639 | FREE_ARRAY(ctx, ((struct lysc_type_union *)type)->types, lysc_type2_free); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 640 | break; |
| 641 | case LY_TYPE_LEAFREF: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 642 | lyxp_expr_free(ctx, ((struct lysc_type_leafref *)type)->path); |
Radek Krejci | a304538 | 2018-11-22 14:30:31 +0100 | [diff] [blame] | 643 | break; |
Radek Krejci | 16c0f82 | 2018-11-16 10:46:10 +0100 | [diff] [blame] | 644 | case LY_TYPE_INST: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 645 | case LY_TYPE_BOOL: |
| 646 | case LY_TYPE_EMPTY: |
Radek Krejci | 4369923 | 2018-11-23 14:59:46 +0100 | [diff] [blame] | 647 | case LY_TYPE_UNKNOWN: |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 648 | /* nothing to do */ |
| 649 | break; |
| 650 | } |
Michal Vasko | ba99a3e | 2020-08-18 15:50:05 +0200 | [diff] [blame] | 651 | |
| 652 | FREE_ARRAY(ctx, type->exts, lysc_ext_instance_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 653 | free(type); |
| 654 | } |
| 655 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 656 | void |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 657 | lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout) |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 658 | { |
| 659 | struct lysc_node *child, *child_next; |
| 660 | |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 661 | FREE_ARRAY(ctx, inout->musts, lysc_must_free); |
| 662 | LY_LIST_FOR_SAFE(inout->data, child_next, child) { |
| 663 | lysc_node_free(ctx, child); |
| 664 | } |
| 665 | } |
| 666 | |
| 667 | void |
| 668 | lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action) |
| 669 | { |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 670 | FREE_STRING(ctx, action->name); |
| 671 | FREE_STRING(ctx, action->dsc); |
| 672 | FREE_STRING(ctx, action->ref); |
| 673 | FREE_ARRAY(ctx, action->iffeatures, lysc_iffeature_free); |
| 674 | FREE_ARRAY(ctx, action->exts, lysc_ext_instance_free); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 675 | FREE_ARRAY(ctx, action->input_exts, lysc_ext_instance_free); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 676 | lysc_action_inout_free(ctx, &action->input); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 677 | FREE_ARRAY(ctx, action->output_exts, lysc_ext_instance_free); |
Radek Krejci | f538ce5 | 2019-03-05 10:46:14 +0100 | [diff] [blame] | 678 | lysc_action_inout_free(ctx, &action->output); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 679 | } |
| 680 | |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 681 | void |
| 682 | lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif) |
| 683 | { |
| 684 | struct lysc_node *child, *child_next; |
| 685 | |
| 686 | FREE_STRING(ctx, notif->name); |
| 687 | FREE_STRING(ctx, notif->dsc); |
| 688 | FREE_STRING(ctx, notif->ref); |
| 689 | FREE_ARRAY(ctx, notif->iffeatures, lysc_iffeature_free); |
| 690 | FREE_ARRAY(ctx, notif->exts, lysc_ext_instance_free); |
| 691 | FREE_ARRAY(ctx, notif->musts, lysc_must_free); |
| 692 | LY_LIST_FOR_SAFE(notif->data, child_next, child) { |
| 693 | lysc_node_free(ctx, child); |
| 694 | } |
| 695 | } |
| 696 | |
Radek Krejci | f2de0ed | 2019-05-02 14:13:18 +0200 | [diff] [blame] | 697 | void |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 698 | lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node) |
| 699 | { |
| 700 | struct lysc_node *child, *child_next; |
| 701 | |
| 702 | LY_LIST_FOR_SAFE(node->child, child_next, child) { |
| 703 | lysc_node_free(ctx, child); |
| 704 | } |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 705 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 706 | FREE_ARRAY(ctx, node->actions, lysc_action_free); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 707 | FREE_ARRAY(ctx, node->notifs, lysc_notif_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 708 | } |
| 709 | |
| 710 | static void |
| 711 | lysc_node_leaf_free(struct ly_ctx *ctx, struct lysc_node_leaf *node) |
| 712 | { |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 713 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 714 | if (node->type) { |
| 715 | lysc_type_free(ctx, node->type); |
| 716 | } |
Radek Krejci | 58d171e | 2018-11-23 13:50:55 +0100 | [diff] [blame] | 717 | FREE_STRING(ctx, node->units); |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 718 | if (node->dflt) { |
| 719 | node->dflt->realtype->plugin->free(ctx, node->dflt); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 720 | lysc_type_free(ctx, (struct lysc_type *)node->dflt->realtype); |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 721 | free(node->dflt); |
| 722 | } |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 723 | } |
| 724 | |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 725 | static void |
| 726 | lysc_node_leaflist_free(struct ly_ctx *ctx, struct lysc_node_leaflist *node) |
| 727 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 728 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 729 | |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 730 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
| 731 | if (node->type) { |
| 732 | lysc_type_free(ctx, node->type); |
| 733 | } |
| 734 | FREE_STRING(ctx, node->units); |
| 735 | LY_ARRAY_FOR(node->dflts, u) { |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 736 | node->dflts[u]->realtype->plugin->free(ctx, node->dflts[u]); |
Michal Vasko | feca4fb | 2020-10-05 08:58:40 +0200 | [diff] [blame] | 737 | lysc_type_free(ctx, (struct lysc_type *)node->dflts[u]->realtype); |
Radek Krejci | a191122 | 2019-07-22 17:24:50 +0200 | [diff] [blame] | 738 | free(node->dflts[u]); |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 739 | } |
| 740 | LY_ARRAY_FREE(node->dflts); |
| 741 | } |
| 742 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 743 | static void |
| 744 | lysc_node_list_free(struct ly_ctx *ctx, struct lysc_node_list *node) |
| 745 | { |
Michal Vasko | fd69e1d | 2020-07-03 11:57:17 +0200 | [diff] [blame] | 746 | LY_ARRAY_COUNT_TYPE u; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 747 | struct lysc_node *child, *child_next; |
| 748 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 749 | LY_LIST_FOR_SAFE(node->child, child_next, child) { |
| 750 | lysc_node_free(ctx, child); |
| 751 | } |
| 752 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
| 753 | |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 754 | LY_ARRAY_FOR(node->uniques, u) { |
| 755 | LY_ARRAY_FREE(node->uniques[u]); |
| 756 | } |
| 757 | LY_ARRAY_FREE(node->uniques); |
| 758 | |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 759 | FREE_ARRAY(ctx, node->actions, lysc_action_free); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 760 | FREE_ARRAY(ctx, node->notifs, lysc_notif_free); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 761 | } |
| 762 | |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 763 | static void |
| 764 | lysc_node_choice_free(struct ly_ctx *ctx, struct lysc_node_choice *node) |
| 765 | { |
| 766 | struct lysc_node *child, *child_next; |
| 767 | |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 768 | LY_LIST_FOR_SAFE((struct lysc_node *)node->cases, child_next, child) { |
| 769 | lysc_node_free(ctx, child); |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | static void |
| 774 | lysc_node_case_free(struct ly_ctx *ctx, struct lysc_node_case *node) |
| 775 | { |
| 776 | struct lysc_node *child, *child_next; |
| 777 | |
| 778 | LY_LIST_FOR_SAFE(node->child, child_next, child) { |
| 779 | lysc_node_free(ctx, child); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 780 | } |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 781 | } |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 782 | |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 783 | static void |
| 784 | lysc_node_anydata_free(struct ly_ctx *ctx, struct lysc_node_anydata *node) |
| 785 | { |
| 786 | FREE_ARRAY(ctx, node->musts, lysc_must_free); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 787 | } |
| 788 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 789 | void |
| 790 | lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node) |
| 791 | { |
| 792 | /* common part */ |
| 793 | FREE_STRING(ctx, node->name); |
Radek Krejci | 12fb914 | 2019-01-08 09:45:30 +0100 | [diff] [blame] | 794 | FREE_STRING(ctx, node->dsc); |
| 795 | FREE_STRING(ctx, node->ref); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 796 | |
| 797 | /* nodetype-specific part */ |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 798 | switch (node->nodetype) { |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 799 | case LYS_CONTAINER: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 800 | lysc_node_container_free(ctx, (struct lysc_node_container *)node); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 801 | break; |
| 802 | case LYS_LEAF: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 803 | lysc_node_leaf_free(ctx, (struct lysc_node_leaf *)node); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 804 | break; |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 805 | case LYS_LEAFLIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 806 | lysc_node_leaflist_free(ctx, (struct lysc_node_leaflist *)node); |
Radek Krejci | 42452ac | 2018-11-28 17:09:52 +0100 | [diff] [blame] | 807 | break; |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 808 | case LYS_LIST: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 809 | lysc_node_list_free(ctx, (struct lysc_node_list *)node); |
Radek Krejci | 9bb94eb | 2018-12-04 16:48:35 +0100 | [diff] [blame] | 810 | break; |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 811 | case LYS_CHOICE: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 812 | lysc_node_choice_free(ctx, (struct lysc_node_choice *)node); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 813 | break; |
| 814 | case LYS_CASE: |
Michal Vasko | 20424b4 | 2020-08-31 12:29:38 +0200 | [diff] [blame] | 815 | lysc_node_case_free(ctx, (struct lysc_node_case *)node); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 816 | break; |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 817 | case LYS_ANYDATA: |
| 818 | case LYS_ANYXML: |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 819 | lysc_node_anydata_free(ctx, (struct lysc_node_anydata *)node); |
Radek Krejci | 9800fb8 | 2018-12-13 14:26:23 +0100 | [diff] [blame] | 820 | break; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 821 | default: |
| 822 | LOGINT(ctx); |
| 823 | } |
| 824 | |
Radek Krejci | 00b874b | 2019-02-12 10:54:50 +0100 | [diff] [blame] | 825 | FREE_ARRAY(ctx, node->when, lysc_when_free); |
Radek Krejci | 056d0a8 | 2018-12-06 16:57:25 +0100 | [diff] [blame] | 826 | FREE_ARRAY(ctx, node->iffeatures, lysc_iffeature_free); |
| 827 | FREE_ARRAY(ctx, node->exts, lysc_ext_instance_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 828 | free(node); |
| 829 | } |
| 830 | |
| 831 | static void |
| 832 | lysc_module_free_(struct lysc_module *module) |
| 833 | { |
| 834 | struct ly_ctx *ctx; |
| 835 | struct lysc_node *node, *node_next; |
| 836 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 837 | LY_CHECK_ARG_RET(NULL, module, ); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 838 | ctx = module->mod->ctx; |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 839 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 840 | LY_LIST_FOR_SAFE(module->data, node_next, node) { |
| 841 | lysc_node_free(ctx, node); |
| 842 | } |
Radek Krejci | 6eeb58f | 2019-02-22 16:29:37 +0100 | [diff] [blame] | 843 | FREE_ARRAY(ctx, module->rpcs, lysc_action_free); |
Radek Krejci | fc11bd7 | 2019-04-11 16:00:05 +0200 | [diff] [blame] | 844 | FREE_ARRAY(ctx, module->notifs, lysc_notif_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 845 | FREE_ARRAY(ctx, module->exts, lysc_ext_instance_free); |
| 846 | |
| 847 | free(module); |
| 848 | } |
| 849 | |
| 850 | void |
| 851 | lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)) |
| 852 | { |
Radek Krejci | 9b04289 | 2019-02-13 14:28:44 +0100 | [diff] [blame] | 853 | /* TODO use the destructor, this just suppress warning about unused parameter */ |
| 854 | (void) private_destructor; |
| 855 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 856 | if (module) { |
| 857 | lysc_module_free_(module); |
| 858 | } |
| 859 | } |
| 860 | |
| 861 | void |
| 862 | lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv)) |
| 863 | { |
| 864 | if (!module) { |
| 865 | return; |
| 866 | } |
| 867 | |
| 868 | lysc_module_free(module->compiled, private_destructor); |
Radek Krejci | 14915cc | 2020-09-14 17:28:13 +0200 | [diff] [blame] | 869 | FREE_ARRAY(module->ctx, module->features, lysc_feature_free); |
Radek Krejci | 80d281e | 2020-09-14 17:42:54 +0200 | [diff] [blame] | 870 | FREE_ARRAY(module->ctx, module->identities, lysc_ident_free); |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 871 | lysp_module_free(module->parsed); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 872 | |
Michal Vasko | 7f45cf2 | 2020-10-01 12:49:44 +0200 | [diff] [blame] | 873 | LY_ARRAY_FREE(module->augmented_by); |
| 874 | LY_ARRAY_FREE(module->deviated_by); |
| 875 | |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 876 | FREE_STRING(module->ctx, module->name); |
Radek Krejci | 0af4629 | 2019-01-11 16:02:31 +0100 | [diff] [blame] | 877 | FREE_STRING(module->ctx, module->revision); |
Radek Krejci | 0bcdaed | 2019-01-10 10:21:34 +0100 | [diff] [blame] | 878 | FREE_STRING(module->ctx, module->ns); |
| 879 | FREE_STRING(module->ctx, module->prefix); |
| 880 | FREE_STRING(module->ctx, module->filepath); |
| 881 | FREE_STRING(module->ctx, module->org); |
| 882 | FREE_STRING(module->ctx, module->contact); |
| 883 | FREE_STRING(module->ctx, module->dsc); |
| 884 | FREE_STRING(module->ctx, module->ref); |
| 885 | |
Radek Krejci | 19a9610 | 2018-11-15 13:38:09 +0100 | [diff] [blame] | 886 | free(module); |
| 887 | } |
Michal Vasko | 33ff942 | 2020-07-03 09:50:39 +0200 | [diff] [blame] | 888 | |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 889 | API void |
| 890 | lysc_extension_instance_free(struct ly_ctx *ctx, struct lysc_ext_substmt *substmts) |
| 891 | { |
Radek Krejci | 1deb5be | 2020-08-26 16:43:36 +0200 | [diff] [blame] | 892 | for (LY_ARRAY_COUNT_TYPE u = 0; substmts[u].stmt; ++u) { |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 893 | if (!substmts[u].storage) { |
| 894 | continue; |
| 895 | } |
| 896 | |
Michal Vasko | d989ba0 | 2020-08-24 10:59:24 +0200 | [diff] [blame] | 897 | switch (substmts[u].stmt) { |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 898 | case LY_STMT_TYPE: |
| 899 | if (substmts[u].cardinality < LY_STMT_CARD_SOME) { |
| 900 | /* single item */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 901 | struct lysc_type *type = *((struct lysc_type **)substmts[u].storage); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 902 | if (!type) { |
| 903 | break; |
| 904 | } |
| 905 | lysc_type_free(ctx, type); |
| 906 | } else { |
| 907 | /* multiple items */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 908 | struct lysc_type **types = *((struct lysc_type ***)substmts[u].storage); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 909 | if (!types) { |
| 910 | break; |
| 911 | } |
| 912 | FREE_ARRAY(ctx, types, lysc_type2_free); |
| 913 | } |
| 914 | break; |
| 915 | case LY_STMT_UNITS: |
| 916 | if (substmts[u].cardinality < LY_STMT_CARD_SOME) { |
| 917 | /* single item */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 918 | const char *str = *((const char **)substmts[u].storage); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 919 | if (!str) { |
| 920 | break; |
| 921 | } |
| 922 | FREE_STRING(ctx, str); |
| 923 | } else { |
| 924 | /* multiple items */ |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 925 | const char **strs = *((const char ***)substmts[u].storage); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 926 | if (!strs) { |
| 927 | break; |
| 928 | } |
| 929 | FREE_STRINGS(ctx, strs); |
| 930 | } |
| 931 | break; |
| 932 | case LY_STMT_STATUS: |
Radek Krejci | ad5963b | 2019-09-06 16:03:05 +0200 | [diff] [blame] | 933 | case LY_STMT_CONFIG: |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 934 | /* nothing to do */ |
| 935 | break; |
| 936 | case LY_STMT_IF_FEATURE: { |
Michal Vasko | 22df3f0 | 2020-08-24 13:29:22 +0200 | [diff] [blame] | 937 | struct lysc_iffeature *iff = *((struct lysc_iffeature **)substmts[u].storage); |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 938 | if (!iff) { |
| 939 | break; |
| 940 | } |
| 941 | if (substmts[u].cardinality < LY_STMT_CARD_SOME) { |
| 942 | /* single item */ |
| 943 | lysc_iffeature_free(ctx, iff); |
| 944 | free(iff); |
| 945 | } else { |
| 946 | /* multiple items */ |
| 947 | FREE_ARRAY(ctx, iff, lysc_iffeature_free); |
| 948 | } |
| 949 | break; |
| 950 | } |
| 951 | |
Radek Krejci | 0f96988 | 2020-08-21 16:56:47 +0200 | [diff] [blame] | 952 | /* TODO other statements */ |
Radek Krejci | 38d8536 | 2019-09-05 16:26:38 +0200 | [diff] [blame] | 953 | default: |
| 954 | LOGINT(ctx); |
| 955 | } |
| 956 | } |
| 957 | } |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 958 | |
| 959 | void |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 960 | yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx) |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 961 | { |
| 962 | if (ctx) { |
| 963 | free(ctx); |
| 964 | } |
| 965 | } |
| 966 | |
| 967 | void |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 968 | yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx) |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 969 | { |
| 970 | if (ctx) { |
Michal Vasko | b36053d | 2020-03-26 15:49:30 +0100 | [diff] [blame] | 971 | lyxml_ctx_free(ctx->xmlctx); |
David Sedlák | ebd3acf | 2019-07-26 15:04:32 +0200 | [diff] [blame] | 972 | free(ctx); |
| 973 | } |
| 974 | } |