]> code.delx.au - pulseaudio/blob - polyp/client-conf.c
Make the whole stuff LGPL only
[pulseaudio] / polyp / client-conf.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 Lesser 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 Lesser 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 #include <stdlib.h>
23 #include <assert.h>
24 #include <unistd.h>
25 #include <errno.h>
26 #include <string.h>
27
28 #include "client-conf.h"
29 #include "xmalloc.h"
30 #include "log.h"
31 #include "conf-parser.h"
32 #include "util.h"
33 #include "authkey.h"
34
35 #ifndef DEFAULT_CONFIG_DIR
36 #define DEFAULT_CONFIG_DIR "/etc/polypaudio"
37 #endif
38
39 #define DEFAULT_CLIENT_CONFIG_FILE DEFAULT_CONFIG_DIR"/client.conf"
40 #define DEFAULT_CLIENT_CONFIG_FILE_USER ".polypaudio/client.conf"
41
42 #define ENV_CLIENT_CONFIG_FILE "POLYP_CLIENTCONFIG"
43 #define ENV_DEFAULT_SINK "POLYP_SINK"
44 #define ENV_DEFAULT_SOURCE "POLYP_SOURCE"
45 #define ENV_DEFAULT_SERVER "POLYP_SERVER"
46 #define ENV_DAEMON_BINARY "POLYP_BINARY"
47 #define ENV_COOKIE_FILE "POLYP_COOKIE"
48
49 static const struct pa_client_conf default_conf = {
50 .daemon_binary = NULL,
51 .extra_arguments = NULL,
52 .default_sink = NULL,
53 .default_source = NULL,
54 .default_server = NULL,
55 .autospawn = 0,
56 .cookie_file = NULL,
57 .cookie_valid = 0
58 };
59
60 struct pa_client_conf *pa_client_conf_new(void) {
61 struct pa_client_conf *c = pa_xmemdup(&default_conf, sizeof(default_conf));
62
63
64
65 c->daemon_binary = pa_xstrdup(POLYPAUDIO_BINARY);
66 c->extra_arguments = pa_xstrdup("--log-target=syslog --exit-idle-time=5");
67
68 c->cookie_file = pa_xstrdup(PA_NATIVE_COOKIE_FILE);
69
70 return c;
71 }
72
73 void pa_client_conf_free(struct pa_client_conf *c) {
74 assert(c);
75 pa_xfree(c->daemon_binary);
76 pa_xfree(c->extra_arguments);
77 pa_xfree(c->default_sink);
78 pa_xfree(c->default_source);
79 pa_xfree(c->default_server);
80 pa_xfree(c->cookie_file);
81 pa_xfree(c);
82 }
83 int pa_client_conf_load(struct pa_client_conf *c, const char *filename) {
84 FILE *f = NULL;
85 char *fn = NULL;
86 int r = -1;
87
88 struct pa_config_item table[] = {
89 { "daemon-binary", pa_config_parse_string, NULL },
90 { "extra-arguments", pa_config_parse_string, NULL },
91 { "default-sink", pa_config_parse_string, NULL },
92 { "default-source", pa_config_parse_string, NULL },
93 { "default-server", pa_config_parse_string, NULL },
94 { "autospawn", pa_config_parse_bool, NULL },
95 { "cookie-file", pa_config_parse_string, NULL },
96 { NULL, NULL, NULL },
97 };
98
99 table[0].data = &c->daemon_binary;
100 table[1].data = &c->extra_arguments;
101 table[2].data = &c->default_sink;
102 table[3].data = &c->default_source;
103 table[4].data = &c->default_server;
104 table[5].data = &c->autospawn;
105 table[6].data = &c->cookie_file;
106
107 f = filename ?
108 fopen((fn = pa_xstrdup(filename)), "r") :
109 pa_open_config_file(DEFAULT_CLIENT_CONFIG_FILE, DEFAULT_CLIENT_CONFIG_FILE_USER, ENV_CLIENT_CONFIG_FILE, &fn);
110
111 if (!f && errno != EINTR) {
112 pa_log(__FILE__": WARNING: failed to open configuration file '%s': %s\n", filename, strerror(errno));
113 goto finish;
114 }
115
116 r = f ? pa_config_parse(fn, f, table, NULL) : 0;
117
118 if (!r)
119 r = pa_client_conf_load_cookie(c);
120
121
122 finish:
123 pa_xfree(fn);
124
125 if (f)
126 fclose(f);
127
128 return r;
129 }
130
131 int pa_client_conf_env(struct pa_client_conf *c) {
132 char *e;
133
134 if ((e = getenv(ENV_DEFAULT_SINK))) {
135 pa_xfree(c->default_sink);
136 c->default_sink = pa_xstrdup(e);
137 }
138
139 if ((e = getenv(ENV_DEFAULT_SOURCE))) {
140 pa_xfree(c->default_source);
141 c->default_source = pa_xstrdup(e);
142 }
143
144 if ((e = getenv(ENV_DEFAULT_SERVER))) {
145 pa_xfree(c->default_server);
146 c->default_server = pa_xstrdup(e);
147 }
148
149 if ((e = getenv(ENV_DAEMON_BINARY))) {
150 pa_xfree(c->daemon_binary);
151 c->daemon_binary = pa_xstrdup(e);
152 }
153
154 if ((e = getenv(ENV_COOKIE_FILE))) {
155 pa_xfree(c->cookie_file);
156 c->cookie_file = pa_xstrdup(e);
157
158 return pa_client_conf_load_cookie(c);
159 }
160
161 return 0;
162 }
163
164 int pa_client_conf_load_cookie(struct pa_client_conf* c) {
165 assert(c);
166
167 c->cookie_valid = 0;
168
169 if (!c->cookie_file)
170 return -1;
171
172 if (pa_authkey_load_auto(c->cookie_file, c->cookie, sizeof(c->cookie)) < 0)
173 return -1;
174
175 c->cookie_valid = 1;
176 return 0;
177 }
178