2004-08-13 16:05:03 +00:00
|
|
|
/* $Id$ */
|
|
|
|
|
|
|
|
|
|
/***
|
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 16:05:03 +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 16:05:03 +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 16:05:03 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2004-08-14 20:25:32 +00:00
|
|
|
#include <stdio.h>
|
2004-08-13 16:05:03 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/pstream-util.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/macro.h>
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2006-02-17 12:10:58 +00:00
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
|
|
#include "scache.h"
|
|
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
int pa_stream_connect_upload(pa_stream *s, size_t length) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_tagstruct *t;
|
2004-08-13 16:05:03 +00:00
|
|
|
uint32_t tag;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(s);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(s) >= 1);
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
PA_CHECK_VALIDITY(s->context, s->state == PA_STREAM_UNCONNECTED, PA_ERR_BADSTATE);
|
2006-04-23 20:59:31 +00:00
|
|
|
PA_CHECK_VALIDITY(s->context, length > 0, PA_ERR_INVALID);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_stream_ref(s);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
s->direction = PA_STREAM_UPLOAD;
|
2008-05-15 23:34:41 +00:00
|
|
|
s->flags = 0;
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2006-02-23 01:24:16 +00:00
|
|
|
t = pa_tagstruct_command(s->context, PA_COMMAND_CREATE_UPLOAD_STREAM, &tag);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
if (s->context->version < 13)
|
|
|
|
|
pa_tagstruct_puts(t, pa_proplist_gets(s->proplist, PA_PROP_MEDIA_NAME));
|
|
|
|
|
|
2004-08-13 16:05:03 +00:00
|
|
|
pa_tagstruct_put_sample_spec(t, &s->sample_spec);
|
2006-04-23 20:59:31 +00:00
|
|
|
pa_tagstruct_put_channel_map(t, &s->channel_map);
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_tagstruct_putu32(t, length);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
if (s->context->version >= 13) {
|
|
|
|
|
pa_init_proplist(s->proplist);
|
|
|
|
|
pa_tagstruct_put_proplist(t, s->proplist);
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-13 16:05:03 +00:00
|
|
|
pa_pstream_send_tagstruct(s->context->pstream, t);
|
2006-04-24 19:29:15 +00:00
|
|
|
pa_pdispatch_register_reply(s->context->pdispatch, tag, DEFAULT_TIMEOUT, pa_create_stream_callback, s, NULL);
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
pa_stream_set_state(s, PA_STREAM_CREATING);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_stream_unref(s);
|
2006-02-20 22:41:02 +00:00
|
|
|
return 0;
|
2004-08-13 16:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
int pa_stream_finish_upload(pa_stream *s) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_tagstruct *t;
|
2004-08-13 16:05:03 +00:00
|
|
|
uint32_t tag;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_assert(s);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(s) >= 1);
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
PA_CHECK_VALIDITY(s->context, s->channel_valid, PA_ERR_BADSTATE);
|
|
|
|
|
PA_CHECK_VALIDITY(s->context, s->context->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_stream_ref(s);
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2006-02-23 01:24:16 +00:00
|
|
|
t = pa_tagstruct_command(s->context, PA_COMMAND_FINISH_UPLOAD_STREAM, &tag);
|
2004-08-13 16:05:03 +00:00
|
|
|
pa_tagstruct_putu32(t, s->channel);
|
|
|
|
|
pa_pstream_send_tagstruct(s->context->pstream, t);
|
2006-04-24 19:29:15 +00:00
|
|
|
pa_pdispatch_register_reply(s->context->pdispatch, tag, DEFAULT_TIMEOUT, pa_stream_disconnect_callback, s, NULL);
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
pa_stream_unref(s);
|
2006-02-20 22:41:02 +00:00
|
|
|
return 0;
|
2004-08-13 16:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2008-05-15 23:34:41 +00:00
|
|
|
static void play_sample_ack_callback(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
|
|
|
|
|
pa_operation *o = userdata;
|
|
|
|
|
int success = 1;
|
|
|
|
|
uint32_t idx = PA_INVALID_INDEX;
|
|
|
|
|
|
|
|
|
|
pa_assert(pd);
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(o) >= 1);
|
|
|
|
|
|
|
|
|
|
if (!o->context)
|
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
|
|
if (command != PA_COMMAND_REPLY) {
|
|
|
|
|
if (pa_context_handle_error(o->context, command, t, FALSE) < 0)
|
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
|
|
success = 0;
|
|
|
|
|
} else if ((o->context->version >= 13 && pa_tagstruct_getu32(t, &idx) < 0) ||
|
|
|
|
|
!pa_tagstruct_eof(t)) {
|
|
|
|
|
pa_context_fail(o->context, PA_ERR_PROTOCOL);
|
|
|
|
|
goto finish;
|
|
|
|
|
} else if (o->context->version >= 13 && idx == PA_INVALID_INDEX)
|
|
|
|
|
success = 0;
|
|
|
|
|
|
|
|
|
|
if (o->callback) {
|
|
|
|
|
pa_context_success_cb_t cb = (pa_context_success_cb_t) o->callback;
|
|
|
|
|
cb(o->context, success, o->userdata);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
finish:
|
|
|
|
|
pa_operation_done(o);
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void play_sample_with_proplist_ack_callback(pa_pdispatch *pd, uint32_t command, uint32_t tag, pa_tagstruct *t, void *userdata) {
|
|
|
|
|
pa_operation *o = userdata;
|
|
|
|
|
uint32_t idx;
|
|
|
|
|
|
|
|
|
|
pa_assert(pd);
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(o) >= 1);
|
|
|
|
|
|
|
|
|
|
if (!o->context)
|
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
|
|
if (command != PA_COMMAND_REPLY) {
|
|
|
|
|
if (pa_context_handle_error(o->context, command, t, FALSE) < 0)
|
|
|
|
|
goto finish;
|
|
|
|
|
|
|
|
|
|
idx = PA_INVALID_INDEX;
|
|
|
|
|
} else if (pa_tagstruct_getu32(t, &idx) < 0 ||
|
|
|
|
|
!pa_tagstruct_eof(t)) {
|
|
|
|
|
pa_context_fail(o->context, PA_ERR_PROTOCOL);
|
|
|
|
|
goto finish;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (o->callback) {
|
|
|
|
|
pa_context_play_sample_cb_t cb = (pa_context_play_sample_cb_t) o->callback;
|
|
|
|
|
cb(o->context, idx, o->userdata);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
finish:
|
|
|
|
|
pa_operation_done(o);
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
pa_operation *pa_context_play_sample(pa_context *c, const char *name, const char *dev, pa_volume_t volume, 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 16:05:03 +00:00
|
|
|
uint32_t tag;
|
|
|
|
|
|
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
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, name && *name, PA_ERR_INVALID);
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, !dev || *dev, PA_ERR_INVALID);
|
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 16:05:03 +00:00
|
|
|
|
2004-08-14 20:25:32 +00:00
|
|
|
if (!dev)
|
2004-09-17 19:45:44 +00:00
|
|
|
dev = c->conf->default_sink;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-23 01:24:16 +00:00
|
|
|
t = pa_tagstruct_command(c, PA_COMMAND_PLAY_SAMPLE, &tag);
|
2006-02-20 22:41:02 +00:00
|
|
|
pa_tagstruct_putu32(t, PA_INVALID_INDEX);
|
2004-09-19 23:12:41 +00:00
|
|
|
pa_tagstruct_puts(t, dev);
|
2004-08-13 16:05:03 +00:00
|
|
|
pa_tagstruct_putu32(t, volume);
|
|
|
|
|
pa_tagstruct_puts(t, name);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
|
|
|
|
if (c->version >= 13) {
|
|
|
|
|
pa_proplist *p = pa_proplist_new();
|
|
|
|
|
pa_tagstruct_put_proplist(t, p);
|
|
|
|
|
pa_proplist_free(p);
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-13 16:05:03 +00:00
|
|
|
pa_pstream_send_tagstruct(c->pstream, t);
|
2008-05-15 23:34:41 +00:00
|
|
|
pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, play_sample_ack_callback, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
|
|
|
|
|
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_operation *pa_context_play_sample_with_proplist(pa_context *c, const char *name, const char *dev, pa_volume_t volume, pa_proplist *p, pa_context_play_sample_cb_t cb, void *userdata) {
|
|
|
|
|
pa_operation *o;
|
|
|
|
|
pa_tagstruct *t;
|
|
|
|
|
uint32_t tag;
|
|
|
|
|
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(c) >= 1);
|
|
|
|
|
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, name && *name, PA_ERR_INVALID);
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, !dev || *dev, PA_ERR_INVALID);
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, p, PA_ERR_INVALID);
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, c->version >= 13, PA_ERR_NOTSUPPORTED);
|
|
|
|
|
|
|
|
|
|
o = pa_operation_new(c, NULL, (pa_operation_cb_t) cb, userdata);
|
|
|
|
|
|
|
|
|
|
if (!dev)
|
|
|
|
|
dev = c->conf->default_sink;
|
|
|
|
|
|
|
|
|
|
t = pa_tagstruct_command(c, PA_COMMAND_PLAY_SAMPLE, &tag);
|
|
|
|
|
pa_tagstruct_putu32(t, PA_INVALID_INDEX);
|
|
|
|
|
pa_tagstruct_puts(t, dev);
|
|
|
|
|
pa_tagstruct_putu32(t, volume);
|
|
|
|
|
pa_tagstruct_puts(t, name);
|
|
|
|
|
pa_tagstruct_put_proplist(t, p);
|
|
|
|
|
|
|
|
|
|
pa_pstream_send_tagstruct(c->pstream, t);
|
|
|
|
|
pa_pdispatch_register_reply(c->pdispatch, tag, DEFAULT_TIMEOUT, play_sample_with_proplist_ack_callback, pa_operation_ref(o), (pa_free_cb_t) pa_operation_unref);
|
2004-08-13 16:05:03 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
return o;
|
2004-08-13 16:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2006-02-20 17:09:39 +00:00
|
|
|
pa_operation* pa_context_remove_sample(pa_context *c, const char *name, 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 16:05:03 +00:00
|
|
|
uint32_t tag;
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(PA_REFCNT_VALUE(c) >= 1);
|
2006-02-20 22:41:02 +00:00
|
|
|
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, c->state == PA_CONTEXT_READY, PA_ERR_BADSTATE);
|
|
|
|
|
PA_CHECK_VALIDITY_RETURN_NULL(c, name && *name, PA_ERR_INVALID);
|
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);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-23 01:24:16 +00:00
|
|
|
t = pa_tagstruct_command(c, PA_COMMAND_REMOVE_SAMPLE, &tag);
|
2004-08-13 16:05:03 +00:00
|
|
|
pa_tagstruct_puts(t, name);
|
2008-05-15 23:34:41 +00:00
|
|
|
|
2004-08-13 16:05:03 +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 16:05:03 +00:00
|
|
|
|
2006-02-20 22:41:02 +00:00
|
|
|
return o;
|
2004-08-13 16:05:03 +00:00
|
|
|
}
|