2004-08-13 13:22:44 +00:00
|
|
|
/***
|
2006-06-19 21:53:48 +00:00
|
|
|
This file is part of PulseAudio.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-02-13 15:35:19 +00:00
|
|
|
Copyright 2004-2006 Lennart Poettering
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
2004-11-14 14:58:54 +00:00
|
|
|
it under the terms of the GNU Lesser General Public License as published
|
2004-08-13 13:22:44 +00:00
|
|
|
by the Free Software Foundation; either version 2 of the License,
|
|
|
|
|
or (at your option) any later version.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
2004-08-13 13:22:44 +00:00
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
General Public License for more details.
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-14 14:58:54 +00:00
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
2006-06-19 21:53:48 +00:00
|
|
|
along with PulseAudio; if not, write to the Free Software
|
2004-08-13 13:22:44 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-08-15 00:02:26 +00:00
|
|
|
#include <stdio.h>
|
2004-08-13 13:22:44 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
#include <pulse/gccmacro.h>
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/pstream-util.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
|
|
#include "subscribe.h"
|
2004-08-13 13:22:44 +00:00
|
|
|
|
2008-08-09 16:20:29 +02:00
|
|
|
void pa_command_subscribe_event(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_context *c = userdata;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_subscription_event_type_t e;
|
2006-02-24 15:12:42 +00:00
|
|
|
uint32_t idx;
|
2006-02-20 22:41:02 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(pd);
|
|
|
|
|
pa_assert(command == PA_COMMAND_SUBSCRIBE_EVENT);
|
|
|
|
|
pa_assert(t);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(c) >= 1);
|
2004-08-13 13:22:44 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_context_ref(c);
|
|
|
|
|
|
2004-08-13 13:22:44 +00:00
|
|
|
if (pa_tagstruct_getu32(t, &e) < 0 ||
|
2006-02-24 15:12:42 +00:00
|
|
|
pa_tagstruct_getu32(t, &idx) < 0 ||
|
2004-08-13 13:22:44 +00:00
|
|
|
!pa_tagstruct_eof(t)) {
|
2006-02-20 04:05:16 +00:00
|
|
|
pa_context_fail(c, PA_ERR_PROTOCOL);
|
2004-08-14 20:25:32 +00:00
|
|
|
goto finish;
|
2004-08-13 13:22:44 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
if (c->subscribe_callback)
|
2006-02-24 15:12:42 +00:00
|
|
|
c->subscribe_callback(c, e, idx, c->subscribe_userdata);
|
2004-08-13 13:22:44 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
finish:
|
|
|
|
|
pa_context_unref(c);
|
2004-08-13 13:22:44 +00:00
|
|
|
}
|
|
|
|
|
|
2006-02-20 17:09:39 +00:00
|
|
|
pa_operation* pa_context_subscribe(pa_context *c, pa_subscription_mask_t m, pa_context_success_cb_t cb, void *userdata) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_operation *o;
|
|
|
|
|
pa_tagstruct *t;
|
2004-08-13 13:22:44 +00:00
|
|
|
uint32_t tag;
|
2006-02-20 22:41:02 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(c) >= 1);
|
2004-08-13 13:22:44 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
|
2004-08-13 13:22:44 +00:00
|
|
|
|
2006-02-23 01:24:16 +00:00
|
|
|
t = pa_tagstruct_command(c, PA_COMMAND_SUBSCRIBE, &tag);
|
2004-08-15 00:02:26 +00:00
|
|
|
pa_tagstruct_putu32(t, m);
|
2004-08-13 13:22:44 +00:00
|
|
|
pa_pstream_send_tagstruct(c->pstream, t);
|
2006-04-24 19:29:15 +00:00
|
|
|
pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, pa_context_simple_ack_callback, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
|
2004-08-13 13:22:44 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
return o;
|
2004-08-13 13:22:44 +00:00
|
|
|
}
|
|
|
|
|
|
2006-02-20 17:09:39 +00:00
|
|
|
void pa_context_set_subscribe_callback(pa_context *c, pa_context_subscribe_cb_t cb, void *userdata) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(c) >= 1);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
if (c->state == PA_CONTEXT_TERMINATED || c->state == PA_CONTEXT_FAILED)
|
|
|
|
|
return;
|
|
|
|
|
|
2004-08-15 00:02:26 +00:00
|
|
|
c->subscribe_callback = cb;
|
|
|
|
|
c->subscribe_userdata = userdata;
|
|
|
|
|
}
|