blob: e969a379a139ca7deec68dc4c7253d47c1f3627a [file] [log] [blame]
Radek Krejci19a96102018-11-15 13:38:09 +01001/**
Radek Krejcie7b95092019-05-15 11:03:07 +02002 * @file tree_schema_free.c
Radek Krejci19a96102018-11-15 13:38:09 +01003 * @author Radek Krejci <rkrejci@cesnet.cz>
Radek Krejcie7b95092019-05-15 11:03:07 +02004 * @brief Freeing functions for schema tree structures.
Radek Krejci19a96102018-11-15 13:38:09 +01005 *
Radek Krejcie7b95092019-05-15 11:03:07 +02006 * Copyright (c) 2019 CESNET, z.s.p.o.
Radek Krejci19a96102018-11-15 13:38:09 +01007 *
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 Krejcie7b95092019-05-15 11:03:07 +020015#include <stdlib.h>
16
Radek Krejci535ea9f2020-05-29 16:01:05 +020017#include "common.h"
Michal Vasko69730152020-10-09 16:30:07 +020018#include "compat.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020019#include "plugins_exts.h"
20#include "plugins_types.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020021#include "tree.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020022#include "tree_data.h"
Radek Krejcie7b95092019-05-15 11:03:07 +020023#include "tree_schema.h"
Radek Krejci19a96102018-11-15 13:38:09 +010024#include "tree_schema_internal.h"
Radek Krejci535ea9f2020-05-29 16:01:05 +020025#include "xml.h"
Radek Krejci19a96102018-11-15 13:38:09 +010026#include "xpath.h"
27
Radek Krejci2d7a47b2019-05-16 13:34:10 +020028void lysp_grp_free(struct ly_ctx *ctx, struct lysp_grp *grp);
Michal Vasko5fe75f12020-03-02 13:52:37 +010029void lysc_extension_free(struct ly_ctx *ctx, struct lysc_ext **ext);
Radek Krejci19a96102018-11-15 13:38:09 +010030
31static void
32lysp_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 Krejci2d7a47b2019-05-16 13:34:10 +020046void
Radek Krejci19a96102018-11-15 13:38:09 +010047lysp_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ák298ff6d2019-07-26 14:29:03 +020059void
Radek Krejci19a96102018-11-15 13:38:09 +010060lysp_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ák0c2bab92019-07-22 15:33:19 +020070void
Radek Krejci19a96102018-11-15 13:38:09 +010071lysp_include_free(struct ly_ctx *ctx, struct lysp_include *include)
72{
73 if (include->submodule) {
Michal Vasko5d24f6c2020-10-13 13:49:06 +020074 lysp_module_free((struct lysp_module *)include->submodule);
Radek Krejci19a96102018-11-15 13:38:09 +010075 }
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ákaa854b02019-07-22 14:17:10 +020082void
Radek Krejci19a96102018-11-15 13:38:09 +010083lysp_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ák986cb412019-07-04 13:10:11 +020090void
Radek Krejci19a96102018-11-15 13:38:09 +010091lysp_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 Vasko5fe75f12020-03-02 13:52:37 +010098 if (ext->compiled) {
99 lysc_extension_free(ctx, &ext->compiled);
100 }
Radek Krejci19a96102018-11-15 13:38:09 +0100101}
102
Radek Krejci2d7a47b2019-05-16 13:34:10 +0200103void
Radek Krejci19a96102018-11-15 13:38:09 +0100104lysp_feature_free(struct ly_ctx *ctx, struct lysp_feature *feat)
105{
106 FREE_STRING(ctx, feat->name);
Michal Vasko7f45cf22020-10-01 12:49:44 +0200107 FREE_ARRAY(ctx, feat->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100108 FREE_STRING(ctx, feat->dsc);
109 FREE_STRING(ctx, feat->ref);
110 FREE_ARRAY(ctx, feat->exts, lysp_ext_instance_free);
111}
112
Radek Krejci2d7a47b2019-05-16 13:34:10 +0200113void
Radek Krejci19a96102018-11-15 13:38:09 +0100114lysp_ident_free(struct ly_ctx *ctx, struct lysp_ident *ident)
115{
116 FREE_STRING(ctx, ident->name);
Michal Vasko7f45cf22020-10-01 12:49:44 +0200117 FREE_ARRAY(ctx, ident->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100118 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 Vasko7f45cf22020-10-01 12:49:44 +0200124void
Radek Krejci19a96102018-11-15 13:38:09 +0100125lysp_restr_free(struct ly_ctx *ctx, struct lysp_restr *restr)
126{
Michal Vasko7f45cf22020-10-01 12:49:44 +0200127 FREE_STRING(ctx, restr->arg.str);
Radek Krejci19a96102018-11-15 13:38:09 +0100128 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
135static void
136lysp_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 Vasko7f45cf22020-10-01 12:49:44 +0200141 FREE_ARRAY(ctx, item->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100142 FREE_ARRAY(ctx, item->exts, lysp_ext_instance_free);
143}
144
Radek Krejcicdfecd92018-11-26 11:27:32 +0100145void lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type);
Michal Vasko004d3152020-06-11 19:59:22 +0200146
David Sedlák32488102019-07-15 17:44:10 +0200147void
Radek Krejci19a96102018-11-15 13:38:09 +0100148lysp_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 Vasko004d3152020-06-11 19:59:22 +0200156 lyxp_expr_free(ctx, type->path);
Radek Krejci19a96102018-11-15 13:38:09 +0100157 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ák04e17b22019-07-19 15:29:48 +0200165void
Radek Krejci19a96102018-11-15 13:38:09 +0100166lysp_tpdf_free(struct ly_ctx *ctx, struct lysp_tpdf *tpdf)
167{
168 FREE_STRING(ctx, tpdf->name);
169 FREE_STRING(ctx, tpdf->units);
Michal Vasko7f45cf22020-10-01 12:49:44 +0200170 FREE_STRING(ctx, tpdf->dflt.str);
Radek Krejci19a96102018-11-15 13:38:09 +0100171 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 Krejcif538ce52019-03-05 10:46:14 +0100179void
Radek Krejci19a96102018-11-15 13:38:09 +0100180lysp_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 Krejci2d7a47b2019-05-16 13:34:10 +0200194void
Radek Krejci19a96102018-11-15 13:38:09 +0100195lysp_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 Vasko7f45cf22020-10-01 12:49:44 +0200200 FREE_ARRAY(ctx, action->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100201 FREE_ARRAY(ctx, action->typedefs, lysp_tpdf_free);
202 FREE_ARRAY(ctx, action->groupings, lysp_grp_free);
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100203 lysp_action_inout_free(ctx, &action->input);
204 lysp_action_inout_free(ctx, &action->output);
Radek Krejci19a96102018-11-15 13:38:09 +0100205 FREE_ARRAY(ctx, action->exts, lysp_ext_instance_free);
206}
207
Radek Krejci2d7a47b2019-05-16 13:34:10 +0200208void
Radek Krejci19a96102018-11-15 13:38:09 +0100209lysp_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 Vasko7f45cf22020-10-01 12:49:44 +0200216 FREE_ARRAY(ctx, notif->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100217 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 Krejci2d7a47b2019-05-16 13:34:10 +0200226void
Radek Krejci19a96102018-11-15 13:38:09 +0100227lysp_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 Krejcif09e4e82019-06-14 15:08:11 +0200244void
Radek Krejci19a96102018-11-15 13:38:09 +0100245lysp_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 Krejci2d7a47b2019-05-16 13:34:10 +0200253void
Radek Krejci19a96102018-11-15 13:38:09 +0100254lysp_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 Vasko7f45cf22020-10-01 12:49:44 +0200262 FREE_ARRAY(ctx, augment->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100263 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 Krejci2d7a47b2019-05-16 13:34:10 +0200271void
Michal Vasko7f45cf22020-10-01 12:49:44 +0200272lysp_qname_free(struct ly_ctx *ctx, struct lysp_qname *qname)
273{
274 if (qname) {
275 FREE_STRING(ctx, qname->str);
276 }
277}
278
279void
Radek Krejci19a96102018-11-15 13:38:09 +0100280lysp_deviate_free(struct ly_ctx *ctx, struct lysp_deviate *d)
281{
Michal Vasko22df3f02020-08-24 13:29:22 +0200282 struct lysp_deviate_add *add = (struct lysp_deviate_add *)d;
283 struct lysp_deviate_rpl *rpl = (struct lysp_deviate_rpl *)d;
Radek Krejci19a96102018-11-15 13:38:09 +0100284
285 FREE_ARRAY(ctx, d->exts, lysp_ext_instance_free);
Michal Vaskod989ba02020-08-24 10:59:24 +0200286 switch (d->mod) {
Radek Krejci19a96102018-11-15 13:38:09 +0100287 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);
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200294 FREE_ARRAY(ctx, add->uniques, lysp_qname_free);
295 FREE_ARRAY(ctx, add->dflts, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100296 break;
297 case LYS_DEV_REPLACE:
298 FREE_MEMBER(ctx, rpl->type, lysp_type_free);
299 FREE_STRING(ctx, rpl->units);
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200300 lysp_qname_free(ctx, &rpl->dflt);
Radek Krejci19a96102018-11-15 13:38:09 +0100301 break;
302 default:
303 LOGINT(ctx);
304 break;
305 }
306}
307
Radek Krejci2d7a47b2019-05-16 13:34:10 +0200308void
Radek Krejci19a96102018-11-15 13:38:09 +0100309lysp_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ákd2d676a2019-07-22 11:28:19 +0200323void
Radek Krejci19a96102018-11-15 13:38:09 +0100324lysp_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 Vasko7f45cf22020-10-01 12:49:44 +0200329 FREE_ARRAY(ctx, ref->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100330 FREE_ARRAY(ctx, ref->musts, lysp_restr_free);
331 FREE_STRING(ctx, ref->presence);
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200332 FREE_ARRAY(ctx, ref->dflts, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100333 FREE_ARRAY(ctx, ref->exts, lysp_ext_instance_free);
334}
335
Radek Krejci2d7a47b2019-05-16 13:34:10 +0200336void
Radek Krejci19a96102018-11-15 13:38:09 +0100337lysp_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 Vasko7f45cf22020-10-01 12:49:44 +0200345 FREE_ARRAY(ctx, node->iffeatures, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100346 FREE_ARRAY(ctx, node->exts, lysp_ext_instance_free);
347
Michal Vaskod989ba02020-08-24 10:59:24 +0200348 switch (node->nodetype) {
Radek Krejci19a96102018-11-15 13:38:09 +0100349 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +0200350 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 Krejci19a96102018-11-15 13:38:09 +0100355 lysp_node_free(ctx, child);
356 }
Michal Vasko22df3f02020-08-24 13:29:22 +0200357 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 Krejci19a96102018-11-15 13:38:09 +0100359 break;
360 case LYS_LEAF:
Michal Vasko22df3f02020-08-24 13:29:22 +0200361 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 Vasko7f45cf22020-10-01 12:49:44 +0200364 FREE_STRING(ctx, ((struct lysp_node_leaf *)node)->dflt.str);
Radek Krejci19a96102018-11-15 13:38:09 +0100365 break;
366 case LYS_LEAFLIST:
Michal Vasko22df3f02020-08-24 13:29:22 +0200367 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 Vasko7f45cf22020-10-01 12:49:44 +0200370 FREE_ARRAY(ctx, ((struct lysp_node_leaflist *)node)->dflts, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100371 break;
372 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +0200373 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 Krejci19a96102018-11-15 13:38:09 +0100378 lysp_node_free(ctx, child);
379 }
Michal Vasko22df3f02020-08-24 13:29:22 +0200380 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 Vasko7f45cf22020-10-01 12:49:44 +0200382 FREE_ARRAY(ctx, ((struct lysp_node_list *)node)->uniques, lysp_qname_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100383 break;
384 case LYS_CHOICE:
Michal Vasko22df3f02020-08-24 13:29:22 +0200385 LY_LIST_FOR_SAFE(((struct lysp_node_choice *)node)->child, next, child) {
Radek Krejci19a96102018-11-15 13:38:09 +0100386 lysp_node_free(ctx, child);
387 }
Michal Vasko7f45cf22020-10-01 12:49:44 +0200388 FREE_STRING(ctx, ((struct lysp_node_choice *)node)->dflt.str);
Radek Krejci19a96102018-11-15 13:38:09 +0100389 break;
390 case LYS_CASE:
Michal Vasko22df3f02020-08-24 13:29:22 +0200391 LY_LIST_FOR_SAFE(((struct lysp_node_case *)node)->child, next, child) {
Radek Krejci19a96102018-11-15 13:38:09 +0100392 lysp_node_free(ctx, child);
393 }
394 break;
395 case LYS_ANYDATA:
396 case LYS_ANYXML:
Michal Vasko22df3f02020-08-24 13:29:22 +0200397 FREE_ARRAY(ctx, ((struct lysp_node_anydata *)node)->musts, lysp_restr_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100398 break;
399 case LYS_USES:
Michal Vasko22df3f02020-08-24 13:29:22 +0200400 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 Krejci19a96102018-11-15 13:38:09 +0100402 break;
403 default:
404 LOGINT(ctx);
405 }
406
407 free(node);
408}
409
410API void
411lysp_module_free(struct lysp_module *module)
412{
413 struct ly_ctx *ctx;
414 struct lysp_node *node, *next;
415
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100416 if (!module) {
417 return;
418 }
419 ctx = module->mod->ctx;
Radek Krejci19a96102018-11-15 13:38:09 +0100420
421 FREE_ARRAY(ctx, module->imports, lysp_import_free);
422 FREE_ARRAY(ctx, module->includes, lysp_include_free);
423
Radek Krejci19a96102018-11-15 13:38:09 +0100424 FREE_ARRAY(ctx, module->revs, lysp_revision_free);
425 FREE_ARRAY(ctx, module->extensions, lysp_ext_free);
426 FREE_ARRAY(ctx, module->features, lysp_feature_free);
427 FREE_ARRAY(ctx, module->identities, lysp_ident_free);
428 FREE_ARRAY(ctx, module->typedefs, lysp_tpdf_free);
429 FREE_ARRAY(ctx, module->groupings, lysp_grp_free);
430 LY_LIST_FOR_SAFE(module->data, next, node) {
431 lysp_node_free(ctx, node);
432 }
433 FREE_ARRAY(ctx, module->augments, lysp_augment_free);
434 FREE_ARRAY(ctx, module->rpcs, lysp_action_free);
435 FREE_ARRAY(ctx, module->notifs, lysp_notif_free);
436 FREE_ARRAY(ctx, module->deviations, lysp_deviation_free);
437 FREE_ARRAY(ctx, module->exts, lysp_ext_instance_free);
438
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200439 if (module->is_submod) {
440 struct lysp_submodule *submod = (struct lysp_submodule *)module;
441
442 FREE_STRING(ctx, submod->name);
443 FREE_STRING(ctx, submod->filepath);
444 FREE_STRING(ctx, submod->prefix);
445 FREE_STRING(ctx, submod->org);
446 FREE_STRING(ctx, submod->contact);
447 FREE_STRING(ctx, submod->dsc);
448 FREE_STRING(ctx, submod->ref);
449 }
450
Radek Krejci19a96102018-11-15 13:38:09 +0100451 free(module);
452}
453
Radek Krejci0af46292019-01-11 16:02:31 +0100454void
Michal Vasko6f4cbb62020-02-28 11:15:47 +0100455lysc_extension_free(struct ly_ctx *ctx, struct lysc_ext **ext)
456{
457 if (--(*ext)->refcount) {
458 return;
459 }
460 FREE_STRING(ctx, (*ext)->name);
461 FREE_STRING(ctx, (*ext)->argument);
462 FREE_ARRAY(ctx, (*ext)->exts, lysc_ext_instance_free);
463 free(*ext);
464}
465
466void
Radek Krejci19a96102018-11-15 13:38:09 +0100467lysc_ext_instance_free(struct ly_ctx *ctx, struct lysc_ext_instance *ext)
468{
fredganebc50572019-10-31 15:39:23 +0800469 if (ext->def && ext->def->plugin && ext->def->plugin->free) {
Radek Krejci38d85362019-09-05 16:26:38 +0200470 ext->def->plugin->free(ctx, ext);
471 }
Juraj Vijtiuk4a19ab02020-03-03 13:50:14 +0100472 if (ext->def) {
473 lysc_extension_free(ctx, &ext->def);
474 }
Radek Krejci0935f412019-08-20 16:15:18 +0200475 FREE_STRING(ctx, ext->argument);
476 FREE_ARRAY(ctx, ext->exts, lysc_ext_instance_free);
477}
478
479void
Radek Krejci19a96102018-11-15 13:38:09 +0100480lysc_iffeature_free(struct ly_ctx *UNUSED(ctx), struct lysc_iffeature *iff)
481{
482 LY_ARRAY_FREE(iff->features);
483 free(iff->expr);
484}
485
486static void
Radek Krejci00b874b2019-02-12 10:54:50 +0100487lysc_when_free(struct ly_ctx *ctx, struct lysc_when **w)
Radek Krejci58d171e2018-11-23 13:50:55 +0100488{
Radek Krejci00b874b2019-02-12 10:54:50 +0100489 if (--(*w)->refcount) {
490 return;
491 }
492 lyxp_expr_free(ctx, (*w)->cond);
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200493 lysc_prefixes_free((*w)->prefixes);
Radek Krejci00b874b2019-02-12 10:54:50 +0100494 FREE_STRING(ctx, (*w)->dsc);
495 FREE_STRING(ctx, (*w)->ref);
496 FREE_ARRAY(ctx, (*w)->exts, lysc_ext_instance_free);
497 free(*w);
Radek Krejci58d171e2018-11-23 13:50:55 +0100498}
499
Radek Krejciccd20f12019-02-15 14:12:27 +0100500void
Radek Krejci58d171e2018-11-23 13:50:55 +0100501lysc_must_free(struct ly_ctx *ctx, struct lysc_must *must)
502{
503 lyxp_expr_free(ctx, must->cond);
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200504 lysc_prefixes_free(must->prefixes);
Radek Krejci58d171e2018-11-23 13:50:55 +0100505 FREE_STRING(ctx, must->emsg);
506 FREE_STRING(ctx, must->eapptag);
Radek Krejcic8b31002019-01-08 10:24:45 +0100507 FREE_STRING(ctx, must->dsc);
508 FREE_STRING(ctx, must->ref);
Radek Krejci58d171e2018-11-23 13:50:55 +0100509 FREE_ARRAY(ctx, must->exts, lysc_ext_instance_free);
510}
511
512static void
Radek Krejci19a96102018-11-15 13:38:09 +0100513lysc_ident_free(struct ly_ctx *ctx, struct lysc_ident *ident)
514{
515 FREE_STRING(ctx, ident->name);
Radek Krejcic8b31002019-01-08 10:24:45 +0100516 FREE_STRING(ctx, ident->dsc);
517 FREE_STRING(ctx, ident->ref);
Radek Krejci19a96102018-11-15 13:38:09 +0100518 FREE_ARRAY(ctx, ident->iffeatures, lysc_iffeature_free);
519 LY_ARRAY_FREE(ident->derived);
520 FREE_ARRAY(ctx, ident->exts, lysc_ext_instance_free);
521}
522
Radek Krejci2d7a47b2019-05-16 13:34:10 +0200523void
Radek Krejci19a96102018-11-15 13:38:09 +0100524lysc_feature_free(struct ly_ctx *ctx, struct lysc_feature *feat)
525{
526 FREE_STRING(ctx, feat->name);
Radek Krejcic8b31002019-01-08 10:24:45 +0100527 FREE_STRING(ctx, feat->dsc);
528 FREE_STRING(ctx, feat->ref);
Radek Krejci19a96102018-11-15 13:38:09 +0100529 FREE_ARRAY(ctx, feat->iffeatures, lysc_iffeature_free);
530 LY_ARRAY_FREE(feat->depfeatures);
531 FREE_ARRAY(ctx, feat->exts, lysc_ext_instance_free);
532}
533
534static void
535lysc_range_free(struct ly_ctx *ctx, struct lysc_range *range)
536{
537 LY_ARRAY_FREE(range->parts);
538 FREE_STRING(ctx, range->eapptag);
539 FREE_STRING(ctx, range->emsg);
Radek Krejcic8b31002019-01-08 10:24:45 +0100540 FREE_STRING(ctx, range->dsc);
541 FREE_STRING(ctx, range->ref);
Radek Krejci19a96102018-11-15 13:38:09 +0100542 FREE_ARRAY(ctx, range->exts, lysc_ext_instance_free);
543}
544
545static void
546lysc_pattern_free(struct ly_ctx *ctx, struct lysc_pattern **pattern)
547{
548 if (--(*pattern)->refcount) {
549 return;
550 }
Radek Krejci54579462019-04-30 12:47:06 +0200551 pcre2_code_free((*pattern)->code);
552 FREE_STRING(ctx, (*pattern)->expr);
Radek Krejci19a96102018-11-15 13:38:09 +0100553 FREE_STRING(ctx, (*pattern)->eapptag);
554 FREE_STRING(ctx, (*pattern)->emsg);
Radek Krejcic8b31002019-01-08 10:24:45 +0100555 FREE_STRING(ctx, (*pattern)->dsc);
556 FREE_STRING(ctx, (*pattern)->ref);
Radek Krejci19a96102018-11-15 13:38:09 +0100557 FREE_ARRAY(ctx, (*pattern)->exts, lysc_ext_instance_free);
558 free(*pattern);
559}
560
561static void
Radek Krejci693262f2019-04-29 15:23:20 +0200562lysc_enum_item_free(struct ly_ctx *ctx, struct lysc_type_bitenum_item *item)
Radek Krejci19a96102018-11-15 13:38:09 +0100563{
564 FREE_STRING(ctx, item->name);
Radek Krejcic8b31002019-01-08 10:24:45 +0100565 FREE_STRING(ctx, item->dsc);
566 FREE_STRING(ctx, item->ref);
Radek Krejci19a96102018-11-15 13:38:09 +0100567 FREE_ARRAY(ctx, item->iffeatures, lysc_iffeature_free);
568 FREE_ARRAY(ctx, item->exts, lysc_ext_instance_free);
569}
570
Radek Krejcia3045382018-11-22 14:30:31 +0100571static void
572lysc_type2_free(struct ly_ctx *ctx, struct lysc_type **type)
573{
574 lysc_type_free(ctx, *type);
575}
Radek Krejci0f969882020-08-21 16:56:47 +0200576
Radek Krejcicdfecd92018-11-26 11:27:32 +0100577void
Radek Krejci19a96102018-11-15 13:38:09 +0100578lysc_type_free(struct ly_ctx *ctx, struct lysc_type *type)
579{
580 if (--type->refcount) {
581 return;
582 }
Radek Krejcib915ac92020-08-14 23:31:04 +0200583
Michal Vaskod989ba02020-08-24 10:59:24 +0200584 switch (type->basetype) {
Radek Krejci19a96102018-11-15 13:38:09 +0100585 case LY_TYPE_BINARY:
Michal Vasko22df3f02020-08-24 13:29:22 +0200586 FREE_MEMBER(ctx, ((struct lysc_type_bin *)type)->length, lysc_range_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100587 break;
588 case LY_TYPE_BITS:
Michal Vasko22df3f02020-08-24 13:29:22 +0200589 FREE_ARRAY(ctx, (struct lysc_type_bitenum_item *)((struct lysc_type_bits *)type)->bits, lysc_enum_item_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100590 break;
Radek Krejci6cba4292018-11-15 17:33:29 +0100591 case LY_TYPE_DEC64:
Michal Vasko22df3f02020-08-24 13:29:22 +0200592 FREE_MEMBER(ctx, ((struct lysc_type_dec *)type)->range, lysc_range_free);
Radek Krejci6cba4292018-11-15 17:33:29 +0100593 break;
Radek Krejci19a96102018-11-15 13:38:09 +0100594 case LY_TYPE_STRING:
Michal Vasko22df3f02020-08-24 13:29:22 +0200595 FREE_MEMBER(ctx, ((struct lysc_type_str *)type)->length, lysc_range_free);
596 FREE_ARRAY(ctx, ((struct lysc_type_str *)type)->patterns, lysc_pattern_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100597 break;
598 case LY_TYPE_ENUM:
Michal Vasko22df3f02020-08-24 13:29:22 +0200599 FREE_ARRAY(ctx, ((struct lysc_type_enum *)type)->enums, lysc_enum_item_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100600 break;
601 case LY_TYPE_INT8:
602 case LY_TYPE_UINT8:
603 case LY_TYPE_INT16:
604 case LY_TYPE_UINT16:
605 case LY_TYPE_INT32:
606 case LY_TYPE_UINT32:
607 case LY_TYPE_INT64:
608 case LY_TYPE_UINT64:
Michal Vasko22df3f02020-08-24 13:29:22 +0200609 FREE_MEMBER(ctx, ((struct lysc_type_num *)type)->range, lysc_range_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100610 break;
Radek Krejci555cb5b2018-11-16 14:54:33 +0100611 case LY_TYPE_IDENT:
Michal Vasko22df3f02020-08-24 13:29:22 +0200612 LY_ARRAY_FREE(((struct lysc_type_identityref *)type)->bases);
Radek Krejci555cb5b2018-11-16 14:54:33 +0100613 break;
Radek Krejcia3045382018-11-22 14:30:31 +0100614 case LY_TYPE_UNION:
Michal Vasko22df3f02020-08-24 13:29:22 +0200615 FREE_ARRAY(ctx, ((struct lysc_type_union *)type)->types, lysc_type2_free);
Radek Krejcia3045382018-11-22 14:30:31 +0100616 break;
617 case LY_TYPE_LEAFREF:
Michal Vasko22df3f02020-08-24 13:29:22 +0200618 lyxp_expr_free(ctx, ((struct lysc_type_leafref *)type)->path);
Michal Vasko5d24f6c2020-10-13 13:49:06 +0200619 lysc_prefixes_free(((struct lysc_type_leafref *)type)->prefixes);
Radek Krejcia3045382018-11-22 14:30:31 +0100620 break;
Radek Krejci16c0f822018-11-16 10:46:10 +0100621 case LY_TYPE_INST:
Radek Krejci19a96102018-11-15 13:38:09 +0100622 case LY_TYPE_BOOL:
623 case LY_TYPE_EMPTY:
Radek Krejci43699232018-11-23 14:59:46 +0100624 case LY_TYPE_UNKNOWN:
Radek Krejci19a96102018-11-15 13:38:09 +0100625 /* nothing to do */
626 break;
627 }
Michal Vaskoba99a3e2020-08-18 15:50:05 +0200628
629 FREE_ARRAY(ctx, type->exts, lysc_ext_instance_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100630 free(type);
631}
632
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100633void
Radek Krejcif538ce52019-03-05 10:46:14 +0100634lysc_action_inout_free(struct ly_ctx *ctx, struct lysc_action_inout *inout)
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100635{
636 struct lysc_node *child, *child_next;
637
Radek Krejcif538ce52019-03-05 10:46:14 +0100638 FREE_ARRAY(ctx, inout->musts, lysc_must_free);
639 LY_LIST_FOR_SAFE(inout->data, child_next, child) {
640 lysc_node_free(ctx, child);
641 }
642}
643
644void
645lysc_action_free(struct ly_ctx *ctx, struct lysc_action *action)
646{
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100647 FREE_STRING(ctx, action->name);
648 FREE_STRING(ctx, action->dsc);
649 FREE_STRING(ctx, action->ref);
650 FREE_ARRAY(ctx, action->iffeatures, lysc_iffeature_free);
651 FREE_ARRAY(ctx, action->exts, lysc_ext_instance_free);
Michal Vaskoceab6dd2020-10-09 16:53:36 +0200652 FREE_ARRAY(ctx, action->when, lysc_when_free);
Radek Krejcifc11bd72019-04-11 16:00:05 +0200653 FREE_ARRAY(ctx, action->input_exts, lysc_ext_instance_free);
Radek Krejcif538ce52019-03-05 10:46:14 +0100654 lysc_action_inout_free(ctx, &action->input);
Radek Krejcifc11bd72019-04-11 16:00:05 +0200655 FREE_ARRAY(ctx, action->output_exts, lysc_ext_instance_free);
Radek Krejcif538ce52019-03-05 10:46:14 +0100656 lysc_action_inout_free(ctx, &action->output);
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100657}
658
Radek Krejcifc11bd72019-04-11 16:00:05 +0200659void
660lysc_notif_free(struct ly_ctx *ctx, struct lysc_notif *notif)
661{
662 struct lysc_node *child, *child_next;
663
664 FREE_STRING(ctx, notif->name);
665 FREE_STRING(ctx, notif->dsc);
666 FREE_STRING(ctx, notif->ref);
667 FREE_ARRAY(ctx, notif->iffeatures, lysc_iffeature_free);
668 FREE_ARRAY(ctx, notif->exts, lysc_ext_instance_free);
Michal Vaskoceab6dd2020-10-09 16:53:36 +0200669 FREE_ARRAY(ctx, notif->when, lysc_when_free);
Radek Krejcifc11bd72019-04-11 16:00:05 +0200670 FREE_ARRAY(ctx, notif->musts, lysc_must_free);
671 LY_LIST_FOR_SAFE(notif->data, child_next, child) {
672 lysc_node_free(ctx, child);
673 }
674}
675
Radek Krejcif2de0ed2019-05-02 14:13:18 +0200676void
Radek Krejci19a96102018-11-15 13:38:09 +0100677lysc_node_container_free(struct ly_ctx *ctx, struct lysc_node_container *node)
678{
679 struct lysc_node *child, *child_next;
680
681 LY_LIST_FOR_SAFE(node->child, child_next, child) {
682 lysc_node_free(ctx, child);
683 }
Radek Krejci58d171e2018-11-23 13:50:55 +0100684 FREE_ARRAY(ctx, node->musts, lysc_must_free);
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100685 FREE_ARRAY(ctx, node->actions, lysc_action_free);
Radek Krejcifc11bd72019-04-11 16:00:05 +0200686 FREE_ARRAY(ctx, node->notifs, lysc_notif_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100687}
688
689static void
690lysc_node_leaf_free(struct ly_ctx *ctx, struct lysc_node_leaf *node)
691{
Radek Krejci58d171e2018-11-23 13:50:55 +0100692 FREE_ARRAY(ctx, node->musts, lysc_must_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100693 if (node->type) {
694 lysc_type_free(ctx, node->type);
695 }
Radek Krejci58d171e2018-11-23 13:50:55 +0100696 FREE_STRING(ctx, node->units);
Radek Krejcia1911222019-07-22 17:24:50 +0200697 if (node->dflt) {
698 node->dflt->realtype->plugin->free(ctx, node->dflt);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200699 lysc_type_free(ctx, (struct lysc_type *)node->dflt->realtype);
Radek Krejcia1911222019-07-22 17:24:50 +0200700 free(node->dflt);
701 }
Radek Krejci19a96102018-11-15 13:38:09 +0100702}
703
Radek Krejci42452ac2018-11-28 17:09:52 +0100704static void
705lysc_node_leaflist_free(struct ly_ctx *ctx, struct lysc_node_leaflist *node)
706{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200707 LY_ARRAY_COUNT_TYPE u;
Radek Krejci42452ac2018-11-28 17:09:52 +0100708
Radek Krejci42452ac2018-11-28 17:09:52 +0100709 FREE_ARRAY(ctx, node->musts, lysc_must_free);
710 if (node->type) {
711 lysc_type_free(ctx, node->type);
712 }
713 FREE_STRING(ctx, node->units);
714 LY_ARRAY_FOR(node->dflts, u) {
Radek Krejcia1911222019-07-22 17:24:50 +0200715 node->dflts[u]->realtype->plugin->free(ctx, node->dflts[u]);
Michal Vaskofeca4fb2020-10-05 08:58:40 +0200716 lysc_type_free(ctx, (struct lysc_type *)node->dflts[u]->realtype);
Radek Krejcia1911222019-07-22 17:24:50 +0200717 free(node->dflts[u]);
Radek Krejci42452ac2018-11-28 17:09:52 +0100718 }
719 LY_ARRAY_FREE(node->dflts);
720}
721
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100722static void
723lysc_node_list_free(struct ly_ctx *ctx, struct lysc_node_list *node)
724{
Michal Vaskofd69e1d2020-07-03 11:57:17 +0200725 LY_ARRAY_COUNT_TYPE u;
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100726 struct lysc_node *child, *child_next;
727
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100728 LY_LIST_FOR_SAFE(node->child, child_next, child) {
729 lysc_node_free(ctx, child);
730 }
731 FREE_ARRAY(ctx, node->musts, lysc_must_free);
732
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100733 LY_ARRAY_FOR(node->uniques, u) {
734 LY_ARRAY_FREE(node->uniques[u]);
735 }
736 LY_ARRAY_FREE(node->uniques);
737
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100738 FREE_ARRAY(ctx, node->actions, lysc_action_free);
Radek Krejcifc11bd72019-04-11 16:00:05 +0200739 FREE_ARRAY(ctx, node->notifs, lysc_notif_free);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100740}
741
Radek Krejci056d0a82018-12-06 16:57:25 +0100742static void
743lysc_node_choice_free(struct ly_ctx *ctx, struct lysc_node_choice *node)
744{
745 struct lysc_node *child, *child_next;
746
Michal Vasko20424b42020-08-31 12:29:38 +0200747 LY_LIST_FOR_SAFE((struct lysc_node *)node->cases, child_next, child) {
748 lysc_node_free(ctx, child);
749 }
750}
751
752static void
753lysc_node_case_free(struct ly_ctx *ctx, struct lysc_node_case *node)
754{
755 struct lysc_node *child, *child_next;
756
757 LY_LIST_FOR_SAFE(node->child, child_next, child) {
758 lysc_node_free(ctx, child);
Radek Krejci056d0a82018-12-06 16:57:25 +0100759 }
Radek Krejci9800fb82018-12-13 14:26:23 +0100760}
Radek Krejci056d0a82018-12-06 16:57:25 +0100761
Radek Krejci9800fb82018-12-13 14:26:23 +0100762static void
763lysc_node_anydata_free(struct ly_ctx *ctx, struct lysc_node_anydata *node)
764{
765 FREE_ARRAY(ctx, node->musts, lysc_must_free);
Radek Krejci056d0a82018-12-06 16:57:25 +0100766}
767
Radek Krejci19a96102018-11-15 13:38:09 +0100768void
769lysc_node_free(struct ly_ctx *ctx, struct lysc_node *node)
770{
771 /* common part */
772 FREE_STRING(ctx, node->name);
Radek Krejci12fb9142019-01-08 09:45:30 +0100773 FREE_STRING(ctx, node->dsc);
774 FREE_STRING(ctx, node->ref);
Radek Krejci19a96102018-11-15 13:38:09 +0100775
776 /* nodetype-specific part */
Michal Vaskod989ba02020-08-24 10:59:24 +0200777 switch (node->nodetype) {
Radek Krejci19a96102018-11-15 13:38:09 +0100778 case LYS_CONTAINER:
Michal Vasko22df3f02020-08-24 13:29:22 +0200779 lysc_node_container_free(ctx, (struct lysc_node_container *)node);
Radek Krejci19a96102018-11-15 13:38:09 +0100780 break;
781 case LYS_LEAF:
Michal Vasko22df3f02020-08-24 13:29:22 +0200782 lysc_node_leaf_free(ctx, (struct lysc_node_leaf *)node);
Radek Krejci19a96102018-11-15 13:38:09 +0100783 break;
Radek Krejci42452ac2018-11-28 17:09:52 +0100784 case LYS_LEAFLIST:
Michal Vasko22df3f02020-08-24 13:29:22 +0200785 lysc_node_leaflist_free(ctx, (struct lysc_node_leaflist *)node);
Radek Krejci42452ac2018-11-28 17:09:52 +0100786 break;
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100787 case LYS_LIST:
Michal Vasko22df3f02020-08-24 13:29:22 +0200788 lysc_node_list_free(ctx, (struct lysc_node_list *)node);
Radek Krejci9bb94eb2018-12-04 16:48:35 +0100789 break;
Radek Krejci056d0a82018-12-06 16:57:25 +0100790 case LYS_CHOICE:
Michal Vasko22df3f02020-08-24 13:29:22 +0200791 lysc_node_choice_free(ctx, (struct lysc_node_choice *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +0100792 break;
793 case LYS_CASE:
Michal Vasko20424b42020-08-31 12:29:38 +0200794 lysc_node_case_free(ctx, (struct lysc_node_case *)node);
Radek Krejci056d0a82018-12-06 16:57:25 +0100795 break;
Radek Krejci9800fb82018-12-13 14:26:23 +0100796 case LYS_ANYDATA:
797 case LYS_ANYXML:
Michal Vasko22df3f02020-08-24 13:29:22 +0200798 lysc_node_anydata_free(ctx, (struct lysc_node_anydata *)node);
Radek Krejci9800fb82018-12-13 14:26:23 +0100799 break;
Radek Krejci19a96102018-11-15 13:38:09 +0100800 default:
801 LOGINT(ctx);
802 }
803
Radek Krejci00b874b2019-02-12 10:54:50 +0100804 FREE_ARRAY(ctx, node->when, lysc_when_free);
Radek Krejci056d0a82018-12-06 16:57:25 +0100805 FREE_ARRAY(ctx, node->iffeatures, lysc_iffeature_free);
806 FREE_ARRAY(ctx, node->exts, lysc_ext_instance_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100807 free(node);
808}
809
810static void
811lysc_module_free_(struct lysc_module *module)
812{
813 struct ly_ctx *ctx;
814 struct lysc_node *node, *node_next;
815
Michal Vaskod989ba02020-08-24 10:59:24 +0200816 LY_CHECK_ARG_RET(NULL, module, );
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100817 ctx = module->mod->ctx;
Radek Krejci19a96102018-11-15 13:38:09 +0100818
Radek Krejci19a96102018-11-15 13:38:09 +0100819 LY_LIST_FOR_SAFE(module->data, node_next, node) {
820 lysc_node_free(ctx, node);
821 }
Radek Krejci6eeb58f2019-02-22 16:29:37 +0100822 FREE_ARRAY(ctx, module->rpcs, lysc_action_free);
Radek Krejcifc11bd72019-04-11 16:00:05 +0200823 FREE_ARRAY(ctx, module->notifs, lysc_notif_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100824 FREE_ARRAY(ctx, module->exts, lysc_ext_instance_free);
825
826 free(module);
827}
828
829void
830lysc_module_free(struct lysc_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv))
831{
Radek Krejci9b042892019-02-13 14:28:44 +0100832 /* TODO use the destructor, this just suppress warning about unused parameter */
833 (void) private_destructor;
834
Radek Krejci19a96102018-11-15 13:38:09 +0100835 if (module) {
836 lysc_module_free_(module);
837 }
838}
839
840void
841lys_module_free(struct lys_module *module, void (*private_destructor)(const struct lysc_node *node, void *priv))
842{
843 if (!module) {
844 return;
845 }
846
847 lysc_module_free(module->compiled, private_destructor);
Radek Krejci14915cc2020-09-14 17:28:13 +0200848 FREE_ARRAY(module->ctx, module->features, lysc_feature_free);
Radek Krejci80d281e2020-09-14 17:42:54 +0200849 FREE_ARRAY(module->ctx, module->identities, lysc_ident_free);
Radek Krejci19a96102018-11-15 13:38:09 +0100850 lysp_module_free(module->parsed);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100851
Michal Vasko7f45cf22020-10-01 12:49:44 +0200852 LY_ARRAY_FREE(module->augmented_by);
853 LY_ARRAY_FREE(module->deviated_by);
854
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100855 FREE_STRING(module->ctx, module->name);
Radek Krejci0af46292019-01-11 16:02:31 +0100856 FREE_STRING(module->ctx, module->revision);
Radek Krejci0bcdaed2019-01-10 10:21:34 +0100857 FREE_STRING(module->ctx, module->ns);
858 FREE_STRING(module->ctx, module->prefix);
859 FREE_STRING(module->ctx, module->filepath);
860 FREE_STRING(module->ctx, module->org);
861 FREE_STRING(module->ctx, module->contact);
862 FREE_STRING(module->ctx, module->dsc);
863 FREE_STRING(module->ctx, module->ref);
864
Radek Krejci19a96102018-11-15 13:38:09 +0100865 free(module);
866}
Michal Vasko33ff9422020-07-03 09:50:39 +0200867
Radek Krejci38d85362019-09-05 16:26:38 +0200868API void
869lysc_extension_instance_free(struct ly_ctx *ctx, struct lysc_ext_substmt *substmts)
870{
Radek Krejci1deb5be2020-08-26 16:43:36 +0200871 for (LY_ARRAY_COUNT_TYPE u = 0; substmts[u].stmt; ++u) {
Radek Krejci38d85362019-09-05 16:26:38 +0200872 if (!substmts[u].storage) {
873 continue;
874 }
875
Michal Vaskod989ba02020-08-24 10:59:24 +0200876 switch (substmts[u].stmt) {
Radek Krejci38d85362019-09-05 16:26:38 +0200877 case LY_STMT_TYPE:
878 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
879 /* single item */
Michal Vasko22df3f02020-08-24 13:29:22 +0200880 struct lysc_type *type = *((struct lysc_type **)substmts[u].storage);
Radek Krejci38d85362019-09-05 16:26:38 +0200881 if (!type) {
882 break;
883 }
884 lysc_type_free(ctx, type);
885 } else {
886 /* multiple items */
Michal Vasko22df3f02020-08-24 13:29:22 +0200887 struct lysc_type **types = *((struct lysc_type ***)substmts[u].storage);
Radek Krejci38d85362019-09-05 16:26:38 +0200888 if (!types) {
889 break;
890 }
891 FREE_ARRAY(ctx, types, lysc_type2_free);
892 }
893 break;
894 case LY_STMT_UNITS:
895 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
896 /* single item */
Michal Vasko22df3f02020-08-24 13:29:22 +0200897 const char *str = *((const char **)substmts[u].storage);
Radek Krejci38d85362019-09-05 16:26:38 +0200898 if (!str) {
899 break;
900 }
901 FREE_STRING(ctx, str);
902 } else {
903 /* multiple items */
Michal Vasko22df3f02020-08-24 13:29:22 +0200904 const char **strs = *((const char ***)substmts[u].storage);
Radek Krejci38d85362019-09-05 16:26:38 +0200905 if (!strs) {
906 break;
907 }
908 FREE_STRINGS(ctx, strs);
909 }
910 break;
911 case LY_STMT_STATUS:
Radek Krejciad5963b2019-09-06 16:03:05 +0200912 case LY_STMT_CONFIG:
Radek Krejci38d85362019-09-05 16:26:38 +0200913 /* nothing to do */
914 break;
915 case LY_STMT_IF_FEATURE: {
Michal Vasko22df3f02020-08-24 13:29:22 +0200916 struct lysc_iffeature *iff = *((struct lysc_iffeature **)substmts[u].storage);
Radek Krejci38d85362019-09-05 16:26:38 +0200917 if (!iff) {
918 break;
919 }
920 if (substmts[u].cardinality < LY_STMT_CARD_SOME) {
921 /* single item */
922 lysc_iffeature_free(ctx, iff);
923 free(iff);
924 } else {
925 /* multiple items */
926 FREE_ARRAY(ctx, iff, lysc_iffeature_free);
927 }
928 break;
929 }
930
Radek Krejci0f969882020-08-21 16:56:47 +0200931 /* TODO other statements */
Radek Krejci38d85362019-09-05 16:26:38 +0200932 default:
933 LOGINT(ctx);
934 }
935 }
936}
David Sedlákebd3acf2019-07-26 15:04:32 +0200937
938void
Michal Vaskob36053d2020-03-26 15:49:30 +0100939yang_parser_ctx_free(struct lys_yang_parser_ctx *ctx)
David Sedlákebd3acf2019-07-26 15:04:32 +0200940{
941 if (ctx) {
942 free(ctx);
943 }
944}
945
946void
Michal Vaskob36053d2020-03-26 15:49:30 +0100947yin_parser_ctx_free(struct lys_yin_parser_ctx *ctx)
David Sedlákebd3acf2019-07-26 15:04:32 +0200948{
949 if (ctx) {
Michal Vaskob36053d2020-03-26 15:49:30 +0100950 lyxml_ctx_free(ctx->xmlctx);
David Sedlákebd3acf2019-07-26 15:04:32 +0200951 free(ctx);
952 }
953}