2004-07-16 19:56:36 +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
|
|
|
|
|
Copyright 2006 Pierre Ossman <ossman@cendio.se> for Cendio AB
|
|
|
|
|
|
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-07-16 19:56:36 +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-07-16 19:56:36 +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-07-16 19:56:36 +00:00
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
|
USA.
|
|
|
|
|
***/
|
|
|
|
|
|
2004-07-16 19:16:42 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
|
#include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/sample.h>
|
|
|
|
|
#include <pulse/timeval.h>
|
|
|
|
|
#include <pulse/utf8.h>
|
|
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/esound.h>
|
|
|
|
|
#include <pulsecore/memblock.h>
|
|
|
|
|
#include <pulsecore/client.h>
|
|
|
|
|
#include <pulsecore/sink-input.h>
|
|
|
|
|
#include <pulsecore/sink.h>
|
|
|
|
|
#include <pulsecore/source-output.h>
|
|
|
|
|
#include <pulsecore/source.h>
|
|
|
|
|
#include <pulsecore/core-scache.h>
|
|
|
|
|
#include <pulsecore/sample-util.h>
|
|
|
|
|
#include <pulsecore/authkey.h>
|
|
|
|
|
#include <pulsecore/namereg.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
|
|
|
|
#include <pulsecore/core-util.h>
|
|
|
|
|
#include <pulsecore/core-error.h>
|
2006-07-20 18:43:20 +00:00
|
|
|
#include <pulsecore/ipacl.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2006-02-03 14:39:39 +00:00
|
|
|
#include "endianmacros.h"
|
2004-07-06 00:08:44 +00:00
|
|
|
|
2006-02-17 12:10:58 +00:00
|
|
|
#include "protocol-esound.h"
|
|
|
|
|
|
2004-11-18 00:28:26 +00:00
|
|
|
/* Don't accept more connection than this */
|
2006-06-21 16:36:58 +00:00
|
|
|
#define MAX_CONNECTIONS 64
|
2004-11-18 00:28:26 +00:00
|
|
|
|
|
|
|
|
/* Kick a client if it doesn't authenticate within this time */
|
|
|
|
|
#define AUTH_TIMEOUT 5
|
|
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
#define DEFAULT_COOKIE_FILE ".esd_auth"
|
2004-07-06 00:08:44 +00:00
|
|
|
|
2006-05-11 22:37:42 +00:00
|
|
|
#define PLAYBACK_BUFFER_SECONDS (.25)
|
2004-07-09 23:26:10 +00:00
|
|
|
#define PLAYBACK_BUFFER_FRAGMENTS (10)
|
|
|
|
|
#define RECORD_BUFFER_SECONDS (5)
|
|
|
|
|
#define RECORD_BUFFER_FRAGMENTS (100)
|
2004-07-06 00:08:44 +00:00
|
|
|
|
2004-07-20 01:07:06 +00:00
|
|
|
#define MAX_CACHE_SAMPLE_SIZE (1024000)
|
|
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
#define SCACHE_PREFIX "esound."
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
/* This is heavily based on esound's code */
|
|
|
|
|
|
|
|
|
|
struct connection {
|
2004-06-30 00:00:52 +00:00
|
|
|
uint32_t index;
|
2004-09-26 17:02:26 +00:00
|
|
|
int dead;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_protocol_esound *protocol;
|
|
|
|
|
pa_iochannel *io;
|
|
|
|
|
pa_client *client;
|
2004-06-29 16:48:37 +00:00
|
|
|
int authorized, swap_byte_order;
|
|
|
|
|
void *write_data;
|
|
|
|
|
size_t write_data_alloc, write_data_index, write_data_length;
|
2004-07-09 23:26:10 +00:00
|
|
|
void *read_data;
|
|
|
|
|
size_t read_data_alloc, read_data_length;
|
2004-06-29 16:48:37 +00:00
|
|
|
esd_proto_t request;
|
|
|
|
|
esd_client_state_t state;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sink_input *sink_input;
|
|
|
|
|
pa_source_output *source_output;
|
|
|
|
|
pa_memblockq *input_memblockq, *output_memblockq;
|
|
|
|
|
pa_defer_event *defer_event;
|
2006-05-16 01:40:01 +00:00
|
|
|
|
|
|
|
|
char *original_name;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
struct {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memblock *current_memblock;
|
2004-07-09 23:26:10 +00:00
|
|
|
size_t memblock_index, fragment_size;
|
|
|
|
|
} playback;
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
struct {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk memchunk;
|
2004-09-26 17:02:26 +00:00
|
|
|
char *name;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec sample_spec;
|
2004-09-26 17:02:26 +00:00
|
|
|
} scache;
|
2004-11-18 00:28:26 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_time_event *auth_timeout_event;
|
2004-06-29 16:48:37 +00:00
|
|
|
};
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_protocol_esound {
|
2004-06-29 16:48:37 +00:00
|
|
|
int public;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_module *module;
|
|
|
|
|
pa_core *core;
|
|
|
|
|
pa_socket_server *server;
|
|
|
|
|
pa_idxset *connections;
|
2004-08-04 16:39:30 +00:00
|
|
|
char *sink_name, *source_name;
|
2004-06-30 00:00:52 +00:00
|
|
|
unsigned n_player;
|
2004-07-06 00:08:44 +00:00
|
|
|
uint8_t esd_key[ESD_KEY_LEN];
|
2006-07-20 18:43:20 +00:00
|
|
|
pa_ip_acl *auth_ip_acl;
|
2004-06-29 16:48:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct proto_handler {
|
|
|
|
|
size_t data_length;
|
2004-07-09 23:26:10 +00:00
|
|
|
int (*proc)(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
2004-06-29 16:48:37 +00:00
|
|
|
const char *description;
|
|
|
|
|
} esd_proto_handler_info_t;
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void sink_input_drop_cb(pa_sink_input *i, const pa_memchunk *chunk, size_t length);
|
|
|
|
|
static int sink_input_peek_cb(pa_sink_input *i, pa_memchunk *chunk);
|
|
|
|
|
static void sink_input_kill_cb(pa_sink_input *i);
|
|
|
|
|
static pa_usec_t sink_input_get_latency_cb(pa_sink_input *i);
|
|
|
|
|
static pa_usec_t source_output_get_latency_cb(pa_source_output *o);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk);
|
|
|
|
|
static void source_output_kill_cb(pa_source_output *o);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
static int esd_proto_connect(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_stream_play(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_stream_record(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_get_latency(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_server_info(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_all_info(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_stream_pan(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
2004-07-20 01:07:06 +00:00
|
|
|
static int esd_proto_sample_cache(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_sample_free_or_play(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
|
|
|
|
static int esd_proto_sample_get_id(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
2004-09-21 20:46:14 +00:00
|
|
|
static int esd_proto_standby_or_resume(struct connection *c, esd_proto_t request, const void *data, size_t length);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
/* the big map of protocol handler info */
|
|
|
|
|
static struct proto_handler proto_map[ESD_PROTO_MAX] = {
|
2004-06-29 18:50:14 +00:00
|
|
|
{ ESD_KEY_LEN + sizeof(int), esd_proto_connect, "connect" },
|
|
|
|
|
{ ESD_KEY_LEN + sizeof(int), NULL, "lock" },
|
|
|
|
|
{ ESD_KEY_LEN + sizeof(int), NULL, "unlock" },
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-06-29 18:50:14 +00:00
|
|
|
{ ESD_NAME_MAX + 2 * sizeof(int), esd_proto_stream_play, "stream play" },
|
|
|
|
|
{ ESD_NAME_MAX + 2 * sizeof(int), esd_proto_stream_record, "stream rec" },
|
2004-07-09 23:26:10 +00:00
|
|
|
{ ESD_NAME_MAX + 2 * sizeof(int), esd_proto_stream_record, "stream mon" },
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-09-21 20:46:14 +00:00
|
|
|
{ ESD_NAME_MAX + 3 * sizeof(int), esd_proto_sample_cache, "sample cache" }, /* 6 */
|
2004-07-20 01:07:06 +00:00
|
|
|
{ sizeof(int), esd_proto_sample_free_or_play, "sample free" },
|
2004-09-21 20:46:14 +00:00
|
|
|
{ sizeof(int), esd_proto_sample_free_or_play, "sample play" }, /* 8 */
|
2004-06-29 18:50:14 +00:00
|
|
|
{ sizeof(int), NULL, "sample loop" },
|
|
|
|
|
{ sizeof(int), NULL, "sample stop" },
|
|
|
|
|
{ -1, NULL, "TODO: sample kill" },
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-09-21 20:46:14 +00:00
|
|
|
{ ESD_KEY_LEN + sizeof(int), esd_proto_standby_or_resume, "standby" }, /* NOOP! */
|
|
|
|
|
{ ESD_KEY_LEN + sizeof(int), esd_proto_standby_or_resume, "resume" }, /* NOOP! */ /* 13 */
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-09-21 20:46:14 +00:00
|
|
|
{ ESD_NAME_MAX, esd_proto_sample_get_id, "sample getid" }, /* 14 */
|
2004-06-29 16:48:37 +00:00
|
|
|
{ ESD_NAME_MAX + 2 * sizeof(int), NULL, "stream filter" },
|
|
|
|
|
|
2004-06-29 18:50:14 +00:00
|
|
|
{ sizeof(int), esd_proto_server_info, "server info" },
|
2004-06-30 00:00:52 +00:00
|
|
|
{ sizeof(int), esd_proto_all_info, "all info" },
|
2004-06-29 18:50:14 +00:00
|
|
|
{ -1, NULL, "TODO: subscribe" },
|
|
|
|
|
{ -1, NULL, "TODO: unsubscribe" },
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
{ 3 * sizeof(int), esd_proto_stream_pan, "stream pan"},
|
2004-06-29 18:50:14 +00:00
|
|
|
{ 3 * sizeof(int), NULL, "sample pan" },
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 18:50:14 +00:00
|
|
|
{ sizeof(int), NULL, "standby mode" },
|
|
|
|
|
{ 0, esd_proto_get_latency, "get latency" }
|
2004-06-29 16:48:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static void connection_free(struct connection *c) {
|
|
|
|
|
assert(c);
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_remove_by_data(c->protocol->connections, c, NULL);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
if (c->state == ESD_STREAMING_DATA)
|
|
|
|
|
c->protocol->n_player--;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_client_free(c->client);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2004-09-14 20:53:25 +00:00
|
|
|
if (c->sink_input) {
|
|
|
|
|
pa_sink_input_disconnect(c->sink_input);
|
|
|
|
|
pa_sink_input_unref(c->sink_input);
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-14 20:53:25 +00:00
|
|
|
if (c->source_output) {
|
|
|
|
|
pa_source_output_disconnect(c->source_output);
|
|
|
|
|
pa_source_output_unref(c->source_output);
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
if (c->input_memblockq)
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_memblockq_free(c->input_memblockq);
|
2004-07-09 23:26:10 +00:00
|
|
|
if (c->output_memblockq)
|
|
|
|
|
pa_memblockq_free(c->output_memblockq);
|
|
|
|
|
|
|
|
|
|
if (c->playback.current_memblock)
|
|
|
|
|
pa_memblock_unref(c->playback.current_memblock);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(c->read_data);
|
|
|
|
|
pa_xfree(c->write_data);
|
2004-09-27 17:21:27 +00:00
|
|
|
|
|
|
|
|
if (c->io)
|
|
|
|
|
pa_iochannel_free(c->io);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
if (c->defer_event)
|
|
|
|
|
c->protocol->core->mainloop->defer_free(c->defer_event);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
if (c->scache.memchunk.memblock)
|
|
|
|
|
pa_memblock_unref(c->scache.memchunk.memblock);
|
|
|
|
|
pa_xfree(c->scache.name);
|
2004-11-18 00:28:26 +00:00
|
|
|
|
|
|
|
|
if (c->auth_timeout_event)
|
|
|
|
|
c->protocol->core->mainloop->time_free(c->auth_timeout_event);
|
2006-05-16 01:40:01 +00:00
|
|
|
|
|
|
|
|
pa_xfree(c->original_name);
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(c);
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
static void connection_write_prepare(struct connection *c, size_t length) {
|
|
|
|
|
size_t t;
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(c);
|
|
|
|
|
|
|
|
|
|
t = c->write_data_length+length;
|
2006-03-04 13:55:40 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
if (c->write_data_alloc < t)
|
2004-08-04 16:39:30 +00:00
|
|
|
c->write_data = pa_xrealloc(c->write_data, c->write_data_alloc = t);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
assert(c->write_data);
|
2006-03-04 13:55:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void connection_write(struct connection *c, const void *data, size_t length) {
|
|
|
|
|
size_t i;
|
|
|
|
|
assert(c);
|
|
|
|
|
|
|
|
|
|
assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
|
|
|
|
|
c->protocol->core->mainloop->defer_enable(c->defer_event, 1);
|
|
|
|
|
|
|
|
|
|
connection_write_prepare(c, length);
|
|
|
|
|
|
|
|
|
|
assert(c->write_data);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
i = c->write_data_length;
|
|
|
|
|
c->write_data_length += length;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
memcpy((char*)c->write_data + i, data, length);
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void format_esd2native(int format, int swap_bytes, pa_sample_spec *ss) {
|
2004-07-20 01:07:06 +00:00
|
|
|
assert(ss);
|
|
|
|
|
|
|
|
|
|
ss->channels = ((format & ESD_MASK_CHAN) == ESD_STEREO) ? 2 : 1;
|
2006-01-10 17:51:06 +00:00
|
|
|
if ((format & ESD_MASK_BITS) == ESD_BITS16)
|
|
|
|
|
ss->format = swap_bytes ? PA_SAMPLE_S16RE : PA_SAMPLE_S16NE;
|
|
|
|
|
else
|
|
|
|
|
ss->format = PA_SAMPLE_U8;
|
2004-07-20 01:07:06 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int format_native2esd(pa_sample_spec *ss) {
|
2004-07-20 01:07:06 +00:00
|
|
|
int format = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-20 01:07:06 +00:00
|
|
|
format = (ss->format == PA_SAMPLE_U8) ? ESD_BITS8 : ESD_BITS16;
|
|
|
|
|
format |= (ss->channels >= 2) ? ESD_STEREO : ESD_MONO;
|
|
|
|
|
|
|
|
|
|
return format;
|
|
|
|
|
}
|
|
|
|
|
|
2007-02-14 09:27:19 +00:00
|
|
|
#define CHECK_VALIDITY(expression, ...) do { \
|
2006-02-24 00:49:21 +00:00
|
|
|
if (!(expression)) { \
|
2007-02-14 09:27:19 +00:00
|
|
|
pa_log_warn(__FILE__ ": " __VA_ARGS__); \
|
2006-02-24 00:49:21 +00:00
|
|
|
return -1; \
|
|
|
|
|
} \
|
|
|
|
|
} while(0);
|
|
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
/*** esound commands ***/
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_connect(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
|
2004-06-29 16:48:37 +00:00
|
|
|
uint32_t ekey;
|
2006-03-04 13:55:40 +00:00
|
|
|
int ok;
|
|
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(length == (ESD_KEY_LEN + sizeof(uint32_t)));
|
|
|
|
|
|
2004-07-06 00:08:44 +00:00
|
|
|
if (!c->authorized) {
|
|
|
|
|
if (memcmp(data, c->protocol->esd_key, ESD_KEY_LEN) != 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("kicked client with invalid authorization key.");
|
2004-07-06 00:08:44 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
c->authorized = 1;
|
2004-11-18 20:50:44 +00:00
|
|
|
if (c->auth_timeout_event) {
|
2004-11-18 00:28:26 +00:00
|
|
|
c->protocol->core->mainloop->time_free(c->auth_timeout_event);
|
2004-11-18 20:50:44 +00:00
|
|
|
c->auth_timeout_event = NULL;
|
|
|
|
|
}
|
2004-07-06 00:08:44 +00:00
|
|
|
}
|
2006-03-04 13:55:40 +00:00
|
|
|
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + ESD_KEY_LEN;
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
memcpy(&ekey, data, sizeof(uint32_t));
|
2004-06-29 16:48:37 +00:00
|
|
|
if (ekey == ESD_ENDIAN_KEY)
|
|
|
|
|
c->swap_byte_order = 0;
|
|
|
|
|
else if (ekey == ESD_SWAP_ENDIAN_KEY)
|
|
|
|
|
c->swap_byte_order = 1;
|
|
|
|
|
else {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("client sent invalid endian key");
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = 1;
|
|
|
|
|
connection_write(c, &ok, sizeof(int));
|
2004-06-29 16:48:37 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_stream_play(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
|
2006-05-16 01:40:01 +00:00
|
|
|
char name[ESD_NAME_MAX], *utf8_name;
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t format, rate;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec ss;
|
2004-07-07 00:22:46 +00:00
|
|
|
size_t l;
|
2006-08-19 23:06:45 +00:00
|
|
|
pa_sink *sink = NULL;
|
2006-08-13 16:19:56 +00:00
|
|
|
pa_sink_input_new_data sdata;
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
assert(c && length == (sizeof(int32_t)*2+ESD_NAME_MAX));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
memcpy(&format, data, sizeof(int32_t));
|
|
|
|
|
format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(int32_t);
|
2006-03-04 13:55:40 +00:00
|
|
|
|
2006-04-06 20:17:27 +00:00
|
|
|
memcpy(&rate, data, sizeof(int32_t));
|
2006-03-04 13:55:40 +00:00
|
|
|
rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(int32_t);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
ss.rate = rate;
|
2006-01-10 17:51:06 +00:00
|
|
|
format_esd2native(format, c->swap_byte_order, &ss);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2006-02-24 00:49:21 +00:00
|
|
|
CHECK_VALIDITY(pa_sample_spec_valid(&ss), "Invalid sample specification");
|
2006-08-19 23:06:45 +00:00
|
|
|
|
|
|
|
|
if (c->protocol->sink_name) {
|
|
|
|
|
sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1);
|
2007-02-14 09:27:19 +00:00
|
|
|
CHECK_VALIDITY(sink, "No such sink: %s", c->protocol->sink_name);
|
2006-08-19 23:06:45 +00:00
|
|
|
}
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
strncpy(name, data, sizeof(name));
|
2004-06-29 16:48:37 +00:00
|
|
|
name[sizeof(name)-1] = 0;
|
2006-08-13 19:55:17 +00:00
|
|
|
|
2006-05-16 01:40:01 +00:00
|
|
|
utf8_name = pa_utf8_filter(name);
|
|
|
|
|
pa_client_set_name(c->client, utf8_name);
|
2006-08-13 19:55:17 +00:00
|
|
|
pa_xfree(utf8_name);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-05-16 01:40:01 +00:00
|
|
|
c->original_name = pa_xstrdup(name);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-11-18 20:50:44 +00:00
|
|
|
assert(!c->sink_input && !c->input_memblockq);
|
|
|
|
|
|
2006-08-13 16:19:56 +00:00
|
|
|
pa_sink_input_new_data_init(&sdata);
|
|
|
|
|
sdata.sink = sink;
|
|
|
|
|
sdata.driver = __FILE__;
|
2006-08-13 19:55:17 +00:00
|
|
|
sdata.name = c->client->name;
|
2006-08-13 16:19:56 +00:00
|
|
|
pa_sink_input_new_data_set_sample_spec(&sdata, &ss);
|
|
|
|
|
sdata.module = c->protocol->module;
|
|
|
|
|
sdata.client = c->client;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-13 16:19:56 +00:00
|
|
|
c->sink_input = pa_sink_input_new(c->protocol->core, &sdata, 0);
|
2006-02-24 00:49:21 +00:00
|
|
|
CHECK_VALIDITY(c->sink_input, "Failed to create sink input.");
|
2004-07-07 00:22:46 +00:00
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
l = (size_t) (pa_bytes_per_second(&ss)*PLAYBACK_BUFFER_SECONDS);
|
2006-02-20 04:05:16 +00:00
|
|
|
c->input_memblockq = pa_memblockq_new(
|
|
|
|
|
0,
|
|
|
|
|
l,
|
|
|
|
|
0,
|
|
|
|
|
pa_frame_size(&ss),
|
|
|
|
|
(size_t) -1,
|
|
|
|
|
l/PLAYBACK_BUFFER_FRAGMENTS,
|
2006-08-18 19:55:18 +00:00
|
|
|
NULL);
|
2004-07-15 21:51:54 +00:00
|
|
|
pa_iochannel_socket_set_rcvbuf(c->io, l/PLAYBACK_BUFFER_FRAGMENTS*2);
|
2004-07-09 23:26:10 +00:00
|
|
|
c->playback.fragment_size = l/10;
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
c->sink_input->peek = sink_input_peek_cb;
|
|
|
|
|
c->sink_input->drop = sink_input_drop_cb;
|
|
|
|
|
c->sink_input->kill = sink_input_kill_cb;
|
|
|
|
|
c->sink_input->get_latency = sink_input_get_latency_cb;
|
|
|
|
|
c->sink_input->userdata = c;
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
c->state = ESD_STREAMING_DATA;
|
|
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
c->protocol->n_player++;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
static int esd_proto_stream_record(struct connection *c, esd_proto_t request, const void *data, size_t length) {
|
2006-05-16 01:40:01 +00:00
|
|
|
char name[ESD_NAME_MAX], *utf8_name;
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t format, rate;
|
2006-08-19 23:06:45 +00:00
|
|
|
pa_source *source = NULL;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec ss;
|
2004-07-09 23:26:10 +00:00
|
|
|
size_t l;
|
2006-08-13 19:55:17 +00:00
|
|
|
pa_source_output_new_data sdata;
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
assert(c && length == (sizeof(int32_t)*2+ESD_NAME_MAX));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
memcpy(&format, data, sizeof(int32_t));
|
|
|
|
|
format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(int32_t);
|
2006-03-04 13:55:40 +00:00
|
|
|
|
2006-04-06 20:17:27 +00:00
|
|
|
memcpy(&rate, data, sizeof(int32_t));
|
2006-03-04 13:55:40 +00:00
|
|
|
rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(int32_t);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
|
|
|
|
ss.rate = rate;
|
2006-01-10 17:51:06 +00:00
|
|
|
format_esd2native(format, c->swap_byte_order, &ss);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-02-24 00:49:21 +00:00
|
|
|
CHECK_VALIDITY(pa_sample_spec_valid(&ss), "Invalid sample specification.");
|
2004-07-09 23:26:10 +00:00
|
|
|
|
|
|
|
|
if (request == ESD_PROTO_STREAM_MON) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sink* sink;
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2004-11-18 20:50:44 +00:00
|
|
|
if (!(sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1))) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("no such sink.");
|
2004-07-09 23:26:10 +00:00
|
|
|
return -1;
|
2004-11-18 20:50:44 +00:00
|
|
|
}
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2004-11-18 20:50:44 +00:00
|
|
|
if (!(source = sink->monitor_source)) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("no such monitor source.");
|
2004-07-09 23:26:10 +00:00
|
|
|
return -1;
|
2004-11-18 20:50:44 +00:00
|
|
|
}
|
2004-07-09 23:26:10 +00:00
|
|
|
} else {
|
|
|
|
|
assert(request == ESD_PROTO_STREAM_REC);
|
2006-08-19 23:06:45 +00:00
|
|
|
|
|
|
|
|
if (c->protocol->source_name) {
|
|
|
|
|
if (!(source = pa_namereg_get(c->protocol->core, c->protocol->source_name, PA_NAMEREG_SOURCE, 1))) {
|
|
|
|
|
pa_log("no such source.");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2004-11-18 20:50:44 +00:00
|
|
|
}
|
2004-07-09 23:26:10 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
strncpy(name, data, sizeof(name));
|
2004-07-09 23:26:10 +00:00
|
|
|
name[sizeof(name)-1] = 0;
|
|
|
|
|
|
2006-05-16 01:40:01 +00:00
|
|
|
utf8_name = pa_utf8_filter(name);
|
|
|
|
|
pa_client_set_name(c->client, utf8_name);
|
|
|
|
|
pa_xfree(utf8_name);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-05-16 01:40:01 +00:00
|
|
|
c->original_name = pa_xstrdup(name);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2004-11-18 20:50:44 +00:00
|
|
|
assert(!c->output_memblockq && !c->source_output);
|
|
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
pa_source_output_new_data_init(&sdata);
|
|
|
|
|
sdata.source = source;
|
|
|
|
|
sdata.driver = __FILE__;
|
|
|
|
|
sdata.name = c->client->name;
|
|
|
|
|
pa_source_output_new_data_set_sample_spec(&sdata, &ss);
|
|
|
|
|
sdata.module = c->protocol->module;
|
|
|
|
|
sdata.client = c->client;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
c->source_output = pa_source_output_new(c->protocol->core, &sdata, 9);
|
2006-11-08 12:56:26 +00:00
|
|
|
CHECK_VALIDITY(c->source_output, "Failed to create source_output.");
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
l = (size_t) (pa_bytes_per_second(&ss)*RECORD_BUFFER_SECONDS);
|
2006-02-20 04:05:16 +00:00
|
|
|
c->output_memblockq = pa_memblockq_new(
|
|
|
|
|
0,
|
|
|
|
|
l,
|
|
|
|
|
0,
|
|
|
|
|
pa_frame_size(&ss),
|
|
|
|
|
1,
|
|
|
|
|
0,
|
2006-08-18 19:55:18 +00:00
|
|
|
NULL);
|
2004-07-09 23:26:10 +00:00
|
|
|
pa_iochannel_socket_set_sndbuf(c->io, l/RECORD_BUFFER_FRAGMENTS*2);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
c->source_output->push = source_output_push_cb;
|
|
|
|
|
c->source_output->kill = source_output_kill_cb;
|
2004-09-16 00:05:56 +00:00
|
|
|
c->source_output->get_latency = source_output_get_latency_cb;
|
2004-07-09 23:26:10 +00:00
|
|
|
c->source_output->userdata = c;
|
|
|
|
|
|
|
|
|
|
c->state = ESD_STREAMING_DATA;
|
2004-06-29 18:50:14 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
c->protocol->n_player++;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
return 0;
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_get_latency(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
|
|
|
|
|
pa_sink *sink;
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t latency;
|
|
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
assert(c && !data && length == 0);
|
2004-06-29 18:50:14 +00:00
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
if (!(sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1)))
|
2004-06-29 18:50:14 +00:00
|
|
|
latency = 0;
|
|
|
|
|
else {
|
2004-09-12 13:14:49 +00:00
|
|
|
double usec = pa_sink_get_latency(sink);
|
2004-06-30 00:00:52 +00:00
|
|
|
latency = (int) ((usec*44100)/1000000);
|
2004-06-29 18:50:14 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
latency = MAYBE_INT32_SWAP(c->swap_byte_order, latency);
|
|
|
|
|
connection_write(c, &latency, sizeof(int32_t));
|
2004-06-29 18:50:14 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_server_info(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t rate = 44100, format = ESD_STEREO|ESD_BITS16;
|
|
|
|
|
int32_t response;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sink *sink;
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
assert(c && data && length == sizeof(int32_t));
|
2004-06-29 18:50:14 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
if ((sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1))) {
|
2004-06-29 18:50:14 +00:00
|
|
|
rate = sink->sample_spec.rate;
|
2004-07-20 01:07:06 +00:00
|
|
|
format = format_native2esd(&sink->sample_spec);
|
2004-06-29 18:50:14 +00:00
|
|
|
}
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
connection_write_prepare(c, sizeof(int32_t) * 3);
|
|
|
|
|
|
|
|
|
|
response = 0;
|
|
|
|
|
connection_write(c, &response, sizeof(int32_t));
|
|
|
|
|
rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
|
|
|
|
|
connection_write(c, &rate, sizeof(int32_t));
|
|
|
|
|
format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
|
|
|
|
|
connection_write(c, &format, sizeof(int32_t));
|
|
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
static int esd_proto_all_info(struct connection *c, esd_proto_t request, const void *data, size_t length) {
|
2004-06-30 00:00:52 +00:00
|
|
|
size_t t, k, s;
|
|
|
|
|
struct connection *conn;
|
2006-02-27 09:09:15 +00:00
|
|
|
uint32_t idx = PA_IDXSET_INVALID;
|
2004-08-02 19:45:02 +00:00
|
|
|
unsigned nsamples;
|
2006-03-04 13:55:40 +00:00
|
|
|
char terminator[sizeof(int32_t)*6+ESD_NAME_MAX];
|
|
|
|
|
|
|
|
|
|
assert(c && data && length == sizeof(int32_t));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if (esd_proto_server_info(c, request, data, length) < 0)
|
2004-06-30 00:00:52 +00:00
|
|
|
return -1;
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
k = sizeof(int32_t)*5+ESD_NAME_MAX;
|
|
|
|
|
s = sizeof(int32_t)*6+ESD_NAME_MAX;
|
2006-01-11 01:17:39 +00:00
|
|
|
nsamples = c->protocol->core->scache ? pa_idxset_size(c->protocol->core->scache) : 0;
|
2006-03-04 13:55:40 +00:00
|
|
|
t = s*(nsamples+1) + k*(c->protocol->n_player+1);
|
|
|
|
|
|
|
|
|
|
connection_write_prepare(c, t);
|
|
|
|
|
|
|
|
|
|
memset(terminator, 0, sizeof(terminator));
|
2004-06-30 00:00:52 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
for (conn = pa_idxset_first(c->protocol->connections, &idx); conn; conn = pa_idxset_next(c->protocol->connections, &idx)) {
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t id, format = ESD_BITS16 | ESD_STEREO, rate = 44100, lvolume = ESD_VOLUME_BASE, rvolume = ESD_VOLUME_BASE;
|
|
|
|
|
char name[ESD_NAME_MAX];
|
2004-06-30 00:00:52 +00:00
|
|
|
|
|
|
|
|
if (conn->state != ESD_STREAMING_DATA)
|
|
|
|
|
continue;
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
assert(t >= k*2+s);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
if (conn->sink_input) {
|
2006-05-14 00:41:18 +00:00
|
|
|
pa_cvolume volume = *pa_sink_input_get_volume(conn->sink_input);
|
2004-06-30 00:00:52 +00:00
|
|
|
rate = conn->sink_input->sample_spec.rate;
|
2006-05-14 00:41:18 +00:00
|
|
|
lvolume = (volume.values[0]*ESD_VOLUME_BASE)/PA_VOLUME_NORM;
|
|
|
|
|
rvolume = (volume.values[1]*ESD_VOLUME_BASE)/PA_VOLUME_NORM;
|
2004-07-20 01:07:06 +00:00
|
|
|
format = format_native2esd(&conn->sink_input->sample_spec);
|
2004-06-30 00:00:52 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
/* id */
|
2006-03-04 13:55:40 +00:00
|
|
|
id = MAYBE_INT32_SWAP(c->swap_byte_order, (int32_t) (conn->index+1));
|
|
|
|
|
connection_write(c, &id, sizeof(int32_t));
|
2004-06-30 00:00:52 +00:00
|
|
|
|
|
|
|
|
/* name */
|
2006-05-16 01:40:01 +00:00
|
|
|
memset(name, 0, ESD_NAME_MAX); /* don't leak old data */
|
|
|
|
|
if (conn->original_name)
|
|
|
|
|
strncpy(name, conn->original_name, ESD_NAME_MAX);
|
|
|
|
|
else if (conn->client && conn->client->name)
|
|
|
|
|
strncpy(name, conn->client->name, ESD_NAME_MAX);
|
2006-03-04 13:55:40 +00:00
|
|
|
connection_write(c, name, ESD_NAME_MAX);
|
2004-06-30 00:00:52 +00:00
|
|
|
|
|
|
|
|
/* rate */
|
2006-03-04 13:55:40 +00:00
|
|
|
rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
|
|
|
|
|
connection_write(c, &rate, sizeof(int32_t));
|
2004-06-30 00:00:52 +00:00
|
|
|
|
|
|
|
|
/* left */
|
2006-03-04 13:55:40 +00:00
|
|
|
lvolume = MAYBE_INT32_SWAP(c->swap_byte_order, lvolume);
|
|
|
|
|
connection_write(c, &lvolume, sizeof(int32_t));
|
2004-06-30 00:00:52 +00:00
|
|
|
|
|
|
|
|
/*right*/
|
2006-03-04 13:55:40 +00:00
|
|
|
rvolume = MAYBE_INT32_SWAP(c->swap_byte_order, rvolume);
|
|
|
|
|
connection_write(c, &rvolume, sizeof(int32_t));
|
2004-06-30 00:00:52 +00:00
|
|
|
|
|
|
|
|
/*format*/
|
2006-03-04 13:55:40 +00:00
|
|
|
format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
|
|
|
|
|
connection_write(c, &format, sizeof(int32_t));
|
2004-06-30 00:00:52 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
t -= k;
|
2004-06-30 00:00:52 +00:00
|
|
|
}
|
|
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
assert(t == s*(nsamples+1)+k);
|
|
|
|
|
t -= k;
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
connection_write(c, terminator, k);
|
|
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
if (nsamples) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_scache_entry *ce;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
idx = PA_IDXSET_INVALID;
|
|
|
|
|
for (ce = pa_idxset_first(c->protocol->core->scache, &idx); ce; ce = pa_idxset_next(c->protocol->core->scache, &idx)) {
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t id, rate, lvolume, rvolume, format, len;
|
|
|
|
|
char name[ESD_NAME_MAX];
|
|
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
assert(t >= s*2);
|
2006-03-04 13:55:40 +00:00
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
/* id */
|
2006-03-04 13:55:40 +00:00
|
|
|
id = MAYBE_INT32_SWAP(c->swap_byte_order, (int) (ce->index+1));
|
|
|
|
|
connection_write(c, &id, sizeof(int32_t));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
/* name */
|
2006-05-16 01:40:01 +00:00
|
|
|
memset(name, 0, ESD_NAME_MAX); /* don't leak old data */
|
2004-08-02 19:45:02 +00:00
|
|
|
if (strncmp(ce->name, SCACHE_PREFIX, sizeof(SCACHE_PREFIX)-1) == 0)
|
2006-03-04 13:55:40 +00:00
|
|
|
strncpy(name, ce->name+sizeof(SCACHE_PREFIX)-1, ESD_NAME_MAX);
|
2004-08-02 19:45:02 +00:00
|
|
|
else
|
2006-03-04 13:55:40 +00:00
|
|
|
snprintf(name, ESD_NAME_MAX, "native.%s", ce->name);
|
|
|
|
|
connection_write(c, name, ESD_NAME_MAX);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
/* rate */
|
2006-03-04 13:55:40 +00:00
|
|
|
rate = MAYBE_UINT32_SWAP(c->swap_byte_order, ce->sample_spec.rate);
|
|
|
|
|
connection_write(c, &rate, sizeof(int32_t));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
/* left */
|
2006-03-04 13:55:40 +00:00
|
|
|
lvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, (ce->volume.values[0]*ESD_VOLUME_BASE)/PA_VOLUME_NORM);
|
|
|
|
|
connection_write(c, &lvolume, sizeof(int32_t));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
/*right*/
|
2006-03-04 13:55:40 +00:00
|
|
|
rvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, (ce->volume.values[0]*ESD_VOLUME_BASE)/PA_VOLUME_NORM);
|
|
|
|
|
connection_write(c, &rvolume, sizeof(int32_t));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-02 19:45:02 +00:00
|
|
|
/*format*/
|
2006-03-04 13:55:40 +00:00
|
|
|
format = MAYBE_INT32_SWAP(c->swap_byte_order, format_native2esd(&ce->sample_spec));
|
|
|
|
|
connection_write(c, &format, sizeof(int32_t));
|
2004-08-02 19:45:02 +00:00
|
|
|
|
|
|
|
|
/*length*/
|
2006-03-04 13:55:40 +00:00
|
|
|
len = MAYBE_INT32_SWAP(c->swap_byte_order, (int) ce->memchunk.length);
|
|
|
|
|
connection_write(c, &len, sizeof(int32_t));
|
2004-08-02 19:45:02 +00:00
|
|
|
|
|
|
|
|
t -= s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(t == s);
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
connection_write(c, terminator, s);
|
2004-08-02 19:45:02 +00:00
|
|
|
|
2004-06-30 00:00:52 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_stream_pan(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t ok;
|
|
|
|
|
uint32_t idx, lvolume, rvolume;
|
2004-06-30 00:00:52 +00:00
|
|
|
struct connection *conn;
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
assert(c && data && length == sizeof(int32_t)*3);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
memcpy(&idx, data, sizeof(uint32_t));
|
|
|
|
|
idx = MAYBE_UINT32_SWAP(c->swap_byte_order, idx) - 1;
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(uint32_t);
|
2004-06-30 00:00:52 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
memcpy(&lvolume, data, sizeof(uint32_t));
|
|
|
|
|
lvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, lvolume);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(uint32_t);
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
memcpy(&rvolume, data, sizeof(uint32_t));
|
|
|
|
|
rvolume = MAYBE_UINT32_SWAP(c->swap_byte_order, rvolume);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(uint32_t);
|
2004-06-30 00:00:52 +00:00
|
|
|
|
2006-05-14 00:41:18 +00:00
|
|
|
if ((conn = pa_idxset_get_by_index(c->protocol->connections, idx)) && conn->sink_input) {
|
|
|
|
|
pa_cvolume volume;
|
|
|
|
|
volume.values[0] = (lvolume*PA_VOLUME_NORM)/ESD_VOLUME_BASE;
|
|
|
|
|
volume.values[1] = (rvolume*PA_VOLUME_NORM)/ESD_VOLUME_BASE;
|
|
|
|
|
volume.channels = 2;
|
|
|
|
|
pa_sink_input_set_volume(conn->sink_input, &volume);
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = 1;
|
2004-06-30 00:00:52 +00:00
|
|
|
} else
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = 0;
|
|
|
|
|
|
|
|
|
|
connection_write(c, &ok, sizeof(int32_t));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 18:50:14 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_sample_cache(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
|
|
|
|
|
pa_sample_spec ss;
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t format, rate, sc_length;
|
2006-01-11 01:17:39 +00:00
|
|
|
uint32_t idx;
|
2004-07-20 01:07:06 +00:00
|
|
|
char name[ESD_NAME_MAX+sizeof(SCACHE_PREFIX)-1];
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
assert(c && data && length == (ESD_NAME_MAX+3*sizeof(int32_t)));
|
|
|
|
|
|
|
|
|
|
memcpy(&format, data, sizeof(int32_t));
|
|
|
|
|
format = MAYBE_INT32_SWAP(c->swap_byte_order, format);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(int32_t);
|
2006-03-04 13:55:40 +00:00
|
|
|
|
2006-04-07 06:29:59 +00:00
|
|
|
memcpy(&rate, data, sizeof(int32_t));
|
2006-03-04 13:55:40 +00:00
|
|
|
rate = MAYBE_INT32_SWAP(c->swap_byte_order, rate);
|
2006-04-06 20:17:27 +00:00
|
|
|
data = (const char*)data + sizeof(int32_t);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-20 01:07:06 +00:00
|
|
|
ss.rate = rate;
|
2006-01-10 17:51:06 +00:00
|
|
|
format_esd2native(format, c->swap_byte_order, &ss);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2006-02-24 00:49:21 +00:00
|
|
|
CHECK_VALIDITY(pa_sample_spec_valid(&ss), "Invalid sample specification.");
|
2006-03-04 13:55:40 +00:00
|
|
|
|
|
|
|
|
memcpy(&sc_length, data, sizeof(int32_t));
|
|
|
|
|
sc_length = MAYBE_INT32_SWAP(c->swap_byte_order, sc_length);
|
2006-05-13 21:40:38 +00:00
|
|
|
data = (const char*)data + sizeof(int32_t);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2007-02-14 09:27:19 +00:00
|
|
|
CHECK_VALIDITY(sc_length <= MAX_CACHE_SAMPLE_SIZE, "Sample too large (%d bytes).", (int)sc_length);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
|
|
|
|
strcpy(name, SCACHE_PREFIX);
|
2006-03-04 13:55:40 +00:00
|
|
|
strncpy(name+sizeof(SCACHE_PREFIX)-1, data, ESD_NAME_MAX);
|
2004-07-20 01:07:06 +00:00
|
|
|
name[sizeof(name)-1] = 0;
|
2006-05-14 16:18:00 +00:00
|
|
|
|
|
|
|
|
CHECK_VALIDITY(pa_utf8_valid(name), "Invalid UTF8 in sample name.");
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
assert(!c->scache.memchunk.memblock);
|
2006-08-18 19:55:18 +00:00
|
|
|
c->scache.memchunk.memblock = pa_memblock_new(c->protocol->core->mempool, sc_length);
|
2004-09-26 17:02:26 +00:00
|
|
|
c->scache.memchunk.index = 0;
|
|
|
|
|
c->scache.memchunk.length = sc_length;
|
|
|
|
|
c->scache.sample_spec = ss;
|
|
|
|
|
assert(!c->scache.name);
|
|
|
|
|
c->scache.name = pa_xstrdup(name);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-20 01:07:06 +00:00
|
|
|
c->state = ESD_CACHING_SAMPLE;
|
|
|
|
|
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_scache_add_item(c->protocol->core, c->scache.name, NULL, NULL, NULL, &idx);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
idx += 1;
|
|
|
|
|
connection_write(c, &idx, sizeof(uint32_t));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-20 01:07:06 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_sample_get_id(struct connection *c, PA_GCC_UNUSED esd_proto_t request, const void *data, size_t length) {
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t ok;
|
2006-01-11 01:17:39 +00:00
|
|
|
uint32_t idx;
|
2004-07-20 01:07:06 +00:00
|
|
|
char name[ESD_NAME_MAX+sizeof(SCACHE_PREFIX)-1];
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
assert(c && data && length == ESD_NAME_MAX);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
|
|
|
|
strcpy(name, SCACHE_PREFIX);
|
|
|
|
|
strncpy(name+sizeof(SCACHE_PREFIX)-1, data, ESD_NAME_MAX);
|
|
|
|
|
name[sizeof(name)-1] = 0;
|
|
|
|
|
|
2006-05-14 16:18:00 +00:00
|
|
|
CHECK_VALIDITY(pa_utf8_valid(name), "Invalid UTF8 in sample name.");
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = -1;
|
2006-01-11 01:17:39 +00:00
|
|
|
if ((idx = pa_scache_get_id_by_name(c->protocol->core, name)) != PA_IDXSET_INVALID)
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = idx + 1;
|
|
|
|
|
|
|
|
|
|
connection_write(c, &ok, sizeof(int32_t));
|
2004-07-20 01:07:06 +00:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int esd_proto_sample_free_or_play(struct connection *c, esd_proto_t request, const void *data, size_t length) {
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t ok;
|
2004-07-20 01:07:06 +00:00
|
|
|
const char *name;
|
2006-01-11 01:17:39 +00:00
|
|
|
uint32_t idx;
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
assert(c && data && length == sizeof(int32_t));
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
memcpy(&idx, data, sizeof(uint32_t));
|
|
|
|
|
idx = MAYBE_UINT32_SWAP(c->swap_byte_order, idx) - 1;
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if ((name = pa_scache_get_name_by_id(c->protocol->core, idx))) {
|
2004-07-20 01:07:06 +00:00
|
|
|
if (request == ESD_PROTO_SAMPLE_PLAY) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sink *sink;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
if ((sink = pa_namereg_get(c->protocol->core, c->protocol->sink_name, PA_NAMEREG_SINK, 1)))
|
2006-04-23 19:49:01 +00:00
|
|
|
if (pa_scache_play_item(c->protocol->core, name, sink, PA_VOLUME_NORM) >= 0)
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = idx + 1;
|
2004-07-20 01:07:06 +00:00
|
|
|
} else {
|
|
|
|
|
assert(request == ESD_PROTO_SAMPLE_FREE);
|
|
|
|
|
|
|
|
|
|
if (pa_scache_remove_item(c->protocol->core, name) >= 0)
|
2006-03-04 13:55:40 +00:00
|
|
|
ok = idx + 1;
|
2004-07-20 01:07:06 +00:00
|
|
|
}
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
connection_write(c, &ok, sizeof(int32_t));
|
|
|
|
|
|
2004-07-20 01:07:06 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int esd_proto_standby_or_resume(struct connection *c, PA_GCC_UNUSED esd_proto_t request, PA_GCC_UNUSED const void *data, PA_GCC_UNUSED size_t length) {
|
2006-03-04 13:55:40 +00:00
|
|
|
int32_t ok;
|
|
|
|
|
|
|
|
|
|
connection_write_prepare(c, sizeof(int32_t) * 2);
|
|
|
|
|
|
|
|
|
|
ok = 1;
|
|
|
|
|
connection_write(c, &ok, sizeof(int32_t));
|
|
|
|
|
connection_write(c, &ok, sizeof(int32_t));
|
|
|
|
|
|
2004-09-21 19:00:03 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
/*** client callbacks ***/
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void client_kill_cb(pa_client *c) {
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(c && c->userdata);
|
|
|
|
|
connection_free(c->userdata);
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
/*** pa_iochannel callbacks ***/
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
static int do_read(struct connection *c) {
|
|
|
|
|
assert(c && c->io);
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
/* pa_log("READ"); */
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
if (c->state == ESD_NEXT_REQUEST) {
|
|
|
|
|
ssize_t r;
|
|
|
|
|
assert(c->read_data_length < sizeof(c->request));
|
|
|
|
|
|
2004-09-01 00:46:56 +00:00
|
|
|
if ((r = pa_iochannel_read(c->io, ((uint8_t*) &c->request) + c->read_data_length, sizeof(c->request) - c->read_data_length)) <= 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ((c->read_data_length+= r) >= sizeof(c->request)) {
|
|
|
|
|
struct proto_handler *handler;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-03 14:39:39 +00:00
|
|
|
c->request = MAYBE_INT32_SWAP(c->swap_byte_order, c->request);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
if (c->request < ESD_PROTO_CONNECT || c->request > ESD_PROTO_MAX) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("recieved invalid request.");
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
handler = proto_map+c->request;
|
|
|
|
|
|
2006-08-18 21:38:40 +00:00
|
|
|
/* pa_log("executing request #%u", c->request); */
|
2004-09-21 20:46:14 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
if (!handler->proc) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("recieved unimplemented request #%u.", c->request);
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
if (handler->data_length == 0) {
|
|
|
|
|
c->read_data_length = 0;
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if (handler->proc(c, c->request, NULL, 0) < 0)
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
} else {
|
|
|
|
|
if (c->read_data_alloc < handler->data_length)
|
2004-08-04 16:39:30 +00:00
|
|
|
c->read_data = pa_xrealloc(c->read_data, c->read_data_alloc = handler->data_length);
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(c->read_data);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
c->state = ESD_NEEDS_REQDATA;
|
|
|
|
|
c->read_data_length = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} else if (c->state == ESD_NEEDS_REQDATA) {
|
|
|
|
|
ssize_t r;
|
|
|
|
|
struct proto_handler *handler = proto_map+c->request;
|
|
|
|
|
|
|
|
|
|
assert(handler->proc);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(c->read_data && c->read_data_length < handler->data_length);
|
|
|
|
|
|
2004-09-01 00:46:56 +00:00
|
|
|
if ((r = pa_iochannel_read(c->io, (uint8_t*) c->read_data + c->read_data_length, handler->data_length - c->read_data_length)) <= 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-24 00:49:21 +00:00
|
|
|
if ((c->read_data_length += r) >= handler->data_length) {
|
2004-06-29 16:48:37 +00:00
|
|
|
size_t l = c->read_data_length;
|
|
|
|
|
assert(handler->proc);
|
|
|
|
|
|
|
|
|
|
c->state = ESD_NEXT_REQUEST;
|
|
|
|
|
c->read_data_length = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if (handler->proc(c, c->request, c->read_data, l) < 0)
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
2004-07-20 01:07:06 +00:00
|
|
|
} else if (c->state == ESD_CACHING_SAMPLE) {
|
|
|
|
|
ssize_t r;
|
|
|
|
|
|
2006-11-06 13:06:01 +00:00
|
|
|
assert(c->scache.memchunk.memblock && c->scache.name && c->scache.memchunk.index < c->scache.memchunk.length);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-11-06 13:06:01 +00:00
|
|
|
if ((r = pa_iochannel_read(c->io, (uint8_t*) c->scache.memchunk.memblock->data+c->scache.memchunk.index, c->scache.memchunk.length-c->scache.memchunk.index)) <= 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
2004-07-20 01:07:06 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
c->scache.memchunk.index += r;
|
|
|
|
|
assert(c->scache.memchunk.index <= c->scache.memchunk.length);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
if (c->scache.memchunk.index == c->scache.memchunk.length) {
|
2006-01-11 01:17:39 +00:00
|
|
|
uint32_t idx;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
c->scache.memchunk.index = 0;
|
2006-01-27 16:25:31 +00:00
|
|
|
pa_scache_add_item(c->protocol->core, c->scache.name, &c->scache.sample_spec, NULL, &c->scache.memchunk, &idx);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
pa_memblock_unref(c->scache.memchunk.memblock);
|
|
|
|
|
c->scache.memchunk.memblock = NULL;
|
|
|
|
|
c->scache.memchunk.index = c->scache.memchunk.length = 0;
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
pa_xfree(c->scache.name);
|
|
|
|
|
c->scache.name = NULL;
|
2004-07-20 01:07:06 +00:00
|
|
|
|
|
|
|
|
c->state = ESD_NEXT_REQUEST;
|
|
|
|
|
|
2006-03-04 13:55:40 +00:00
|
|
|
idx += 1;
|
|
|
|
|
connection_write(c, &idx, sizeof(uint32_t));
|
2004-07-20 01:07:06 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
} else if (c->state == ESD_STREAMING_DATA && c->sink_input) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk chunk;
|
2004-06-29 16:48:37 +00:00
|
|
|
ssize_t r;
|
2004-07-07 00:22:46 +00:00
|
|
|
size_t l;
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
assert(c->input_memblockq);
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
/* pa_log("STREAMING_DATA"); */
|
2004-09-27 17:21:27 +00:00
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
if (!(l = pa_memblockq_missing(c->input_memblockq)))
|
2004-06-29 16:48:37 +00:00
|
|
|
return 0;
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if (l > c->playback.fragment_size)
|
|
|
|
|
l = c->playback.fragment_size;
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
if (c->playback.current_memblock)
|
2006-11-06 13:06:01 +00:00
|
|
|
if (c->playback.current_memblock->length - c->playback.memblock_index < l) {
|
2004-07-09 23:26:10 +00:00
|
|
|
pa_memblock_unref(c->playback.current_memblock);
|
|
|
|
|
c->playback.current_memblock = NULL;
|
|
|
|
|
c->playback.memblock_index = 0;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if (!c->playback.current_memblock) {
|
2006-08-18 19:55:18 +00:00
|
|
|
c->playback.current_memblock = pa_memblock_new(c->protocol->core->mempool, c->playback.fragment_size*2);
|
2006-11-06 13:06:01 +00:00
|
|
|
assert(c->playback.current_memblock && c->playback.current_memblock->length >= l);
|
2004-07-09 23:26:10 +00:00
|
|
|
c->playback.memblock_index = 0;
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
2006-11-06 13:06:01 +00:00
|
|
|
if ((r = pa_iochannel_read(c->io, (uint8_t*) c->playback.current_memblock->data+c->playback.memblock_index, l)) <= 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_debug("read(): %s", r < 0 ? pa_cstrerror(errno) : "EOF");
|
2004-07-09 23:26:10 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
chunk.memblock = c->playback.current_memblock;
|
|
|
|
|
chunk.index = c->playback.memblock_index;
|
|
|
|
|
chunk.length = r;
|
|
|
|
|
assert(chunk.memblock);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
c->playback.memblock_index += r;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(c->input_memblockq);
|
2006-02-20 04:05:16 +00:00
|
|
|
pa_memblockq_push_align(c->input_memblockq, &chunk);
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(c->sink_input);
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_sink_notify(c->sink_input->sink);
|
2004-07-10 16:50:22 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int do_write(struct connection *c) {
|
|
|
|
|
assert(c && c->io);
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
/* pa_log("WRITE"); */
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if (c->write_data_length) {
|
|
|
|
|
ssize_t r;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
assert(c->write_data_index < c->write_data_length);
|
2004-09-01 00:46:56 +00:00
|
|
|
if ((r = pa_iochannel_write(c->io, (uint8_t*) c->write_data+c->write_data_index, c->write_data_length-c->write_data_index)) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("write(): %s", pa_cstrerror(errno));
|
2004-07-09 23:26:10 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if ((c->write_data_index +=r) >= c->write_data_length)
|
|
|
|
|
c->write_data_length = c->write_data_index = 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
} else if (c->state == ESD_STREAMING_DATA && c->source_output) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk chunk;
|
2004-07-09 23:26:10 +00:00
|
|
|
ssize_t r;
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
assert(c->output_memblockq);
|
|
|
|
|
if (pa_memblockq_peek(c->output_memblockq, &chunk) < 0)
|
|
|
|
|
return 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-11-06 13:06:01 +00:00
|
|
|
assert(chunk.memblock && chunk.length);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-11-06 13:06:01 +00:00
|
|
|
if ((r = pa_iochannel_write(c->io, (uint8_t*) chunk.memblock->data+chunk.index, chunk.length)) < 0) {
|
2004-07-09 23:26:10 +00:00
|
|
|
pa_memblock_unref(chunk.memblock);
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("write(): %s", pa_cstrerror(errno));
|
2004-07-09 23:26:10 +00:00
|
|
|
return -1;
|
|
|
|
|
}
|
2004-11-18 20:50:44 +00:00
|
|
|
|
2004-08-22 21:13:58 +00:00
|
|
|
pa_memblockq_drop(c->output_memblockq, &chunk, r);
|
2004-07-09 23:26:10 +00:00
|
|
|
pa_memblock_unref(chunk.memblock);
|
2006-02-20 04:05:16 +00:00
|
|
|
|
|
|
|
|
pa_source_notify(c->source_output->source);
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
static void do_work(struct connection *c) {
|
|
|
|
|
assert(c);
|
|
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
|
|
|
|
|
c->protocol->core->mainloop->defer_enable(c->defer_event, 0);
|
2004-09-27 17:21:27 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if (c->dead)
|
|
|
|
|
return;
|
2004-09-27 17:21:27 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if (pa_iochannel_is_readable(c->io)) {
|
2004-09-26 17:02:26 +00:00
|
|
|
if (do_read(c) < 0)
|
|
|
|
|
goto fail;
|
2006-05-11 22:37:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c->state == ESD_STREAMING_DATA && c->source_output && pa_iochannel_is_hungup(c->io))
|
|
|
|
|
/* In case we are in capture mode we will never call read()
|
|
|
|
|
* on the socket, hence we need to detect the hangup manually
|
|
|
|
|
* here, instead of simply waiting for read() to return 0. */
|
2006-02-20 04:05:16 +00:00
|
|
|
goto fail;
|
2004-11-18 20:50:44 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if (pa_iochannel_is_writable(c->io))
|
2004-07-09 23:26:10 +00:00
|
|
|
if (do_write(c) < 0)
|
|
|
|
|
goto fail;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
fail:
|
2004-09-26 17:02:26 +00:00
|
|
|
|
|
|
|
|
if (c->state == ESD_STREAMING_DATA && c->sink_input) {
|
|
|
|
|
c->dead = 1;
|
2004-09-27 17:21:27 +00:00
|
|
|
|
|
|
|
|
pa_iochannel_free(c->io);
|
|
|
|
|
c->io = NULL;
|
2006-02-20 04:05:16 +00:00
|
|
|
|
|
|
|
|
pa_memblockq_prebuf_disable(c->input_memblockq);
|
|
|
|
|
pa_sink_notify(c->sink_input->sink);
|
2004-09-26 17:02:26 +00:00
|
|
|
} else
|
|
|
|
|
connection_free(c);
|
2004-07-09 23:26:10 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void io_callback(pa_iochannel*io, void *userdata) {
|
2004-06-29 16:48:37 +00:00
|
|
|
struct connection *c = userdata;
|
|
|
|
|
assert(io && c && c->io == io);
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
do_work(c);
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-05 19:53:57 +00:00
|
|
|
/*** defer callback ***/
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void defer_callback(pa_mainloop_api*a, pa_defer_event *e, void *userdata) {
|
2004-07-09 23:26:10 +00:00
|
|
|
struct connection *c = userdata;
|
2004-08-05 19:53:57 +00:00
|
|
|
assert(a && c && c->defer_event == e);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
/* pa_log("DEFER"); */
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
do_work(c);
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*** sink_input callbacks ***/
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static int sink_input_peek_cb(pa_sink_input *i, pa_memchunk *chunk) {
|
2004-06-29 16:48:37 +00:00
|
|
|
struct connection*c;
|
|
|
|
|
assert(i && i->userdata && chunk);
|
|
|
|
|
c = i->userdata;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
if (pa_memblockq_peek(c->input_memblockq, chunk) < 0) {
|
|
|
|
|
|
|
|
|
|
if (c->dead)
|
|
|
|
|
connection_free(c);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
return -1;
|
2004-09-26 17:02:26 +00:00
|
|
|
}
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void sink_input_drop_cb(pa_sink_input *i, const pa_memchunk *chunk, size_t length) {
|
2004-06-29 16:48:37 +00:00
|
|
|
struct connection*c = i->userdata;
|
|
|
|
|
assert(i && c && length);
|
|
|
|
|
|
2006-02-23 02:27:19 +00:00
|
|
|
/* pa_log("DROP"); */
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-08-22 21:13:58 +00:00
|
|
|
pa_memblockq_drop(c->input_memblockq, chunk, length);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
|
|
|
|
/* do something */
|
2004-08-05 19:53:57 +00:00
|
|
|
assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
|
2004-09-27 15:40:18 +00:00
|
|
|
|
|
|
|
|
if (!c->dead)
|
|
|
|
|
c->protocol->core->mainloop->defer_enable(c->defer_event, 1);
|
2004-09-01 00:23:51 +00:00
|
|
|
|
2004-09-12 23:29:54 +00:00
|
|
|
/* assert(pa_memblockq_get_length(c->input_memblockq) > 2048); */
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void sink_input_kill_cb(pa_sink_input *i) {
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(i && i->userdata);
|
|
|
|
|
connection_free((struct connection *) i->userdata);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_usec_t sink_input_get_latency_cb(pa_sink_input *i) {
|
2004-06-29 16:48:37 +00:00
|
|
|
struct connection*c = i->userdata;
|
|
|
|
|
assert(i && c);
|
2004-08-03 19:26:56 +00:00
|
|
|
return pa_bytes_to_usec(pa_memblockq_get_length(c->input_memblockq), &c->sink_input->sample_spec);
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
/*** source_output callbacks ***/
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk) {
|
2004-07-09 23:26:10 +00:00
|
|
|
struct connection *c = o->userdata;
|
|
|
|
|
assert(o && c && chunk);
|
|
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
pa_memblockq_push(c->output_memblockq, chunk);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
|
|
|
|
/* do something */
|
2004-08-05 19:53:57 +00:00
|
|
|
assert(c->protocol && c->protocol->core && c->protocol->core->mainloop && c->protocol->core->mainloop->defer_enable);
|
2004-09-27 15:40:18 +00:00
|
|
|
|
|
|
|
|
if (!c->dead)
|
|
|
|
|
c->protocol->core->mainloop->defer_enable(c->defer_event, 1);
|
2004-07-09 23:26:10 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void source_output_kill_cb(pa_source_output *o) {
|
2004-07-09 23:26:10 +00:00
|
|
|
assert(o && o->userdata);
|
|
|
|
|
connection_free((struct connection *) o->userdata);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_usec_t source_output_get_latency_cb(pa_source_output *o) {
|
2004-09-16 00:05:56 +00:00
|
|
|
struct connection*c = o->userdata;
|
|
|
|
|
assert(o && c);
|
|
|
|
|
return pa_bytes_to_usec(pa_memblockq_get_length(c->output_memblockq), &c->source_output->sample_spec);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
/*** socket server callback ***/
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void auth_timeout(pa_mainloop_api*m, pa_time_event *e, const struct timeval *tv, void *userdata) {
|
2004-11-18 00:28:26 +00:00
|
|
|
struct connection *c = userdata;
|
|
|
|
|
assert(m && tv && c && c->auth_timeout_event == e);
|
|
|
|
|
|
|
|
|
|
if (!c->authorized)
|
|
|
|
|
connection_free(c);
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void on_connection(pa_socket_server*s, pa_iochannel *io, void *userdata) {
|
2004-06-29 16:48:37 +00:00
|
|
|
struct connection *c;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_protocol_esound *p = userdata;
|
2006-06-13 09:33:55 +00:00
|
|
|
char cname[256], pname[128];
|
2004-11-18 00:28:26 +00:00
|
|
|
assert(s && io && p);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
if (pa_idxset_size(p->connections)+1 > MAX_CONNECTIONS) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("Warning! Too many connections (%u), dropping incoming connection.", MAX_CONNECTIONS);
|
2004-11-18 00:28:26 +00:00
|
|
|
pa_iochannel_free(io);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-24 00:49:21 +00:00
|
|
|
c = pa_xnew(struct connection, 1);
|
2004-11-18 00:28:26 +00:00
|
|
|
c->protocol = p;
|
2004-06-29 16:48:37 +00:00
|
|
|
c->io = io;
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_iochannel_set_callback(c->io, io_callback, c);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2006-06-13 09:33:55 +00:00
|
|
|
pa_iochannel_socket_peer_to_string(io, pname, sizeof(pname));
|
|
|
|
|
snprintf(cname, sizeof(cname), "EsounD client (%s)", pname);
|
2004-11-18 00:28:26 +00:00
|
|
|
assert(p->core);
|
2006-01-27 16:25:31 +00:00
|
|
|
c->client = pa_client_new(p->core, __FILE__, cname);
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(c->client);
|
2004-11-18 00:28:26 +00:00
|
|
|
c->client->owner = p->module;
|
2004-06-29 16:48:37 +00:00
|
|
|
c->client->kill = client_kill_cb;
|
|
|
|
|
c->client->userdata = c;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 18:43:20 +00:00
|
|
|
c->authorized = !!p->public;
|
2004-06-29 16:48:37 +00:00
|
|
|
c->swap_byte_order = 0;
|
2004-09-26 17:02:26 +00:00
|
|
|
c->dead = 0;
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
c->read_data_length = 0;
|
2004-08-04 16:39:30 +00:00
|
|
|
c->read_data = pa_xmalloc(c->read_data_alloc = proto_map[ESD_PROTO_CONNECT].data_length);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
|
|
|
|
c->write_data_length = c->write_data_index = c->write_data_alloc = 0;
|
|
|
|
|
c->write_data = NULL;
|
|
|
|
|
|
|
|
|
|
c->state = ESD_NEEDS_REQDATA;
|
|
|
|
|
c->request = ESD_PROTO_CONNECT;
|
|
|
|
|
|
|
|
|
|
c->sink_input = NULL;
|
|
|
|
|
c->input_memblockq = NULL;
|
2004-06-29 18:50:14 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
c->source_output = NULL;
|
|
|
|
|
c->output_memblockq = NULL;
|
|
|
|
|
|
|
|
|
|
c->playback.current_memblock = NULL;
|
|
|
|
|
c->playback.memblock_index = 0;
|
|
|
|
|
c->playback.fragment_size = 0;
|
|
|
|
|
|
2004-09-26 17:02:26 +00:00
|
|
|
c->scache.memchunk.length = c->scache.memchunk.index = 0;
|
|
|
|
|
c->scache.memchunk.memblock = NULL;
|
|
|
|
|
c->scache.name = NULL;
|
2004-11-18 00:28:26 +00:00
|
|
|
|
2006-05-16 01:40:01 +00:00
|
|
|
c->original_name = NULL;
|
|
|
|
|
|
2006-07-20 18:43:20 +00:00
|
|
|
if (!c->authorized && p->auth_ip_acl && pa_ip_acl_check(p->auth_ip_acl, pa_iochannel_get_recv_fd(io)) > 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_info("Client authenticated by IP ACL.");
|
2006-07-20 18:43:20 +00:00
|
|
|
c->authorized = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2004-11-18 00:28:26 +00:00
|
|
|
if (!c->authorized) {
|
|
|
|
|
struct timeval tv;
|
2006-01-10 17:51:06 +00:00
|
|
|
pa_gettimeofday(&tv);
|
2004-11-18 00:28:26 +00:00
|
|
|
tv.tv_sec += AUTH_TIMEOUT;
|
|
|
|
|
c->auth_timeout_event = p->core->mainloop->time_new(p->core->mainloop, &tv, auth_timeout, c);
|
|
|
|
|
} else
|
|
|
|
|
c->auth_timeout_event = NULL;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-11-18 00:28:26 +00:00
|
|
|
c->defer_event = p->core->mainloop->defer_new(p->core->mainloop, defer_callback, c);
|
2004-08-05 19:53:57 +00:00
|
|
|
assert(c->defer_event);
|
2004-11-18 00:28:26 +00:00
|
|
|
p->core->mainloop->defer_enable(c->defer_event, 0);
|
2004-07-20 01:07:06 +00:00
|
|
|
|
2004-11-18 00:28:26 +00:00
|
|
|
pa_idxset_put(p->connections, c, &c->index);
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*** entry points ***/
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_protocol_esound* pa_protocol_esound_new(pa_core*core, pa_socket_server *server, pa_module *m, pa_modargs *ma) {
|
|
|
|
|
pa_protocol_esound *p;
|
2004-11-18 00:28:26 +00:00
|
|
|
int public = 0;
|
2006-07-20 18:43:20 +00:00
|
|
|
const char *acl;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-07-20 18:43:20 +00:00
|
|
|
assert(core);
|
|
|
|
|
assert(server);
|
|
|
|
|
assert(m);
|
|
|
|
|
assert(ma);
|
2004-06-29 16:48:37 +00:00
|
|
|
|
2006-02-24 00:49:21 +00:00
|
|
|
p = pa_xnew(pa_protocol_esound, 1);
|
2004-07-06 00:08:44 +00:00
|
|
|
|
2006-02-24 17:14:23 +00:00
|
|
|
if (pa_modargs_get_value_boolean(ma, "auth-anonymous", &public) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("auth-anonymous= expects a boolean argument.");
|
2006-07-20 18:43:20 +00:00
|
|
|
goto fail;
|
2004-09-12 23:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
2006-07-20 18:43:20 +00:00
|
|
|
if (pa_authkey_load_auto(pa_modargs_get_value(ma, "cookie", DEFAULT_COOKIE_FILE), p->esd_key, sizeof(p->esd_key)) < 0)
|
|
|
|
|
goto fail;
|
2004-07-10 20:56:38 +00:00
|
|
|
|
2006-07-20 18:43:20 +00:00
|
|
|
if ((acl = pa_modargs_get_value(ma, "auth-ip-acl", NULL))) {
|
|
|
|
|
|
|
|
|
|
if (!(p->auth_ip_acl = pa_ip_acl_new(acl))) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("Failed to parse IP ACL '%s'", acl);
|
2006-07-20 18:43:20 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
} else
|
|
|
|
|
p->auth_ip_acl = NULL;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-10 20:56:38 +00:00
|
|
|
p->module = m;
|
2004-09-12 23:40:53 +00:00
|
|
|
p->public = public;
|
2004-06-29 16:48:37 +00:00
|
|
|
p->server = server;
|
2004-07-06 00:08:44 +00:00
|
|
|
pa_socket_server_set_callback(p->server, on_connection, p);
|
2004-06-29 16:48:37 +00:00
|
|
|
p->core = core;
|
2004-07-03 23:35:12 +00:00
|
|
|
p->connections = pa_idxset_new(NULL, NULL);
|
2004-06-29 16:48:37 +00:00
|
|
|
assert(p->connections);
|
2004-08-04 16:39:30 +00:00
|
|
|
|
|
|
|
|
p->sink_name = pa_xstrdup(pa_modargs_get_value(ma, "sink", NULL));
|
|
|
|
|
p->source_name = pa_xstrdup(pa_modargs_get_value(ma, "source", NULL));
|
2004-06-30 00:00:52 +00:00
|
|
|
p->n_player = 0;
|
|
|
|
|
|
2004-06-29 16:48:37 +00:00
|
|
|
return p;
|
2006-07-20 18:43:20 +00:00
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
pa_xfree(p);
|
|
|
|
|
return NULL;
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_protocol_esound_free(pa_protocol_esound *p) {
|
2004-06-29 16:48:37 +00:00
|
|
|
struct connection *c;
|
|
|
|
|
assert(p);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
while ((c = pa_idxset_first(p->connections, NULL)))
|
2004-06-29 16:48:37 +00:00
|
|
|
connection_free(c);
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_idxset_free(p->connections, NULL, NULL);
|
2004-08-15 00:02:26 +00:00
|
|
|
pa_socket_server_unref(p->server);
|
2006-07-20 18:43:20 +00:00
|
|
|
|
|
|
|
|
if (p->auth_ip_acl)
|
|
|
|
|
pa_ip_acl_free(p->auth_ip_acl);
|
|
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(p);
|
2004-06-29 16:48:37 +00:00
|
|
|
}
|