ubus/cli.c

117 lines
2.2 KiB
C
Raw Normal View History

2010-12-06 03:51:58 +01:00
#include "libubus.h"
2011-01-31 18:26:24 +01:00
static void receive_lookup(struct ubus_context *ctx, struct ubus_object_data *obj, void *priv)
2010-12-06 03:51:58 +01:00
{
2011-01-31 18:26:24 +01:00
struct blob_attr *cur;
2010-12-06 03:51:58 +01:00
char *s;
int rem;
2011-01-31 18:26:24 +01:00
fprintf(stderr, "'%s' @%08x\n", obj->path, obj->id);
2010-12-06 03:51:58 +01:00
2011-01-31 18:26:24 +01:00
if (!obj->signature)
2010-12-06 03:51:58 +01:00
return;
2011-01-31 18:26:24 +01:00
blob_for_each_attr(cur, obj->signature, rem) {
2010-12-06 03:51:58 +01:00
s = blobmsg_format_json(cur, false);
fprintf(stderr, "\t%s\n", s);
free(s);
}
}
2011-01-31 17:18:10 +01:00
static void receive_data(struct ubus_request *req, int type, struct blob_attr *msg)
{
if (!msg)
return;
fprintf(stderr, "%s\n", blobmsg_format_json(msg, true));
}
2010-12-06 03:51:58 +01:00
static int usage(char *prog)
{
fprintf(stderr,
"Usage: %s <command> [arguments...]\n"
"Commands:\n"
2011-01-30 23:57:14 +01:00
" - list [<path>] List objects\n"
" - call <path> <method> [<message>] Call an object method\n"
" - listen [<path>...] Listen for events\n"
2010-12-06 03:51:58 +01:00
"\n", prog);
return 1;
}
static int ubus_cli_listen(struct ubus_context *ctx, int argc, char **argv)
{
static struct ubus_object listener;
const char *event;
int ret = 0;
if (!argc) {
event = "*";
ret = ubus_register_event_handler(ctx, &listener, NULL);
}
for (;argc;argv++, argc--) {
event = argv[0];
ret = ubus_register_event_handler(ctx, &listener, argv[0]);
if (ret)
break;
}
if (ret) {
fprintf(stderr, "Error while registering for event '%s': %s\n",
event, ubus_strerror(ret));
}
uloop_init();
ubus_add_uloop(ctx);
uloop_run();
uloop_done();
return 0;
}
2010-12-06 03:51:58 +01:00
int main(int argc, char **argv)
{
2011-01-31 18:26:24 +01:00
static struct ubus_context *ctx;
2010-12-06 03:51:58 +01:00
char *cmd;
int ret;
ctx = ubus_connect(NULL);
if (!ctx) {
fprintf(stderr, "Failed to connect to ubus\n");
return -1;
}
cmd = argv[1];
if (argc < 2)
return usage(argv[0]);
if (!strcmp(cmd, "list")) {
2011-01-31 18:26:24 +01:00
const char *path = NULL;
2010-12-06 03:51:58 +01:00
if (argc == 3)
2011-01-31 18:26:24 +01:00
path = argv[2];
2010-12-06 03:51:58 +01:00
2011-01-31 18:26:24 +01:00
ret = ubus_lookup(ctx, path, receive_lookup, NULL);
2011-01-30 23:57:14 +01:00
} else if (!strcmp(cmd, "call")) {
2011-01-31 18:26:24 +01:00
uint32_t id;
2011-01-30 23:57:14 +01:00
if (argc < 4 || argc > 5)
return usage(argv[0]);
2011-01-31 18:26:24 +01:00
ret = ubus_lookup_id(ctx, argv[2], &id);
if (!ret)
ret = ubus_invoke(ctx, id, argv[3], NULL, receive_data, NULL);
} else if (!strcmp(cmd, "listen")) {
ret = ubus_cli_listen(ctx, argc - 2, argv + 2);
2010-12-06 03:51:58 +01:00
} else {
return usage(argv[0]);
}
2011-01-30 23:57:14 +01:00
if (ret)
fprintf(stderr, "Failed: %s\n", ubus_strerror(ret));
2010-12-06 03:51:58 +01:00
ubus_free(ctx);
2011-02-05 00:02:22 +01:00
return ret;
2010-12-06 03:51:58 +01:00
}