2011-06-17 16:35:11 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2011 Felix Fietkau <nbd@openwrt.org>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-02-06 18:50:07 +01:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
#include "libubus.h"
|
|
|
|
|
|
|
|
static struct ubus_context *ctx;
|
2011-01-31 17:18:10 +01:00
|
|
|
struct blob_buf b;
|
2010-12-06 03:51:58 +01:00
|
|
|
|
2011-02-06 02:08:30 +01:00
|
|
|
enum {
|
|
|
|
HELLO_ID,
|
|
|
|
HELLO_MSG,
|
|
|
|
HELLO_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct blobmsg_policy hello_policy[] = {
|
|
|
|
[HELLO_ID] = { .name = "id", .type = BLOBMSG_TYPE_INT32 },
|
|
|
|
[HELLO_MSG] = { .name = "msg", .type = BLOBMSG_TYPE_STRING },
|
|
|
|
};
|
|
|
|
|
2011-01-31 17:18:10 +01:00
|
|
|
static int test_hello(struct ubus_context *ctx, struct ubus_object *obj,
|
|
|
|
struct ubus_request_data *req, const char *method,
|
|
|
|
struct blob_attr *msg)
|
2011-01-31 03:26:53 +01:00
|
|
|
{
|
2011-02-06 02:08:30 +01:00
|
|
|
struct blob_attr *tb[HELLO_LAST];
|
|
|
|
char *msgstr = "(unknown)";
|
2011-02-04 21:58:22 +01:00
|
|
|
char *strbuf;
|
|
|
|
|
2011-02-06 02:08:30 +01:00
|
|
|
blobmsg_parse(hello_policy, ARRAY_SIZE(hello_policy), tb, blob_data(msg), blob_len(msg));
|
|
|
|
|
|
|
|
if (tb[HELLO_MSG])
|
|
|
|
msgstr = blobmsg_data(tb[HELLO_MSG]);
|
|
|
|
|
2011-01-31 17:18:10 +01:00
|
|
|
blob_buf_init(&b, 0);
|
2011-02-06 02:08:30 +01:00
|
|
|
strbuf = blobmsg_alloc_string_buffer(&b, "message", 64 + strlen(obj->name) + strlen(msgstr));
|
|
|
|
sprintf(strbuf, "%s: Hello, world: %s", obj->name, msgstr);
|
2011-02-04 21:58:22 +01:00
|
|
|
blobmsg_add_string_buffer(&b);
|
2011-01-31 17:18:10 +01:00
|
|
|
ubus_send_reply(ctx, req, b.head);
|
2011-01-31 03:26:53 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct ubus_method test_methods[] = {
|
2011-03-27 20:03:18 +02:00
|
|
|
UBUS_METHOD("hello", test_hello, hello_policy),
|
2011-01-31 03:26:53 +01:00
|
|
|
};
|
|
|
|
|
2011-03-27 20:03:18 +02:00
|
|
|
static struct ubus_object_type test_object_type =
|
|
|
|
UBUS_OBJECT_TYPE("test", test_methods);
|
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
static struct ubus_object test_object = {
|
|
|
|
.name = "test",
|
|
|
|
.type = &test_object_type,
|
2011-01-31 03:26:53 +01:00
|
|
|
.methods = test_methods,
|
|
|
|
.n_methods = ARRAY_SIZE(test_methods),
|
2010-12-06 03:51:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct ubus_object test_object2 = {
|
|
|
|
.name = "test2",
|
|
|
|
.type = &test_object_type,
|
2011-01-31 03:26:53 +01:00
|
|
|
.methods = test_methods,
|
|
|
|
.n_methods = ARRAY_SIZE(test_methods),
|
2010-12-06 03:51:58 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
2011-02-06 18:50:07 +01:00
|
|
|
const char *progname, *ubus_socket = NULL;
|
|
|
|
int ret = 0;
|
|
|
|
int ch;
|
|
|
|
|
|
|
|
progname = argv[0];
|
|
|
|
|
|
|
|
while ((ch = getopt(argc, argv, "s:")) != -1) {
|
|
|
|
switch (ch) {
|
|
|
|
case 's':
|
|
|
|
ubus_socket = optarg;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
2010-12-06 03:51:58 +01:00
|
|
|
|
2011-02-06 18:50:07 +01:00
|
|
|
ctx = ubus_connect(ubus_socket);
|
2010-12-06 03:51:58 +01:00
|
|
|
if (!ctx) {
|
|
|
|
fprintf(stderr, "Failed to connect to ubus\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2011-02-06 21:33:03 +01:00
|
|
|
ret = ubus_add_object(ctx, &test_object);
|
2010-12-06 03:51:58 +01:00
|
|
|
if (ret)
|
2011-02-06 21:33:03 +01:00
|
|
|
fprintf(stderr, "Failed to add_object object: %s\n", ubus_strerror(ret));
|
2010-12-06 03:51:58 +01:00
|
|
|
|
2011-02-06 21:33:03 +01:00
|
|
|
ret = ubus_add_object(ctx, &test_object2);
|
2010-12-06 03:51:58 +01:00
|
|
|
if (ret)
|
2011-02-06 21:33:03 +01:00
|
|
|
fprintf(stderr, "Failed to add_object object: %s\n", ubus_strerror(ret));
|
2011-02-07 02:13:41 +01:00
|
|
|
|
2010-12-06 03:51:58 +01:00
|
|
|
uloop_init();
|
2011-01-31 20:00:39 +01:00
|
|
|
ubus_add_uloop(ctx);
|
2010-12-06 03:51:58 +01:00
|
|
|
uloop_run();
|
2011-02-06 02:19:54 +01:00
|
|
|
uloop_done();
|
2010-12-06 03:51:58 +01:00
|
|
|
|
|
|
|
ubus_free(ctx);
|
|
|
|
return 0;
|
|
|
|
}
|