ubus/cli.c

260 lines
5 KiB
C
Raw Normal View History

#include <unistd.h>
2011-02-06 16:14:36 +01:00
#include <libubox/blobmsg_json.h>
2010-12-06 03:51:58 +01:00
#include "libubus.h"
static struct blob_buf b;
static int timeout = 30;
2011-03-27 17:40:46 +02:00
static bool simple_output = false;
static const char *format_type(void *priv, struct blob_attr *attr)
{
2011-02-07 02:30:18 +01:00
static const char * const attr_types[] = {
2011-03-27 01:05:30 +01:00
[BLOBMSG_TYPE_INT8] = "\"Boolean\"",
2011-02-07 02:30:18 +01:00
[BLOBMSG_TYPE_INT32] = "\"Integer\"",
[BLOBMSG_TYPE_STRING] = "\"String\"",
};
const char *type = NULL;
int typeid;
if (blob_id(attr) != BLOBMSG_TYPE_INT32)
return NULL;
typeid = blobmsg_get_u32(attr);
if (typeid < ARRAY_SIZE(attr_types))
type = attr_types[typeid];
if (!type)
type = "\"(unknown)\"";
return type;
}
2011-02-07 02:30:18 +01:00
static void receive_list_result(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-03-27 17:40:46 +02:00
if (simple_output) {
printf("%s\n", obj->path);
return;
}
2011-02-07 02:07:39 +01:00
printf("'%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) {
s = blobmsg_format_json_with_cb(cur, false, format_type, NULL);
2011-02-07 02:07:39 +01:00
printf("\t%s\n", s);
2010-12-06 03:51:58 +01:00
free(s);
}
}
2011-02-07 02:30:18 +01:00
static void receive_call_result_data(struct ubus_request *req, int type, struct blob_attr *msg)
2011-01-31 17:18:10 +01:00
{
2011-02-05 23:23:44 +01:00
char *str;
2011-01-31 17:18:10 +01:00
if (!msg)
return;
2011-02-05 23:23:44 +01:00
str = blobmsg_format_json(msg, true);
2011-02-07 02:07:39 +01:00
printf("%s\n", str);
2011-02-05 23:23:44 +01:00
free(str);
2011-01-31 17:18:10 +01:00
}
2011-02-05 23:23:44 +01:00
static void receive_event(struct ubus_context *ctx, struct ubus_event_handler *ev,
const char *type, struct blob_attr *msg)
{
char *str;
str = blobmsg_format_json(msg, true);
2011-03-27 17:40:46 +02:00
printf("{ \"%s\": %s }\n", type, str);
2011-02-05 23:23:44 +01:00
free(str);
}
2011-02-07 02:30:18 +01:00
static int ubus_cli_list(struct ubus_context *ctx, int argc, char **argv)
{
const char *path = NULL;
if (argc > 1)
return -2;
if (argc == 1)
path = argv[0];
return ubus_lookup(ctx, path, receive_list_result, NULL);
}
static int ubus_cli_call(struct ubus_context *ctx, int argc, char **argv)
{
uint32_t id;
int ret;
if (argc < 2 || argc > 3)
return -2;
blob_buf_init(&b, 0);
if (argc == 3 && !blobmsg_add_json_from_string(&b, argv[2])) {
2011-03-27 18:28:47 +02:00
if (!simple_output)
fprintf(stderr, "Failed to parse message data\n");
2011-02-07 02:30:18 +01:00
return -1;
}
ret = ubus_lookup_id(ctx, argv[0], &id);
if (ret)
return ret;
return ubus_invoke(ctx, id, argv[1], b.head, receive_call_result_data, NULL, timeout * 1000);
2011-02-07 02:30:18 +01:00
}
static int ubus_cli_listen(struct ubus_context *ctx, int argc, char **argv)
{
2011-02-05 23:23:44 +01:00
static struct ubus_event_handler listener;
const char *event;
int ret = 0;
2011-02-05 23:23:44 +01:00
memset(&listener, 0, sizeof(listener));
listener.cb = receive_event;
if (argc > 0) {
event = argv[0];
} else {
event = "*";
argc = 1;
}
do {
ret = ubus_register_event_handler(ctx, &listener, event);
if (ret)
break;
argv++;
argc--;
if (argc <= 0)
break;
event = argv[0];
} while (1);
if (ret) {
2011-03-27 18:28:47 +02:00
if (!simple_output)
fprintf(stderr, "Error while registering for event '%s': %s\n",
event, ubus_strerror(ret));
2011-02-07 02:30:18 +01:00
return -1;
}
uloop_init();
ubus_add_uloop(ctx);
uloop_run();
uloop_done();
return 0;
}
static int ubus_cli_send(struct ubus_context *ctx, int argc, char **argv)
{
2011-02-07 02:30:18 +01:00
if (argc < 1 || argc > 2)
return -2;
blob_buf_init(&b, 0);
2011-02-07 02:30:18 +01:00
if (argc == 2 && !blobmsg_add_json_from_string(&b, argv[1])) {
2011-03-27 18:28:47 +02:00
if (!simple_output)
fprintf(stderr, "Failed to parse message data\n");
2011-02-07 02:30:18 +01:00
return -1;
}
return ubus_send_event(ctx, argv[0], b.head);
}
static int usage(const char *prog)
{
fprintf(stderr,
"Usage: %s [<options>] <command> [arguments...]\n"
"Options:\n"
" -s <socket>: Set the unix domain socket to connect to\n"
2011-03-27 17:40:46 +02:00
" -t <timeout>: Set the timeout (in seconds) for a command to complete\n"
" -S: Use simplified output (for scripts)\n"
"\n"
"Commands:\n"
" - list [<path>] List objects\n"
" - call <path> <method> [<message>] Call an object method\n"
" - listen [<path>...] Listen for events\n"
" - send <type> [<message>] Send an event\n"
"\n", prog);
return 1;
}
2011-02-07 02:30:18 +01:00
struct {
const char *name;
int (*cb)(struct ubus_context *ctx, int argc, char **argv);
} commands[] = {
{ "list", ubus_cli_list },
{ "call", ubus_cli_call },
{ "listen", ubus_cli_listen },
{ "send", ubus_cli_send },
};
2010-12-06 03:51:58 +01:00
int main(int argc, char **argv)
{
const char *progname, *ubus_socket = NULL;
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 = 0;
2011-02-07 02:30:18 +01:00
int i, ch;
2010-12-06 03:51:58 +01:00
progname = argv[0];
2011-03-27 17:40:46 +02:00
while ((ch = getopt(argc, argv, "s:t:S")) != -1) {
switch (ch) {
case 's':
ubus_socket = optarg;
break;
case 't':
timeout = atoi(optarg);
break;
2011-03-27 17:40:46 +02:00
case 'S':
simple_output = true;
break;
default:
return usage(progname);
}
}
argc -= optind;
argv += optind;
2011-02-07 02:30:18 +01:00
cmd = argv[0];
if (argc < 1)
return usage(progname);
ctx = ubus_connect(ubus_socket);
2010-12-06 03:51:58 +01:00
if (!ctx) {
2011-03-27 18:28:47 +02:00
if (!simple_output)
fprintf(stderr, "Failed to connect to ubus\n");
2010-12-06 03:51:58 +01:00
return -1;
}
argv++;
argc--;
2010-12-06 03:51:58 +01:00
2011-02-07 02:30:18 +01:00
ret = -2;
for (i = 0; i < ARRAY_SIZE(commands); i++) {
if (strcmp(commands[i].name, cmd) != 0)
continue;
2011-01-30 23:57:14 +01:00
2011-02-07 02:30:18 +01:00
ret = commands[i].cb(ctx, argc, argv);
break;
2010-12-06 03:51:58 +01:00
}
2011-03-27 18:28:47 +02:00
if (ret > 0 && !simple_output)
2011-02-07 02:30:18 +01:00
fprintf(stderr, "Command failed: %s\n", ubus_strerror(ret));
else if (ret == -2)
usage(progname);
2011-01-30 23:57:14 +01:00
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
}