X-Git-Url: http://git.archive.openwrt.org/?a=blobdiff_plain;f=ubus-example.c;h=ef77eea613e3a3ab839f2bdb759f7e6142224dc2;hb=d9211374c5476202d7944c8edb3d1a9904ac635d;hp=f84f2b46da1142a2e1e6326edf104a8b29eeaeee;hpb=2e83a5fab201630b7447bffffa5c509fa7ea743b;p=project%2Fubus.git diff --git a/ubus-example.c b/ubus-example.c index f84f2b4..ef77eea 100644 --- a/ubus-example.c +++ b/ubus-example.c @@ -1,21 +1,23 @@ +/* + * Copyright (C) 2011 Felix Fietkau + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 2.1 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#include + #include "libubus.h" 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, @@ -49,9 +51,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, @@ -68,33 +73,37 @@ static struct ubus_object test_object2 = { int main(int argc, char **argv) { - int ret; + const char *ubus_socket = NULL; + int ret = 0; + int ch; + + while ((ch = getopt(argc, argv, "s:")) != -1) { + switch (ch) { + case 's': + ubus_socket = optarg; + break; + default: + break; + } + } + + argc -= optind; + argv += optind; - ctx = ubus_connect(NULL); + ctx = ubus_connect(ubus_socket); if (!ctx) { fprintf(stderr, "Failed to connect to ubus\n"); 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();