split polypcore/util.[ch] into polypcore/core-util.[ch] and polyp/util.[ch]
[profile/ivi/pulseaudio.git] / src / utils / pabrowse.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 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <stdio.h>
27 #include <assert.h>
28 #include <signal.h>
29
30 #include <polyp/polypaudio.h>
31 #include <polyp/browser.h>
32
33 static void exit_signal_callback(pa_mainloop_api*m, pa_signal_event *e, int sig, void *userdata) {
34     fprintf(stderr, "Got signal, exiting\n");
35     m->quit(m, 0);
36 }
37
38 static void dump_server(const pa_browse_info *i) {
39     char t[16];
40
41     if (i->cookie)
42         snprintf(t, sizeof(t), "0x%08x", *i->cookie);
43     
44     printf("server: %s\n"
45            "server-version: %s\n"
46            "user-name: %s\n"
47            "fqdn: %s\n"
48            "cookie: %s\n",
49            i->server,
50            i->server_version ? i->server_version : "n/a",
51            i->user_name ? i->user_name : "n/a",
52            i->fqdn ? i->fqdn : "n/a",
53            i->cookie ? t : "n/a");
54 }
55
56 static void dump_device(const pa_browse_info *i) {
57     char ss[PA_SAMPLE_SPEC_SNPRINT_MAX];
58
59     if (i->sample_spec)
60         pa_sample_spec_snprint(ss, sizeof(ss), i->sample_spec);
61
62     printf("device: %s\n"
63            "description: %s\n"
64            "sample spec: %s\n",
65            i->device,
66            i->description ? i->description : "n/a",
67            i->sample_spec ? ss : "n/a");
68            
69 }
70
71 static void browser_callback(pa_browser *b, pa_browse_opcode_t c, const pa_browse_info *i, void *userdata) {
72     assert(b && i);
73
74     switch (c) {
75
76         case PA_BROWSE_NEW_SERVER:
77             printf("\n=> new server <%s>\n", i->name);
78             dump_server(i);
79             break;
80
81         case PA_BROWSE_NEW_SINK:
82             printf("\n=> new sink <%s>\n", i->name);
83             dump_server(i);
84             dump_device(i);
85             break;
86
87         case PA_BROWSE_NEW_SOURCE:
88             printf("\n=> new source <%s>\n", i->name);
89             dump_server(i);
90             dump_device(i);
91             break;
92             
93         case PA_BROWSE_REMOVE_SERVER:
94             printf("\n=> removed server <%s>\n", i->name);
95             break;
96
97         case PA_BROWSE_REMOVE_SINK:
98             printf("\n=> removed sink <%s>\n", i->name);
99             break;
100
101         case PA_BROWSE_REMOVE_SOURCE:
102             printf("\n=> removed source <%s>\n", i->name);
103             break;
104
105         default:
106             ;
107     }
108 }
109
110 int main(int argc, char *argv[]) {
111     pa_mainloop *mainloop = NULL;
112     pa_browser *browser = NULL;
113     int ret = 1, r;
114
115     if (!(mainloop = pa_mainloop_new()))
116         goto finish;
117
118     r = pa_signal_init(pa_mainloop_get_api(mainloop));
119     assert(r == 0);
120     pa_signal_new(SIGINT, exit_signal_callback, NULL);
121     pa_signal_new(SIGTERM, exit_signal_callback, NULL);
122     signal(SIGPIPE, SIG_IGN);
123     
124     if (!(browser = pa_browser_new(pa_mainloop_get_api(mainloop))))
125         goto finish;
126
127     pa_browser_set_callback(browser, browser_callback, NULL);
128     
129     ret = 0;
130     pa_mainloop_run(mainloop, &ret);
131
132 finish:
133     if (mainloop) {
134         pa_signal_done();
135         pa_mainloop_free(mainloop);
136     }
137
138     return ret;
139 }