__uci_list_add(head->prev, head, ptr);
}
+static inline void uci_list_del(struct uci_list *ptr)
+{
+ struct uci_list *next, *prev;
+
+ next = ptr->next;
+ prev = ptr->prev;
+
+ prev->next = next;
+ next->prev = prev;
+}
-static struct uci_config *uci_add_file(struct uci_context *ctx, const char *name)
+static struct uci_config *uci_alloc_file(struct uci_context *ctx, const char *name)
{
struct uci_config *cfg;
uci_list_init(&cfg->list);
uci_list_init(&cfg->sections);
cfg->name = uci_strdup(ctx, name);
- uci_list_add(&ctx->root, &cfg->list);
+ cfg->ctx = ctx;
return cfg;
}
+
+static void uci_drop_file(struct uci_config *cfg)
+{
+ /* TODO: free children */
+ uci_list_del(&cfg->list);
+ if (cfg->name)
+ free(cfg->name);
+ free(cfg);
+}
if (!pctx)
return;
+ if (pctx->cfg)
+ uci_drop_file(pctx->cfg);
if (pctx->buf)
free(pctx->buf);
if (pctx->file)
if (!pctx->file)
UCI_THROW(ctx, UCI_ERR_NOTFOUND);
+ pctx->cfg = uci_alloc_file(ctx, name);
+
while (!feof(pctx->file)) {
uci_getln(ctx);
if (*(pctx->buf))
uci_parse_line(ctx);
}
+ /* add to main config file list */
+ uci_list_add(&ctx->root, &pctx->cfg->list);
+ pctx->cfg = NULL;
+
/* if no error happened, we can get rid of the parser context now */
uci_parse_cleanup(ctx);