libubox/tests/test-blobmsg.c

182 lines
4.6 KiB
C
Raw Normal View History

2010-10-13 21:17:51 +02:00
#include <stdio.h>
#include <float.h>
#include <limits.h>
#include <stdint.h>
#include <inttypes.h>
2010-10-13 21:17:51 +02:00
#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(struct blob_attr *data, int indent, int next_indent);
2010-10-13 21:17:51 +02:00
static void
iron out all extra compiler warnings gcc-9 on x86/64 has reported following issues: base64.c:173:17: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:230:18: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:238:18: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:242:22: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:252:18: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:256:22: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:266:18: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:315:27: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] base64.c:329:15: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] blob.c:207:11: error: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] blob.c:210:11: error: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] blob.c:243:31: error: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Werror=sign-compare] blob.c:246:31: error: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Werror=sign-compare] blob.h:245:37: error: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] blob.h:253:37: error: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] blobmsg.h:269:37: error: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] blobmsg_json.c:155:10: error: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Werror=sign-compare] examples/../blob.h:245:37: error: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] examples/../blobmsg.h:269:37: error: comparison of integer expressions of different signedness: ‘unsigned int’ and ‘int’ [-Werror=sign-compare] json_script.c:590:7: error: this statement may fall through [-Werror=implicit-fallthrough=] Signed-off-by: Petr Štetiar <ynezz@true.cz>
2019-06-10 08:47:38 +02:00
dump_table(struct blob_attr *head, size_t len, int indent, bool array)
2010-10-13 21:17:51 +02:00
{
struct blob_attr *attr;
2010-10-13 21:17:51 +02:00
struct blobmsg_hdr *hdr;
indent_printf(indent, "{\n");
__blob_for_each_attr(attr, head, len) {
hdr = blob_data(attr);
if (!array)
indent_printf(indent + 1, "%s : ", hdr->name);
dump_attr_data(attr, 0, indent + 1);
2010-10-13 21:17:51 +02:00
}
indent_printf(indent, "}\n");
}
static void dump_attr_data(struct blob_attr *data, int indent, int next_indent)
2010-10-13 21:17:51 +02:00
{
int type = blobmsg_type(data);
2010-10-13 21:17:51 +02:00
switch(type) {
case BLOBMSG_TYPE_STRING:
indent_printf(indent, "%s (str)\n", blobmsg_get_string(data));
2010-10-13 21:17:51 +02:00
break;
case BLOBMSG_TYPE_INT8:
indent_printf(indent, "%d (i8)\n", (int8_t) blobmsg_get_u8(data));
2010-10-13 21:17:51 +02:00
break;
case BLOBMSG_TYPE_INT16:
indent_printf(indent, "%d (i16)\n", (int16_t) blobmsg_get_u16(data));
2010-10-13 21:17:51 +02:00
break;
case BLOBMSG_TYPE_INT32:
indent_printf(indent, "%d (i32)\n", (int32_t) blobmsg_get_u32(data));
2010-10-13 21:17:51 +02:00
break;
case BLOBMSG_TYPE_INT64:
indent_printf(indent, "%"PRId64" (i64)\n", (int64_t) blobmsg_get_u64(data));
2010-10-13 21:17:51 +02:00
break;
case BLOBMSG_TYPE_DOUBLE:
indent_printf(indent, "%lf (dbl)\n", blobmsg_get_double(data));
break;
2010-10-13 21:17:51 +02:00
case BLOBMSG_TYPE_TABLE:
case BLOBMSG_TYPE_ARRAY:
if (!indent)
indent_printf(indent, "\n");
dump_table(blobmsg_data(data), blobmsg_data_len(data),
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: ");
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: ");
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!");
tbl = blobmsg_open_table(buf, "testdata");
blobmsg_add_double(buf, "dbl-min", DBL_MIN);
blobmsg_add_double(buf, "dbl-max", DBL_MAX);
blobmsg_add_u8(buf, "foo", 0);
blobmsg_add_u8(buf, "poo", 100);
blobmsg_add_u8(buf, "moo-min", INT8_MIN);
blobmsg_add_u8(buf, "moo-max", INT8_MAX);
blobmsg_add_u16(buf, "bar-min", INT16_MIN);
blobmsg_add_u16(buf, "bar-max", INT16_MAX);
blobmsg_add_u32(buf, "baz-min", INT32_MIN);
blobmsg_add_u32(buf, "baz-max", INT32_MAX);
blobmsg_add_u64(buf, "taz-min", INT64_MIN);
blobmsg_add_u64(buf, "taz-max", INT64_MAX);
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_u8(buf, NULL, 0);
blobmsg_add_u8(buf, NULL, 100);
blobmsg_add_u8(buf, NULL, INT8_MIN);
blobmsg_add_u8(buf, NULL, INT8_MAX);
blobmsg_add_u16(buf, NULL, INT16_MIN);
blobmsg_add_u16(buf, NULL, INT16_MAX);
blobmsg_add_u32(buf, NULL, INT32_MIN);
blobmsg_add_u32(buf, NULL, INT32_MAX);
blobmsg_add_u64(buf, NULL, INT64_MIN);
blobmsg_add_u64(buf, NULL, INT64_MAX);
blobmsg_add_double(buf, NULL, DBL_MIN);
blobmsg_add_double(buf, NULL, DBL_MAX);
2010-10-13 21:17:51 +02:00
blobmsg_close_table(buf, tbl);
}
int main(int argc, char **argv)
{
char *json = NULL;
2010-10-13 21:17:51 +02:00
static struct blob_buf buf;
blobmsg_buf_init(&buf);
fill_message(&buf);
fprintf(stderr, "[*] blobmsg dump:\n");
2010-10-13 21:17:51 +02:00
dump_message(&buf);
json = blobmsg_format_json(buf.head, true);
if (!json)
exit(EXIT_FAILURE);
fprintf(stderr, "\n[*] blobmsg to json: %s\n", json);
blobmsg_buf_init(&buf);
if (!blobmsg_add_json_from_string(&buf, json))
exit(EXIT_FAILURE);
fprintf(stderr, "\n[*] blobmsg from json:\n");
dump_message(&buf);
2010-10-13 21:17:51 +02:00
if (buf.buf)
free(buf.buf);
free(json);
2010-10-13 21:17:51 +02:00
return 0;
}