2004-07-16 19:56:36 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
|
|
|
|
This file is part of polypaudio.
|
|
|
|
|
|
|
|
|
|
polypaudio is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published
|
|
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
polypaudio is distributed in the hope that it will be useful, but
|
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with polypaudio; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-07-12 21:28:11 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
|
|
|
|
|
#include "cmdline.h"
|
|
|
|
|
#include "util.h"
|
2004-07-14 21:52:41 +00:00
|
|
|
#include "strbuf.h"
|
2004-07-12 21:28:11 +00:00
|
|
|
|
|
|
|
|
void pa_cmdline_help(const char *argv0) {
|
|
|
|
|
const char *e;
|
|
|
|
|
|
|
|
|
|
if ((e = strrchr(argv0, '/')))
|
|
|
|
|
e++;
|
|
|
|
|
else
|
|
|
|
|
e = argv0;
|
|
|
|
|
|
|
|
|
|
printf("%s [options]\n"
|
|
|
|
|
" -L MODULE Load the specified plugin module with the specified argument\n"
|
2004-07-14 21:52:41 +00:00
|
|
|
" -F FILE Run the specified script\n"
|
|
|
|
|
" -C Open a command line on the running TTY\n"
|
2004-07-12 21:28:11 +00:00
|
|
|
" -D Daemonize after loading the modules\n"
|
2004-07-14 21:52:41 +00:00
|
|
|
" -f Dont quit when the startup fails\n"
|
|
|
|
|
" -v Verbose startup\n"
|
2004-07-12 21:28:11 +00:00
|
|
|
" -h Show this help\n", e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
struct pa_cmdline* pa_cmdline_parse(int argc, char * const argv []) {
|
|
|
|
|
char c;
|
|
|
|
|
struct pa_cmdline *cmdline = NULL;
|
2004-07-14 21:52:41 +00:00
|
|
|
struct pa_strbuf *buf = NULL;
|
2004-07-12 21:28:11 +00:00
|
|
|
assert(argc && argv);
|
|
|
|
|
|
|
|
|
|
cmdline = malloc(sizeof(struct pa_cmdline));
|
|
|
|
|
assert(cmdline);
|
2004-07-14 21:52:41 +00:00
|
|
|
cmdline->daemonize = cmdline->help = cmdline->verbose = 0;
|
|
|
|
|
cmdline->fail = 1;
|
|
|
|
|
|
|
|
|
|
buf = pa_strbuf_new();
|
|
|
|
|
assert(buf);
|
2004-07-12 21:28:11 +00:00
|
|
|
|
2004-07-14 21:52:41 +00:00
|
|
|
while ((c = getopt(argc, argv, "L:F:CDhfv")) != -1) {
|
2004-07-12 21:28:11 +00:00
|
|
|
switch (c) {
|
2004-07-14 21:52:41 +00:00
|
|
|
case 'L':
|
|
|
|
|
pa_strbuf_printf(buf, "load %s\n", optarg);
|
2004-07-12 21:28:11 +00:00
|
|
|
break;
|
|
|
|
|
case 'F':
|
2004-07-14 21:52:41 +00:00
|
|
|
pa_strbuf_printf(buf, ".include %s\n", optarg);
|
2004-07-12 21:28:11 +00:00
|
|
|
break;
|
|
|
|
|
case 'C':
|
2004-07-14 21:52:41 +00:00
|
|
|
pa_strbuf_puts(buf, "load module-cli\n");
|
2004-07-12 21:28:11 +00:00
|
|
|
break;
|
|
|
|
|
case 'D':
|
|
|
|
|
cmdline->daemonize = 1;
|
|
|
|
|
break;
|
|
|
|
|
case 'h':
|
|
|
|
|
cmdline->help = 1;
|
|
|
|
|
break;
|
2004-07-14 21:52:41 +00:00
|
|
|
case 'f':
|
|
|
|
|
cmdline->fail = 0;
|
|
|
|
|
break;
|
|
|
|
|
case 'v':
|
|
|
|
|
cmdline->verbose = 0;
|
|
|
|
|
break;
|
2004-07-12 21:28:11 +00:00
|
|
|
default:
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-14 21:52:41 +00:00
|
|
|
cmdline->cli_commands = pa_strbuf_tostring_free(buf);
|
2004-07-12 21:28:11 +00:00
|
|
|
return cmdline;
|
|
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
if (cmdline)
|
|
|
|
|
pa_cmdline_free(cmdline);
|
2004-07-14 21:52:41 +00:00
|
|
|
if (buf)
|
|
|
|
|
pa_strbuf_free(buf);
|
2004-07-12 21:28:11 +00:00
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_cmdline_free(struct pa_cmdline *cmd) {
|
|
|
|
|
assert(cmd);
|
2004-07-14 21:52:41 +00:00
|
|
|
free(cmd->cli_commands);
|
2004-07-12 21:28:11 +00:00
|
|
|
free(cmd);
|
|
|
|
|
}
|