mirror of
https://git.openwrt.org/project/netifd.git
synced 2026-01-15 21:16:27 +00:00
Parse JSON files in a given directory and pass the information on to a callback function for creation of an external device handler stub. The description contains: - 'name': the name of the device type, - 'ubus_name': the name of the external device handler daemon on ubus, - 'bridge': a flag indicating whether the devices are bridge-like, - optionally 'br_prefix': a prefix for created devices (only for bridge-like, defaults to type name), - 'config': the UCI config options for devices of this type, and - optionally 'info' and 'stats': the format of calls to info() and dump(). Signed-off-by: Arne Kappen <arne.kappen@hhi.fraunhofer.de>
52 lines
1.6 KiB
C
52 lines
1.6 KiB
C
/*
|
|
* netifd - network interface daemon
|
|
* Copyright (C) 2012-2013 Felix Fietkau <nbd@openwrt.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2
|
|
* as published by the Free Software Foundation
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
#ifndef __NETIFD_HANDLER_H
|
|
#define __NETIFD_HANDLER_H
|
|
|
|
#include <libubox/blobmsg_json.h>
|
|
#include <json-c/json.h>
|
|
#include "config.h"
|
|
|
|
typedef void (*script_dump_cb)(const char *script, const char *name, json_object *obj);
|
|
typedef void (*create_extdev_handler_cb)(const char *cfg_file, const char *name,
|
|
const char *ubus_name, bool bridge,
|
|
const char *br_prefix, json_object *config_obj,
|
|
json_object *info_obj, json_object *stats_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_object_object_get_ex(obj, name, &obj) ?
|
|
json_check_type(obj, type) : NULL;
|
|
}
|
|
|
|
int netifd_open_subdir(const char *name);
|
|
void netifd_init_script_handlers(int dir_fd, script_dump_cb cb);
|
|
void netifd_init_extdev_handlers(int dir_fd, create_extdev_handler_cb cb);
|
|
char *netifd_handler_parse_config(struct uci_blob_param_list *config, json_object *obj);
|
|
|
|
#endif
|