ubus/cli.c

224 lines
4.4 KiB
C
Raw Normal View History

#include <json/json.h>
2010-12-06 03:51:58 +01:00
#include "libubus.h"
static struct blob_buf b;
static bool blobmsg_add_element(struct blob_buf *b, const char *name, json_object *obj);
static bool blobmsg_add_object(struct blob_buf *b, json_object *obj)
{
json_object_object_foreach(obj, key, val) {
if (!blobmsg_add_element(b, key, val))
return false;
}
return true;
}
static bool blobmsg_add_array(struct blob_buf *b, struct array_list *a)
{
int i, len;
for (i = 0, len = array_list_length(a); i < len; i++) {
if (!blobmsg_add_element(b, NULL, array_list_get_idx(a, i)))
return false;
}
return true;
}
static bool blobmsg_add_element(struct blob_buf *b, const char *name, json_object *obj)
{
bool ret = true;
void *c;
if (!obj)
return false;
switch (json_object_get_type(obj)) {
case json_type_object:
c = blobmsg_open_table(b, name);
ret = blobmsg_add_object(b, obj);
blobmsg_close_table(b, c);
break;
case json_type_array:
c = blobmsg_open_array(b, name);
ret = blobmsg_add_array(b, json_object_get_array(obj));
blobmsg_close_array(b, c);
break;
case json_type_string:
blobmsg_add_string(b, name, json_object_get_string(obj));
break;
case json_type_boolean:
blobmsg_add_u8(b, name, json_object_get_boolean(obj));
break;
case json_type_int:
blobmsg_add_u32(b, name, json_object_get_int(obj));
break;
default:
return false;
}
return ret;
}
static bool blobmsg_from_json(struct blob_buf *b, const char *str)
{
json_object *obj;
bool ret = false;
obj = json_tokener_parse(str);
if (is_error(obj))
return false;
if (json_object_get_type(obj) != json_type_object)
goto out;
ret = blobmsg_add_object(b, obj);
out:
json_object_put(obj);
return ret;
}
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)
{
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);
fprintf(stderr, "%s\n", str);
free(str);
2011-01-31 17:18:10 +01:00
}
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;
}
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;
if (msg)
str = blobmsg_format_json(msg, true);
else
str = "";
fprintf(stderr, "\"%s\":{ %s }\n", type, str);
free(str);
}
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) {
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 = 0;
2010-12-06 03:51:58 +01:00
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]);
blob_buf_init(&b, 0);
if (argc == 5 && !blobmsg_from_json(&b, argv[4])) {
fprintf(stderr, "Failed to parse message data\n");
goto out;
}
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], b.head, 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));
out:
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
}