Browse Source

more list handling

Felix Fietkau 16 years ago
parent
commit
1d2aca0fc8
3 changed files with 30 additions and 2 deletions
  1. 1 0
      libuci.h
  2. 21 2
      list.c
  3. 8 0
      parse.c

+ 1 - 0
libuci.h

@@ -89,6 +89,7 @@ struct uci_parse_context
 	int byte;
 
 	/* private: */
+	struct uci_config *cfg;
 	FILE *file;
 	char *buf;
 	int bufsz;

+ 21 - 2
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);
+}

+ 8 - 0
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);