]> code.delx.au - pulseaudio/blob - src/polyp/subscribe.c
* a lot of doxygen updates
[pulseaudio] / src / polyp / subscribe.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 <assert.h>
27 #include <stdio.h>
28
29 #include <polypcore/gccmacro.h>
30 #include <polypcore/pstream-util.h>
31
32 #include "internal.h"
33
34 #include "subscribe.h"
35
36 void pa_command_subscribe_event(pa_pdispatch *pd, uint32_t command, PA_GCC_UNUSED uint32_t tag, pa_tagstruct *t, void *userdata) {
37 pa_context *c = userdata;
38 pa_subscription_event_type_t e;
39 uint32_t index;
40 assert(pd && command == PA_COMMAND_SUBSCRIBE_EVENT && t && c);
41
42 pa_context_ref(c);
43
44 if (pa_tagstruct_getu32(t, &e) < 0 ||
45 pa_tagstruct_getu32(t, &index) < 0 ||
46 !pa_tagstruct_eof(t)) {
47 pa_context_fail(c, PA_ERR_PROTOCOL);
48 goto finish;
49 }
50
51 if (c->subscribe_callback)
52 c->subscribe_callback(c, e, index, c->subscribe_userdata);
53
54 finish:
55 pa_context_unref(c);
56 }
57
58
59 pa_operation* pa_context_subscribe(pa_context *c, pa_subscription_mask_t m, pa_context_success_cb_t cb, void *userdata) {
60 pa_operation *o;
61 pa_tagstruct *t;
62 uint32_t tag;
63 assert(c);
64
65 o = pa_operation_new(c, NULL);
66 o->callback = (pa_operation_callback_t) cb;
67 o->userdata = userdata;
68
69 t = pa_tagstruct_new(NULL, 0);
70 pa_tagstruct_putu32(t, PA_COMMAND_SUBSCRIBE);
71 pa_tagstruct_putu32(t, tag = c->ctag++);
72 pa_tagstruct_putu32(t, m);
73 pa_pstream_send_tagstruct(c->pstream, t);
74 pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, pa_context_simple_ack_callback, o);
75
76 return pa_operation_ref(o);
77 }
78
79 void pa_context_set_subscribe_callback(pa_context *c, pa_context_subscribe_cb_t cb, void *userdata) {
80 assert(c);
81 c->subscribe_callback = cb;
82 c->subscribe_userdata = userdata;
83 }