add missing g_type_init()
[pulseaudio.git] / src / modules / gconf / gconf-helper.c
blob40724f4e643e59cd7f480ec94c598236f68b909a
1 /* $Id$ */
3 /***
4 This file is part of PulseAudio.
6 PulseAudio 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.
11 PulseAudio 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.
16 You should have received a copy of the GNU Lesser General Public License
17 along with PulseAudio; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19 USA.
20 ***/
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
26 #include <string.h>
27 #include <stdlib.h>
28 #include <stdio.h>
30 #include <gconf/gconf-client.h>
31 #include <glib.h>
33 #define PA_GCONF_ROOT "/system/pulseaudio"
34 #define PA_GCONF_PATH_MODULES PA_GCONF_ROOT"/modules"
36 static void handle_module(GConfClient *client, const char *name) {
37 gchar p[1024];
38 gboolean enabled, locked;
39 int i;
41 snprintf(p, sizeof(p), PA_GCONF_PATH_MODULES"/%s/locked", name);
42 locked = gconf_client_get_bool(client, p, FALSE);
44 if (locked)
45 return;
47 snprintf(p, sizeof(p), PA_GCONF_PATH_MODULES"/%s/enabled", name);
48 enabled = gconf_client_get_bool(client, p, FALSE);
50 printf("%c%s%c", enabled ? '+' : '-', name, 0);
52 if (enabled) {
54 for (i = 0; i < 10; i++) {
55 gchar *n, *a;
57 snprintf(p, sizeof(p), PA_GCONF_PATH_MODULES"/%s/name%i", name, i);
58 if (!(n = gconf_client_get_string(client, p, NULL)) || !*n)
59 break;
61 snprintf(p, sizeof(p), PA_GCONF_PATH_MODULES"/%s/args%i", name, i);
62 a = gconf_client_get_string(client, p, NULL);
64 printf("%s%c%s%c", n, 0, a ? a : "", 0);
66 g_free(n);
67 g_free(a);
70 printf("%c", 0);
73 fflush(stdout);
76 static void modules_callback(
77 GConfClient* client,
78 guint cnxn_id,
79 GConfEntry *entry,
80 gpointer user_data) {
82 const char *n;
83 char buf[128];
85 g_assert(strncmp(entry->key, PA_GCONF_PATH_MODULES"/", sizeof(PA_GCONF_PATH_MODULES)) == 0);
87 n = entry->key + sizeof(PA_GCONF_PATH_MODULES);
89 g_strlcpy(buf, n, sizeof(buf));
90 buf[strcspn(buf, "/")] = 0;
92 handle_module(client, buf);
95 int main(int argc, char *argv[]) {
96 GMainLoop *g;
97 GConfClient *client;
98 GSList *modules, *m;
100 g_type_init();
102 if (!(client = gconf_client_get_default()))
103 goto fail;
105 gconf_client_add_dir(client, PA_GCONF_ROOT, GCONF_CLIENT_PRELOAD_RECURSIVE, NULL);
106 gconf_client_notify_add(client, PA_GCONF_PATH_MODULES, modules_callback, NULL, NULL, NULL);
108 modules = gconf_client_all_dirs(client, PA_GCONF_PATH_MODULES, NULL);
110 for (m = modules; m; m = m->next) {
111 char *e = strrchr(m->data, '/');
112 handle_module(client, e ? e+1 : m->data);
115 g_slist_free(modules);
117 /* Signal the parent that we are now initialized */
118 printf("!");
119 fflush(stdout);
121 g = g_main_loop_new(NULL, FALSE);
122 g_main_loop_run(g);
123 g_main_loop_unref(g);
125 g_object_unref(G_OBJECT(client));
127 return 0;
129 fail:
130 return 1;