2011-02-06 16:20:57 +01:00
|
|
|
/*
|
2012-05-26 18:03:08 +02:00
|
|
|
* Copyright (C) 2010-2012 Felix Fietkau <nbd@openwrt.org>
|
2011-02-06 16:20:57 +01:00
|
|
|
*
|
2012-05-26 18:03:08 +02:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2011-02-06 16:20:57 +01:00
|
|
|
*
|
2012-05-26 18:03:08 +02:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
2011-02-06 16:20:57 +01:00
|
|
|
*/
|
2011-02-06 16:14:15 +01:00
|
|
|
#ifndef __BLOBMSG_JSON_H
|
|
|
|
#define __BLOBMSG_JSON_H
|
|
|
|
|
2013-03-05 01:30:51 +01:00
|
|
|
#ifdef JSONC
|
|
|
|
#include <json.h>
|
|
|
|
#else
|
|
|
|
#include <json/json.h>
|
|
|
|
#endif
|
|
|
|
|
2011-02-06 16:14:15 +01:00
|
|
|
#include <stdbool.h>
|
2011-02-06 21:23:28 +01:00
|
|
|
#include "blobmsg.h"
|
2011-02-06 16:14:15 +01:00
|
|
|
|
2013-01-06 02:15:48 +01:00
|
|
|
bool blobmsg_add_object(struct blob_buf *b, json_object *obj);
|
2011-02-06 16:14:15 +01:00
|
|
|
bool blobmsg_add_json_element(struct blob_buf *b, const char *name, json_object *obj);
|
|
|
|
bool blobmsg_add_json_from_string(struct blob_buf *b, const char *str);
|
2013-05-29 12:14:40 +02:00
|
|
|
bool blobmsg_add_json_from_file(struct blob_buf *b, const char *file);
|
2011-02-06 16:14:15 +01:00
|
|
|
|
2011-02-06 21:23:28 +01:00
|
|
|
typedef const char *(*blobmsg_json_format_t)(void *priv, struct blob_attr *attr);
|
|
|
|
|
|
|
|
char *blobmsg_format_json_with_cb(struct blob_attr *attr, bool list,
|
2011-07-18 13:04:23 +02:00
|
|
|
blobmsg_json_format_t cb, void *priv,
|
|
|
|
int indent);
|
2011-02-06 21:23:28 +01:00
|
|
|
|
|
|
|
static inline char *blobmsg_format_json(struct blob_attr *attr, bool list)
|
|
|
|
{
|
2011-07-18 13:04:23 +02:00
|
|
|
return blobmsg_format_json_with_cb(attr, list, NULL, NULL, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline char *blobmsg_format_json_indent(struct blob_attr *attr, bool list, int indent)
|
|
|
|
{
|
|
|
|
return blobmsg_format_json_with_cb(attr, list, NULL, NULL, indent);
|
2011-02-06 21:23:28 +01:00
|
|
|
}
|
|
|
|
|
2011-02-06 16:14:15 +01:00
|
|
|
#endif
|