X-Git-Url: http://git.archive.openwrt.org/?p=project%2Flibubox.git;a=blobdiff_plain;f=examples%2Fblobmsg-example.c;h=1c8601735fd0be06663b638aa7a19ef663e82380;hp=3630208be16b3937f2fb7b07d835d46dad3474b4;hb=HEAD;hpb=5129bc940168d080e9b3aa63ae0f92a531455b0e diff --git a/examples/blobmsg-example.c b/examples/blobmsg-example.c index 3630208..1c86017 100644 --- a/examples/blobmsg-example.c +++ b/examples/blobmsg-example.c @@ -1,6 +1,8 @@ #include +#include #include "blobmsg.h" +#include "blobmsg_json.h" static const char *indent_str = "\t\t\t\t\t\t\t\t\t\t\t\t\t"; @@ -10,12 +12,12 @@ static const char *indent_str = "\t\t\t\t\t\t\t\t\t\t\t\t\t"; fprintf(stderr, __VA_ARGS__); \ } while(0) -static void dump_attr_data(void *data, int len, int type, int indent, int next_indent); +static void dump_attr_data(struct blob_attr *data, int indent, int next_indent); static void dump_table(struct blob_attr *head, int len, int indent, bool array) { - struct blob_attr *attr, *last_attr; + struct blob_attr *attr; struct blobmsg_hdr *hdr; indent_printf(indent, "{\n"); @@ -23,35 +25,39 @@ dump_table(struct blob_attr *head, int len, int indent, bool array) hdr = blob_data(attr); if (!array) indent_printf(indent + 1, "%s : ", hdr->name); - dump_attr_data(blobmsg_data(attr), blobmsg_data_len(attr), blob_id(attr), 0, indent + 1); - last_attr = attr; + dump_attr_data(attr, 0, indent + 1); } indent_printf(indent, "}\n"); } -static void dump_attr_data(void *data, int len, int type, int indent, int next_indent) +static void dump_attr_data(struct blob_attr *data, int indent, int next_indent) { + int type = blobmsg_type(data); switch(type) { case BLOBMSG_TYPE_STRING: - indent_printf(indent, "%s\n", (char *) data); + indent_printf(indent, "%s\n", blobmsg_get_string(data)); break; case BLOBMSG_TYPE_INT8: - indent_printf(indent, "%d\n", *(uint8_t *)data); + indent_printf(indent, "%d\n", blobmsg_get_u8(data)); break; case BLOBMSG_TYPE_INT16: - indent_printf(indent, "%d\n", *(uint16_t *)data); + indent_printf(indent, "%d\n", blobmsg_get_u16(data)); break; case BLOBMSG_TYPE_INT32: - indent_printf(indent, "%d\n", *(uint32_t *)data); + indent_printf(indent, "%d\n", blobmsg_get_u32(data)); break; case BLOBMSG_TYPE_INT64: - indent_printf(indent, "%lld\n", *(uint64_t *)data); + indent_printf(indent, "%"PRIu64"\n", blobmsg_get_u64(data)); + break; + case BLOBMSG_TYPE_DOUBLE: + indent_printf(indent, "%lf\n", blobmsg_get_double(data)); break; case BLOBMSG_TYPE_TABLE: case BLOBMSG_TYPE_ARRAY: if (!indent) indent_printf(indent, "\n"); - dump_table(data, len, next_indent, type == BLOBMSG_TYPE_ARRAY); + dump_table(blobmsg_data(data), blobmsg_data_len(data), + next_indent, type == BLOBMSG_TYPE_ARRAY); break; } } @@ -94,11 +100,11 @@ static void dump_message(struct blob_buf *buf) if (tb[FOO_LIST]) { fprintf(stderr, "List: "); - dump_table(blobmsg_data(tb[FOO_LIST]), blob_len(tb[FOO_LIST]), 0, true); + dump_table(blobmsg_data(tb[FOO_LIST]), blobmsg_data_len(tb[FOO_LIST]), 0, true); } if (tb[FOO_TESTDATA]) { fprintf(stderr, "Testdata: "); - dump_table(blobmsg_data(tb[FOO_TESTDATA]), blob_len(tb[FOO_TESTDATA]), 0, false); + dump_table(blobmsg_data(tb[FOO_TESTDATA]), blobmsg_data_len(tb[FOO_TESTDATA]), 0, false); } } @@ -110,6 +116,7 @@ fill_message(struct blob_buf *buf) blobmsg_add_string(buf, "message", "Hello, world!"); tbl = blobmsg_open_table(buf, "testdata"); + blobmsg_add_double(buf, "double", 1.337e2); blobmsg_add_u32(buf, "hello", 1); blobmsg_add_string(buf, "world", "2"); blobmsg_close_table(buf, tbl); @@ -118,6 +125,7 @@ fill_message(struct blob_buf *buf) blobmsg_add_u32(buf, NULL, 0); blobmsg_add_u32(buf, NULL, 1); blobmsg_add_u32(buf, NULL, 2); + blobmsg_add_double(buf, "double", 1.337e2); blobmsg_close_table(buf, tbl); } @@ -128,7 +136,7 @@ int main(int argc, char **argv) blobmsg_buf_init(&buf); fill_message(&buf); dump_message(&buf); - fprintf(stderr, "json: %s\n", blobmsg_format_json(buf.head)); + fprintf(stderr, "json: %s\n", blobmsg_format_json(buf.head, true)); if (buf.buf) free(buf.buf);