const char *name;
/** pointer to the function that handles the command */
int (*handler)(int, int, char**);
+int (*line_handler)(int, char*);
/** one-line description of the command */
const char *description;
/** summary of the command line options */
extern const char *status_item_list[NUM_STAT_ITEMS];
-static int com_grab(int, int, char **);
+static int com_grab(int, char *);
static int com_cycle(int, int, char **);
static int com_help(int, int, char **);
static int com_off(int, int, char **);
},
{
.name = "grab",
-.handler = com_grab,
+.line_handler = com_grab,
.description = "grab the audio stream",
.synopsis = "-- grab [grab_options]",
.help =
}
#endif
-static int com_grab(int fd, int argc, char **argv)
+
+static int com_grab(int fd, char *cmdline)
{
struct grab_client *gc;
struct filter_node *fn;
int i, err;
char *msg;
- PARA_INFO_LOG("argc: %d, argv[0]: %s, optind: %d\n", argc, argv[0], optind);
- gc = grab_client_new(fd, argc, argv, &err);
- PARA_INFO_LOG("argc: %d, argv[0]: %s, optind: %d\n", argc, argv[0], optind);
+ gc = grab_client_new(fd, cmdline, &err);
if (!gc)
goto err_out;
fn = find_filter_node(gc->conf->slot_arg, gc->audio_format_num, gc->conf->filter_num_arg);
static int handle_connect(void)
{
int i, argc, ret, clifd = -1;
- char *buf = para_malloc(MAXLINE), **argv = NULL;
+ char *p, *buf = para_malloc(MAXLINE), **argv = NULL;
struct sockaddr_un unix_addr;
ret = para_accept(audiod_socket, &unix_addr, sizeof(struct sockaddr_un));
ret = recv_cred_buffer(clifd, buf, MAXLINE - 1);
if (ret < 0)
goto out;
- PARA_INFO_LOG("connection from user %i\n", ret);
+ PARA_INFO_LOG("connection from user %i, buf: %s\n", ret, buf);
ret = check_perms(ret);
if (ret < 0)
goto out;
- argc = split_args(buf, &argv, "\n");
- PARA_INFO_LOG("argv[0]: %s, argc= %d\n", argv[0], argc);
+ ret = -E_INVALID_AUDIOD_CMD;
+ p = strchr(buf, '\n');
+ if (!p)
+ p = "";
+ else {
+ *p = '\0';
+ p++;
+ }
for (i = 0; cmds[i].name; i++) {
- if (strcmp(cmds[i].name, argv[0]))
+ int j;
+ if (strcmp(cmds[i].name, buf))
continue;
- ret = cmds[i].handler(clifd, argc, argv);
+ if (cmds[i].handler) {
+ argc = split_args(buf, &argv, "\n");
+ PARA_INFO_LOG("argv[0]: %s, argc= %d\n", argv[0], argc);
+ ret = cmds[i].handler(clifd, argc, argv);
+ goto out;
+ }
+ for (j = 0; p[j]; j++)
+ if (p[j] == '\n')
+ p[j] = ' ';
+ PARA_INFO_LOG("cmd: %s, options: %s\n", buf, p);
+ ret = cmds[i].line_handler(clifd, p);
goto out;
}
ret = -E_INVALID_AUDIOD_CMD; /* cmd not found */
* argc, argv get freed when com_grab() returns, so we have to make a
* copy.
*/
-struct grab_client *grab_client_new(int fd, int argc, char **argv, int *err)
+struct grab_client *grab_client_new(int fd, char *line, int *err)
{
- int i, ret;
+ int ret;
struct grab_client *gc = para_calloc(sizeof(struct grab_client));
gc->conf = para_calloc(sizeof(struct grab_client_args_info));
- gc->argc = argc;
- gc->argv = para_calloc((argc + 2) * sizeof(char *));
- for (i = 0; argv[i]; i++) {
- gc->argv[i] = para_strdup(argv[i]);
- PARA_INFO_LOG("argc: %d, argv[%d]: %s\n", argc, i, gc->argv[i]);
- }
- ret = grab_client_cmdline_parser(gc->argc, gc->argv , gc->conf);
+ ret = grab_client_cmdline_parser_string(line, gc->conf, "grab");
*err = -E_GC_SYNTAX;
if (ret)
goto err_out;
add_inactive_gc(gc);
return gc;
err_out:
- for (i = 0; i < argc; i++)
- free(gc->argv[i]);
- free(gc->argv);
free(gc->conf);
free(gc);
return NULL;