more list handling
authorFelix Fietkau <nbd@openwrt.org>
Sat, 19 Jan 2008 18:58:45 +0000 (19:58 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Sat, 19 Jan 2008 18:58:45 +0000 (19:58 +0100)
libuci.h
list.c
parse.c

index 3427526ce4e291177d633c4f3e8206e9ade712ed..aba435936bc11476ecaa4d84e0be19ca8889d14b 100644 (file)
--- a/libuci.h
+++ b/libuci.h
@@ -89,6 +89,7 @@ struct uci_parse_context
        int byte;
 
        /* private: */
+       struct uci_config *cfg;
        FILE *file;
        char *buf;
        int bufsz;
diff --git a/list.c b/list.c
index f68161147359bc30b40b474ff090478b3a4b10b3..58880422cdb16d7c49253c7caf94ff6acb9f1063 100644 (file)
--- a/list.c
+++ b/list.c
@@ -35,8 +35,18 @@ static inline void uci_list_add(struct uci_list *head, struct uci_list *ptr)
        __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;
 
@@ -44,7 +54,16 @@ static struct uci_config *uci_add_file(struct uci_context *ctx, const char *name
        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);
+}
diff --git a/parse.c b/parse.c
index b15421050f088a4f75d0727ab704a95c6d795262..f5e6c2930af5ff8198c3522ced83abc02ee815c4 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -72,6 +72,8 @@ static void uci_parse_cleanup(struct uci_context *ctx)
        if (!pctx)
                return;
 
+       if (pctx->cfg)
+               uci_drop_file(pctx->cfg);
        if (pctx->buf)
                free(pctx->buf);
        if (pctx->file)
@@ -277,12 +279,18 @@ int uci_parse(struct uci_context *ctx, const char *name)
        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);