X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuci.git;a=blobdiff_plain;f=list.c;h=72d2eff69fa237483da8104e2f06f07bb90e3d09;hp=ea1c1ac18c94ccc1b2dfeab15c6956e393de8de5;hb=9e56d37528e25c0759185e4c263c52a1eefaa9dd;hpb=171170de64e0faff8d0e93581d9971439f474cbd diff --git a/list.c b/list.c index ea1c1ac..72d2eff 100644 --- a/list.c +++ b/list.c @@ -157,6 +157,44 @@ uci_free_package(struct uci_package *p) uci_free_element(&p->e); } +static struct uci_element *uci_lookup_list(struct uci_context *ctx, struct uci_list *list, char *name) +{ + struct uci_element *e; + + uci_foreach_element(list, e) { + if (!strcmp(e->name, name)) + return e; + } + UCI_THROW(ctx, UCI_ERR_NOTFOUND); +} + +int uci_lookup(struct uci_context *ctx, struct uci_element **res, char *package, char *section, char *option) +{ + struct uci_element *e; + struct uci_package *p; + struct uci_section *s; + struct uci_option *o; + + UCI_HANDLE_ERR(ctx); + UCI_ASSERT(ctx, res != NULL); + UCI_ASSERT(ctx, package != NULL); + + e = uci_lookup_list(ctx, &ctx->root, package); + if (!section) + goto found; + + p = uci_to_package(e); + e = uci_lookup_list(ctx, &p->sections, section); + if (!option) + goto found; + + s = uci_to_section(e); + e = uci_lookup_list(ctx, &s->options, option); + +found: + *res = e; + return 0; +} int uci_unload(struct uci_context *ctx, const char *name) {