2010-10-13 21:17:51 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "blobmsg.h"
|
2012-10-21 03:40:53 +02:00
|
|
|
#include "blobmsg_json.h"
|
2010-10-13 21:17:51 +02:00
|
|
|
|
|
|
|
static const char *indent_str = "\t\t\t\t\t\t\t\t\t\t\t\t\t";
|
|
|
|
|
|
|
|
#define indent_printf(indent, ...) do { \
|
|
|
|
if (indent > 0) \
|
|
|
|
fwrite(indent_str, indent, 1, stderr); \
|
|
|
|
fprintf(stderr, __VA_ARGS__); \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
static void dump_attr_data(void *data, int len, int type, int indent, int next_indent);
|
|
|
|
|
|
|
|
static void
|
2011-01-29 18:00:40 +01:00
|
|
|
dump_table(struct blob_attr *head, int len, int indent, bool array)
|
2010-10-13 21:17:51 +02:00
|
|
|
{
|
|
|
|
struct blob_attr *attr, *last_attr;
|
|
|
|
struct blobmsg_hdr *hdr;
|
|
|
|
|
|
|
|
indent_printf(indent, "{\n");
|
|
|
|
__blob_for_each_attr(attr, head, len) {
|
|
|
|
hdr = blob_data(attr);
|
2011-01-29 18:00:40 +01:00
|
|
|
if (!array)
|
|
|
|
indent_printf(indent + 1, "%s : ", hdr->name);
|
2010-10-13 21:17:51 +02:00
|
|
|
dump_attr_data(blobmsg_data(attr), blobmsg_data_len(attr), blob_id(attr), 0, indent + 1);
|
|
|
|
last_attr = attr;
|
|
|
|
}
|
|
|
|
indent_printf(indent, "}\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dump_attr_data(void *data, int len, int type, int indent, int next_indent)
|
|
|
|
{
|
|
|
|
switch(type) {
|
|
|
|
case BLOBMSG_TYPE_STRING:
|
|
|
|
indent_printf(indent, "%s\n", (char *) data);
|
|
|
|
break;
|
|
|
|
case BLOBMSG_TYPE_INT8:
|
|
|
|
indent_printf(indent, "%d\n", *(uint8_t *)data);
|
|
|
|
break;
|
|
|
|
case BLOBMSG_TYPE_INT16:
|
|
|
|
indent_printf(indent, "%d\n", *(uint16_t *)data);
|
|
|
|
break;
|
|
|
|
case BLOBMSG_TYPE_INT32:
|
|
|
|
indent_printf(indent, "%d\n", *(uint32_t *)data);
|
|
|
|
break;
|
|
|
|
case BLOBMSG_TYPE_INT64:
|
|
|
|
indent_printf(indent, "%lld\n", *(uint64_t *)data);
|
|
|
|
break;
|
|
|
|
case BLOBMSG_TYPE_TABLE:
|
|
|
|
case BLOBMSG_TYPE_ARRAY:
|
|
|
|
if (!indent)
|
|
|
|
indent_printf(indent, "\n");
|
2011-01-29 18:00:40 +01:00
|
|
|
dump_table(data, len, next_indent, type == BLOBMSG_TYPE_ARRAY);
|
2010-10-13 21:17:51 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
FOO_MESSAGE,
|
|
|
|
FOO_LIST,
|
|
|
|
FOO_TESTDATA
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct blobmsg_policy pol[] = {
|
|
|
|
[FOO_MESSAGE] = {
|
|
|
|
.name = "message",
|
|
|
|
.type = BLOBMSG_TYPE_STRING,
|
|
|
|
},
|
|
|
|
[FOO_LIST] = {
|
|
|
|
.name = "list",
|
|
|
|
.type = BLOBMSG_TYPE_ARRAY,
|
|
|
|
},
|
|
|
|
[FOO_TESTDATA] = {
|
|
|
|
.name = "testdata",
|
|
|
|
.type = BLOBMSG_TYPE_TABLE,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifndef ARRAY_SIZE
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void dump_message(struct blob_buf *buf)
|
|
|
|
{
|
|
|
|
struct blob_attr *tb[ARRAY_SIZE(pol)];
|
|
|
|
|
|
|
|
if (blobmsg_parse(pol, ARRAY_SIZE(pol), tb, blob_data(buf->head), blob_len(buf->head)) != 0) {
|
|
|
|
fprintf(stderr, "Parse failed\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (tb[FOO_MESSAGE])
|
|
|
|
fprintf(stderr, "Message: %s\n", (char *) blobmsg_data(tb[FOO_MESSAGE]));
|
|
|
|
|
|
|
|
if (tb[FOO_LIST]) {
|
|
|
|
fprintf(stderr, "List: ");
|
2013-09-11 17:59:33 +02:00
|
|
|
dump_table(blobmsg_data(tb[FOO_LIST]), blobmsg_data_len(tb[FOO_LIST]), 0, true);
|
2010-10-13 21:17:51 +02:00
|
|
|
}
|
|
|
|
if (tb[FOO_TESTDATA]) {
|
|
|
|
fprintf(stderr, "Testdata: ");
|
2013-09-11 17:59:33 +02:00
|
|
|
dump_table(blobmsg_data(tb[FOO_TESTDATA]), blobmsg_data_len(tb[FOO_TESTDATA]), 0, false);
|
2010-10-13 21:17:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
fill_message(struct blob_buf *buf)
|
|
|
|
{
|
|
|
|
void *tbl;
|
|
|
|
|
|
|
|
blobmsg_add_string(buf, "message", "Hello, world!");
|
|
|
|
|
2011-01-29 18:00:40 +01:00
|
|
|
tbl = blobmsg_open_table(buf, "testdata");
|
|
|
|
blobmsg_add_u32(buf, "hello", 1);
|
|
|
|
blobmsg_add_string(buf, "world", "2");
|
|
|
|
blobmsg_close_table(buf, tbl);
|
|
|
|
|
2010-10-13 21:17:51 +02:00
|
|
|
tbl = blobmsg_open_array(buf, "list");
|
|
|
|
blobmsg_add_u32(buf, NULL, 0);
|
|
|
|
blobmsg_add_u32(buf, NULL, 1);
|
|
|
|
blobmsg_add_u32(buf, NULL, 2);
|
|
|
|
blobmsg_close_table(buf, tbl);
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
static struct blob_buf buf;
|
|
|
|
|
|
|
|
blobmsg_buf_init(&buf);
|
|
|
|
fill_message(&buf);
|
|
|
|
dump_message(&buf);
|
2012-10-21 03:40:53 +02:00
|
|
|
fprintf(stderr, "json: %s\n", blobmsg_format_json(buf.head, false));
|
2010-10-13 21:17:51 +02:00
|
|
|
|
|
|
|
if (buf.buf)
|
|
|
|
free(buf.buf);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|