]> code.delx.au - pulseaudio/blob - polyp/cmdline.c
implement proper logging
[pulseaudio] / polyp / cmdline.c
1 /* $Id$ */
2
3 /***
4 This file is part of polypaudio.
5
6 polypaudio is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published
8 by the Free Software Foundation; either version 2 of the License,
9 or (at your option) any later version.
10
11 polypaudio is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with polypaudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <string.h>
27 #include <assert.h>
28 #include <stdlib.h>
29 #include <stdio.h>
30 #include <getopt.h>
31 #include <sys/stat.h>
32
33 #include "cmdline.h"
34 #include "util.h"
35 #include "strbuf.h"
36 #include "xmalloc.h"
37
38 #define ENV_CONFIG_FILE "POLYP_CONFIG"
39
40 char* config_file(void) {
41 char *p, *h;
42
43 if ((p = getenv(ENV_CONFIG_FILE)))
44 return pa_xstrdup(p);
45
46 if ((h = getenv("HOME"))) {
47 struct stat st;
48 p = pa_sprintf_malloc("%s/.polypaudio", h);
49 if (stat(p, &st) >= 0)
50 return p;
51
52 pa_xfree(p);
53 }
54
55 return pa_xstrdup(DEFAULT_CONFIG_FILE);
56 }
57
58 void pa_cmdline_help(const char *argv0) {
59 const char *e;
60 char *cfg = config_file();
61
62 if ((e = strrchr(argv0, '/')))
63 e++;
64 else
65 e = argv0;
66
67 printf("%s [options]\n"
68 " -r Try to set high process priority (only available as root)\n"
69 " -R Don't drop root if SETUID root\n"
70 " -L MODULE Load the specified plugin module with the specified argument\n"
71 " -F FILE Run the specified script\n"
72 " -C Open a command line on the running TTY\n"
73 " -n Don't load configuration file (%s)\n"
74 " -D Daemonize after loading the modules\n"
75 " -d Disallow module loading after startup\n"
76 " -f Dont quit when the startup fails\n"
77 " -v Verbose startup\n"
78 " -X SECS Terminate the daemon after the last client quit and this time passed\n"
79 " -h Show this help\n"
80 " -l TARGET Specify the log target (syslog, stderr, auto)\n"
81 " -V Show version\n", e, cfg);
82
83 pa_xfree(cfg);
84 }
85
86 struct pa_cmdline* pa_cmdline_parse(int argc, char * const argv []) {
87 char c, *cfg;
88 struct pa_cmdline *cmdline = NULL;
89 struct pa_strbuf *buf = NULL;
90 int no_default_config_file = 0;
91 assert(argc && argv);
92
93 cmdline = pa_xmalloc(sizeof(struct pa_cmdline));
94 cmdline->daemonize =
95 cmdline->help =
96 cmdline->verbose =
97 cmdline->high_priority =
98 cmdline->stay_root =
99 cmdline->version =
100 cmdline->disallow_module_loading = 0;
101 cmdline->fail = cmdline->auto_log_target = 1;
102 cmdline->quit_after_last_client_time = -1;
103 cmdline->log_target = -1;
104
105 buf = pa_strbuf_new();
106 assert(buf);
107
108 while ((c = getopt(argc, argv, "L:F:CDhfvrRVndX:l:")) != -1) {
109 switch (c) {
110 case 'L':
111 pa_strbuf_printf(buf, "load %s\n", optarg);
112 break;
113 case 'F':
114 pa_strbuf_printf(buf, ".include %s\n", optarg);
115 break;
116 case 'C':
117 pa_strbuf_puts(buf, "load module-cli\n");
118 break;
119 case 'D':
120 cmdline->daemonize = 1;
121 break;
122 case 'h':
123 cmdline->help = 1;
124 break;
125 case 'f':
126 cmdline->fail = 0;
127 break;
128 case 'v':
129 cmdline->verbose = 1;
130 break;
131 case 'r':
132 cmdline->high_priority = 1;
133 break;
134 case 'R':
135 cmdline->stay_root = 1;
136 break;
137 case 'V':
138 cmdline->version = 1;
139 break;
140 case 'n':
141 no_default_config_file = 1;
142 break;
143 case 'd':
144 cmdline->disallow_module_loading = 1;
145 break;
146 case 'X':
147 cmdline->quit_after_last_client_time = atoi(optarg);
148 break;
149 case 'l':
150 if (!strcmp(optarg, "syslog")) {
151 cmdline->auto_log_target = 0;
152 cmdline->log_target = PA_LOG_SYSLOG;
153 } else if (!strcmp(optarg, "stderr")) {
154 cmdline->auto_log_target = 0;
155 cmdline->log_target = PA_LOG_STDERR;
156 } else if (!strcmp(optarg, "auto"))
157 cmdline->auto_log_target = 1;
158 else {
159 pa_log(__FILE__": Invalid log target: use either 'syslog', 'stderr' or 'auto'.\n");
160 goto fail;
161 }
162 break;
163 default:
164 goto fail;
165 }
166 }
167
168 if (!no_default_config_file) {
169 cfg = config_file();
170 pa_strbuf_printf(buf, ".include %s\n", cfg);
171 pa_xfree(cfg);
172 }
173
174 cmdline->cli_commands = pa_strbuf_tostring_free(buf);
175 return cmdline;
176
177 fail:
178 if (cmdline)
179 pa_cmdline_free(cmdline);
180 if (buf)
181 pa_strbuf_free(buf);
182 return NULL;
183 }
184
185 void pa_cmdline_free(struct pa_cmdline *cmd) {
186 assert(cmd);
187 pa_xfree(cmd->cli_commands);
188 pa_xfree(cmd);
189 }