add options to override the ubus socket name for the cli and the example program
This commit is contained in:
parent
8c8a8ba34f
commit
7a56ab0411
2 changed files with 71 additions and 27 deletions
75
cli.c
75
cli.c
|
@ -1,3 +1,5 @@
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include <libubox/blobmsg_json.h>
|
#include <libubox/blobmsg_json.h>
|
||||||
#include "libubus.h"
|
#include "libubus.h"
|
||||||
|
|
||||||
|
@ -55,18 +57,6 @@ static void receive_data(struct ubus_request *req, int type, struct blob_attr *m
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static int usage(char *prog)
|
|
||||||
{
|
|
||||||
fprintf(stderr,
|
|
||||||
"Usage: %s <command> [arguments...]\n"
|
|
||||||
"Commands:\n"
|
|
||||||
" - list [<path>] List objects\n"
|
|
||||||
" - call <path> <method> [<message>] Call an object method\n"
|
|
||||||
" - listen [<path>...] Listen for events\n"
|
|
||||||
"\n", prog);
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void receive_event(struct ubus_context *ctx, struct ubus_event_handler *ev,
|
static void receive_event(struct ubus_context *ctx, struct ubus_event_handler *ev,
|
||||||
const char *type, struct blob_attr *msg)
|
const char *type, struct blob_attr *msg)
|
||||||
{
|
{
|
||||||
|
@ -115,48 +105,83 @@ static int ubus_cli_listen(struct ubus_context *ctx, int argc, char **argv)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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"
|
||||||
|
"\n"
|
||||||
|
"Commands:\n"
|
||||||
|
" - list [<path>] List objects\n"
|
||||||
|
" - call <path> <method> [<message>] Call an object method\n"
|
||||||
|
" - listen [<path>...] Listen for events\n"
|
||||||
|
"\n", prog);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
const char *progname, *ubus_socket = NULL;
|
||||||
static struct ubus_context *ctx;
|
static struct ubus_context *ctx;
|
||||||
char *cmd;
|
char *cmd;
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
|
int ch;
|
||||||
|
|
||||||
ctx = ubus_connect(NULL);
|
progname = argv[0];
|
||||||
|
|
||||||
|
while ((ch = getopt(argc, argv, "s:")) != -1) {
|
||||||
|
switch (ch) {
|
||||||
|
case 's':
|
||||||
|
ubus_socket = optarg;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return usage(progname);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
argc -= optind;
|
||||||
|
argv += optind;
|
||||||
|
|
||||||
|
ctx = ubus_connect(ubus_socket);
|
||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
fprintf(stderr, "Failed to connect to ubus\n");
|
fprintf(stderr, "Failed to connect to ubus\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd = argv[1];
|
cmd = argv[0];
|
||||||
if (argc < 2)
|
if (argc < 1)
|
||||||
return usage(argv[0]);
|
return usage(progname);
|
||||||
|
|
||||||
|
argv++;
|
||||||
|
argc--;
|
||||||
|
|
||||||
if (!strcmp(cmd, "list")) {
|
if (!strcmp(cmd, "list")) {
|
||||||
const char *path = NULL;
|
const char *path = NULL;
|
||||||
|
|
||||||
if (argc == 3)
|
if (argc == 1)
|
||||||
path = argv[2];
|
path = argv[0];
|
||||||
|
|
||||||
ret = ubus_lookup(ctx, path, receive_lookup, NULL);
|
ret = ubus_lookup(ctx, path, receive_lookup, NULL);
|
||||||
} else if (!strcmp(cmd, "call")) {
|
} else if (!strcmp(cmd, "call")) {
|
||||||
uint32_t id;
|
uint32_t id;
|
||||||
|
|
||||||
if (argc < 4 || argc > 5)
|
if (argc < 2 || argc > 3)
|
||||||
return usage(argv[0]);
|
return usage(progname);
|
||||||
|
|
||||||
blob_buf_init(&b, 0);
|
blob_buf_init(&b, 0);
|
||||||
if (argc == 5 && !blobmsg_add_json_from_string(&b, argv[4])) {
|
if (argc == 3 && !blobmsg_add_json_from_string(&b, argv[2])) {
|
||||||
fprintf(stderr, "Failed to parse message data\n");
|
fprintf(stderr, "Failed to parse message data\n");
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = ubus_lookup_id(ctx, argv[2], &id);
|
ret = ubus_lookup_id(ctx, argv[0], &id);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
ret = ubus_invoke(ctx, id, argv[3], b.head, receive_data, NULL);
|
ret = ubus_invoke(ctx, id, argv[1], b.head, receive_data, NULL);
|
||||||
} else if (!strcmp(cmd, "listen")) {
|
} else if (!strcmp(cmd, "listen")) {
|
||||||
ret = ubus_cli_listen(ctx, argc - 2, argv + 2);
|
ret = ubus_cli_listen(ctx, argc, argv);
|
||||||
} else {
|
} else {
|
||||||
return usage(argv[0]);
|
return usage(progname);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (ret)
|
if (ret)
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
#include "libubus.h"
|
#include "libubus.h"
|
||||||
|
|
||||||
static struct ubus_context *ctx;
|
static struct ubus_context *ctx;
|
||||||
|
@ -68,9 +70,26 @@ static struct ubus_object test_object2 = {
|
||||||
|
|
||||||
int main(int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
int ret;
|
const char *progname, *ubus_socket = NULL;
|
||||||
|
int ret = 0;
|
||||||
|
int ch;
|
||||||
|
|
||||||
ctx = ubus_connect(NULL);
|
progname = argv[0];
|
||||||
|
|
||||||
|
while ((ch = getopt(argc, argv, "s:")) != -1) {
|
||||||
|
switch (ch) {
|
||||||
|
case 's':
|
||||||
|
ubus_socket = optarg;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
argc -= optind;
|
||||||
|
argv += optind;
|
||||||
|
|
||||||
|
ctx = ubus_connect(ubus_socket);
|
||||||
if (!ctx) {
|
if (!ctx) {
|
||||||
fprintf(stderr, "Failed to connect to ubus\n");
|
fprintf(stderr, "Failed to connect to ubus\n");
|
||||||
return -1;
|
return -1;
|
||||||
|
|
Loading…
Add table
Reference in a new issue