X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=handler.h;h=baf9c3c6c86c3137e1e727234031d4bc02df41b0;hp=02438f2fd2457616fd15edc7c8ae52850d76ee7e;hb=9d8dd091f8f336b111364ed211165b5ec9842a24;hpb=f16a15c39c872c5f42eb554deb4d956264c0c823 diff --git a/handler.h b/handler.h index 02438f2..baf9c3c 100644 --- a/handler.h +++ b/handler.h @@ -15,10 +15,31 @@ #define __NETIFD_HANDLER_H #include +#include +#include "config.h" -typedef void (*script_dump_cb)(const char *name, json_object *obj); +typedef void (*script_dump_cb)(const char *script, const char *name, json_object *obj); + +static inline json_object * +json_check_type(json_object *obj, json_type type) +{ + if (!obj) + return NULL; + + if (json_object_get_type(obj) != type) + return NULL; + + return obj; +} + +static inline json_object * +json_get_field(json_object *obj, const char *name, json_type type) +{ + return json_check_type(json_object_object_get(obj, name), type); +} int netifd_open_subdir(const char *name); void netifd_init_script_handlers(int dir_fd, script_dump_cb cb); +char *netifd_handler_parse_config(struct uci_blob_param_list *config, json_object *obj); #endif