if ((asprintf(&filename, "%s/%s", ctx->savedir, p->e.name) < 0) || !filename)
UCI_THROW(ctx, UCI_ERR_MEM);
- uci_foreach_element(&ctx->hooks, tmp) {
- struct uci_hook *hook = uci_to_hook(tmp);
-
- if (!hook->ops->set)
- continue;
-
- uci_foreach_element(&p->delta, e) {
- hook->ops->set(hook->ops, p, uci_to_delta(e));
- }
- }
-
ctx->err = 0;
UCI_TRAP_SAVE(ctx, done);
f = uci_open_stream(ctx, filename, SEEK_END, true, true);
uci_list_init(&ctx->root);
uci_list_init(&ctx->delta_path);
uci_list_init(&ctx->backends);
- uci_list_init(&ctx->hooks);
ctx->flags = UCI_FLAG_STRICT | UCI_FLAG_SAVED_DELTA;
ctx->confdir = (char *) uci_confdir;
int uci_load(struct uci_context *ctx, const char *name, struct uci_package **package)
{
struct uci_package *p;
- struct uci_element *e;
UCI_HANDLE_ERR(ctx);
UCI_ASSERT(ctx, ctx->backend && ctx->backend->load);
p = ctx->backend->load(ctx, name);
- uci_foreach_element(&ctx->hooks, e) {
- struct uci_hook *h = uci_to_hook(e);
- if (h->ops->load)
- h->ops->load(h->ops, p);
- }
if (package)
*package = p;
ctx->backend = uci_to_backend(e);
return 0;
}
-
-int uci_add_hook(struct uci_context *ctx, const struct uci_hook_ops *ops)
-{
- struct uci_element *e;
- struct uci_hook *h;
-
- UCI_HANDLE_ERR(ctx);
-
- /* check for duplicate elements */
- uci_foreach_element(&ctx->hooks, e) {
- h = uci_to_hook(e);
- if (h->ops == ops)
- return UCI_ERR_INVAL;
- }
-
- h = uci_alloc_element(ctx, hook, "", 0);
- h->ops = ops;
- uci_list_init(&h->e.list);
- uci_list_add(&ctx->hooks, &h->e.list);
-
- return 0;
-}
-
-int uci_remove_hook(struct uci_context *ctx, const struct uci_hook_ops *ops)
-{
- struct uci_element *e;
-
- uci_foreach_element(&ctx->hooks, e) {
- struct uci_hook *h = uci_to_hook(e);
- if (h->ops == ops) {
- uci_list_del(&e->list);
- uci_free_element(e);
- return 0;
- }
- }
- return UCI_ERR_NOTFOUND;
-}
};
struct uci_ptr;
-struct uci_hook_ops;
struct uci_element;
struct uci_package;
struct uci_section;
*/
extern bool uci_validate_text(const char *str);
-
-/**
- * uci_add_hook: add a uci hook
- * @ctx: uci context
- * @ops: uci hook ops
- *
- * NB: allocated and freed by the caller
- */
-extern int uci_add_hook(struct uci_context *ctx, const struct uci_hook_ops *ops);
-
-/**
- * uci_remove_hook: remove a uci hook
- * @ctx: uci context
- * @ops: uci hook ops
- */
-extern int uci_remove_hook(struct uci_context *ctx, const struct uci_hook_ops *ops);
-
/**
* uci_parse_ptr: parse a uci string into a uci_ptr
* @ctx: uci context
bool internal, nested;
char *buf;
int bufsz;
-
- struct uci_list hooks;
};
struct uci_package
const char *value;
};
-struct uci_hook_ops
-{
- void (*load)(const struct uci_hook_ops *ops, struct uci_package *p);
- void (*set)(const struct uci_hook_ops *ops, struct uci_package *p, struct uci_delta *e);
-};
-
-struct uci_hook
-{
- struct uci_element e;
- const struct uci_hook_ops *ops;
-};
-
struct uci_parse_option {
const char *name;
enum uci_option_type type;
#define uci_type_package UCI_TYPE_PACKAGE
#define uci_type_section UCI_TYPE_SECTION
#define uci_type_option UCI_TYPE_OPTION
-#define uci_type_hook UCI_TYPE_HOOK
/* element typecasting */
#ifdef UCI_DEBUG_TYPECAST
[uci_type_package] = "package",
[uci_type_section] = "section",
[uci_type_option] = "option",
- [uci_type_hook] = "hook",
};
static void uci_typecast_error(int from, int to)
BUILD_CAST(package)
BUILD_CAST(section)
BUILD_CAST(option)
-BUILD_CAST(hook)
#else
#define uci_to_backend(ptr) container_of(ptr, struct uci_backend, e)
#define uci_to_package(ptr) container_of(ptr, struct uci_package, e)
#define uci_to_section(ptr) container_of(ptr, struct uci_section, e)
#define uci_to_option(ptr) container_of(ptr, struct uci_option, e)
-#define uci_to_hook(ptr) container_of(ptr, struct uci_hook, e)
#endif
/**