X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubus.git;a=blobdiff_plain;f=ubus-example.c;h=517ad0104d0217c034ad983fa48f70a648e8903a;hp=298a7dd1386db620990a3b262d369c2c9193e9fd;hb=74eddc472d8c647f21a475bbe780b4509636ae35;hpb=7a56ab0411fefef9ec0388818058638f02c6536b diff --git a/ubus-example.c b/ubus-example.c index 298a7dd..517ad01 100644 --- a/ubus-example.c +++ b/ubus-example.c @@ -5,19 +5,6 @@ static struct ubus_context *ctx; struct blob_buf b; -static const struct ubus_signature test_object_sig[] = { - UBUS_METHOD_START("hello"), - UBUS_ARRAY("test"), - UBUS_TABLE_START(NULL), - UBUS_FIELD(INT32, "id"), - UBUS_FIELD(STRING, "msg"), - UBUS_TABLE_END(), - UBUS_METHOD_END(), -}; - -static struct ubus_object_type test_object_type = - UBUS_OBJECT_TYPE("test", test_object_sig); - enum { HELLO_ID, HELLO_MSG, @@ -51,9 +38,12 @@ static int test_hello(struct ubus_context *ctx, struct ubus_object *obj, } static const struct ubus_method test_methods[] = { - { .name = "hello", .handler = test_hello }, + UBUS_METHOD("hello", test_hello, hello_policy), }; +static struct ubus_object_type test_object_type = + UBUS_OBJECT_TYPE("test", test_methods); + static struct ubus_object test_object = { .name = "test", .type = &test_object_type, @@ -95,25 +85,14 @@ int main(int argc, char **argv) return -1; } - fprintf(stderr, "Connected as ID 0x%08x\n", ctx->local_id); - - fprintf(stderr, "Publishing object\n"); - ret = ubus_publish(ctx, &test_object); + ret = ubus_add_object(ctx, &test_object); if (ret) - fprintf(stderr, "Failed to publish object: %s\n", ubus_strerror(ret)); - else { - fprintf(stderr, "Object ID: %08x\n", test_object.id); - fprintf(stderr, "Object Type ID: %08x\n", test_object.type->id); - } + fprintf(stderr, "Failed to add_object object: %s\n", ubus_strerror(ret)); - fprintf(stderr, "Publishing object\n"); - ret = ubus_publish(ctx, &test_object2); + ret = ubus_add_object(ctx, &test_object2); if (ret) - fprintf(stderr, "Failed to publish object: %s\n", ubus_strerror(ret)); - else { - fprintf(stderr, "Object ID: %08x\n", test_object2.id); - fprintf(stderr, "Object Type ID: %08x\n", test_object2.type->id); - } + fprintf(stderr, "Failed to add_object object: %s\n", ubus_strerror(ret)); + uloop_init(); ubus_add_uloop(ctx); uloop_run();