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
|
|
|
|
|
|
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-08 23:54:24 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <limits.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulse/xmalloc.h>
|
2006-05-17 16:34:18 +00:00
|
|
|
|
2006-06-19 21:53:48 +00:00
|
|
|
#include <pulsecore/sink-input.h>
|
|
|
|
|
#include <pulsecore/source-output.h>
|
|
|
|
|
#include <pulsecore/client.h>
|
|
|
|
|
#include <pulsecore/sample-util.h>
|
|
|
|
|
#include <pulsecore/namereg.h>
|
|
|
|
|
#include <pulsecore/log.h>
|
|
|
|
|
#include <pulsecore/core-error.h>
|
2007-10-28 19:13:50 +00:00
|
|
|
#include <pulsecore/atomic.h>
|
|
|
|
|
#include <pulsecore/thread-mq.h>
|
2006-02-17 12:10:58 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
#include "protocol-simple.h"
|
|
|
|
|
|
2004-11-18 00:28:26 +00:00
|
|
|
/* Don't allow more than this many concurrent connections */
|
|
|
|
|
#define MAX_CONNECTIONS 10
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
typedef struct connection {
|
|
|
|
|
pa_msgobject parent;
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_protocol_simple *protocol;
|
|
|
|
|
pa_iochannel *io;
|
|
|
|
|
pa_sink_input *sink_input;
|
|
|
|
|
pa_source_output *source_output;
|
|
|
|
|
pa_client *client;
|
|
|
|
|
pa_memblockq *input_memblockq, *output_memblockq;
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
int dead;
|
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;
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_atomic_t missing;
|
2004-07-09 23:26:10 +00:00
|
|
|
} playback;
|
2007-10-28 19:13:50 +00:00
|
|
|
} connection;
|
|
|
|
|
|
|
|
|
|
PA_DECLARE_CLASS(connection);
|
|
|
|
|
#define CONNECTION(o) (connection_cast(o))
|
|
|
|
|
static PA_DEFINE_CHECK_TYPE(connection, pa_msgobject);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
struct pa_protocol_simple {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_module *module;
|
|
|
|
|
pa_core *core;
|
|
|
|
|
pa_socket_server*server;
|
|
|
|
|
pa_idxset *connections;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
enum {
|
|
|
|
|
RECORD = 1,
|
|
|
|
|
PLAYBACK = 2,
|
|
|
|
|
DUPLEX = 3
|
|
|
|
|
} mode;
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_sample_spec sample_spec;
|
2004-08-04 16:39:30 +00:00
|
|
|
char *source_name, *sink_name;
|
2004-06-08 23:54:24 +00:00
|
|
|
};
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
enum {
|
|
|
|
|
SINK_INPUT_MESSAGE_POST_DATA = PA_SINK_INPUT_MESSAGE_MAX, /* data from main loop to sink input */
|
|
|
|
|
SINK_INPUT_MESSAGE_DISABLE_PREBUF /* disabled prebuf, get playback started. */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
CONNECTION_MESSAGE_REQUEST_DATA, /* data requested from sink input from the main loop */
|
|
|
|
|
CONNECTION_MESSAGE_POST_DATA, /* data from source output to main loop */
|
|
|
|
|
CONNECTION_MESSAGE_UNLINK_CONNECTION /* Please drop a aconnection now */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
#define PLAYBACK_BUFFER_SECONDS (.5)
|
2004-07-09 23:26:10 +00:00
|
|
|
#define PLAYBACK_BUFFER_FRAGMENTS (10)
|
2004-07-07 00:22:46 +00:00
|
|
|
#define RECORD_BUFFER_SECONDS (5)
|
2004-07-09 23:26:10 +00:00
|
|
|
#define RECORD_BUFFER_FRAGMENTS (100)
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static void connection_unlink(connection *c) {
|
|
|
|
|
pa_assert(c);
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
if (!c->protocol)
|
|
|
|
|
return;
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2004-09-14 20:53:25 +00:00
|
|
|
if (c->sink_input) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_sink_input_unlink(c->sink_input);
|
2004-09-14 20:53:25 +00:00
|
|
|
pa_sink_input_unref(c->sink_input);
|
2007-10-28 19:13:50 +00:00
|
|
|
c->sink_input = NULL;
|
2004-09-14 20:53:25 +00:00
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2004-09-14 20:53:25 +00:00
|
|
|
if (c->source_output) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_source_output_unlink(c->source_output);
|
2004-09-14 20:53:25 +00:00
|
|
|
pa_source_output_unref(c->source_output);
|
2007-10-28 19:13:50 +00:00
|
|
|
c->source_output = NULL;
|
2004-09-14 20:53:25 +00:00
|
|
|
}
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
if (c->client) {
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_client_free(c->client);
|
2007-10-28 19:13:50 +00:00
|
|
|
c->client = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (c->io) {
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_iochannel_free(c->io);
|
2007-10-28 19:13:50 +00:00
|
|
|
c->io = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_assert_se(pa_idxset_remove_by_data(c->protocol->connections, c, NULL) == c);
|
|
|
|
|
c->protocol = NULL;
|
|
|
|
|
connection_unref(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void connection_free(pa_object *o) {
|
|
|
|
|
connection *c = CONNECTION(o);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
connection_unref(c);
|
|
|
|
|
|
|
|
|
|
if (c->playback.current_memblock)
|
|
|
|
|
pa_memblock_unref(c->playback.current_memblock);
|
|
|
|
|
|
2004-06-15 17:05:03 +00:00
|
|
|
if (c->input_memblockq)
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_memblockq_free(c->input_memblockq);
|
2004-06-15 17:05:03 +00:00
|
|
|
if (c->output_memblockq)
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_memblockq_free(c->output_memblockq);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(c);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static int do_read(connection *c) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk chunk;
|
2004-06-15 00:29:01 +00:00
|
|
|
ssize_t r;
|
2004-07-07 00:22:46 +00:00
|
|
|
size_t l;
|
2007-10-28 19:13:50 +00:00
|
|
|
void *p;
|
|
|
|
|
|
|
|
|
|
connection_assert_ref(c);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
if (!c->sink_input || (l = pa_atomic_load(&c->playback.missing)) <= 0)
|
2004-06-15 00:29:01 +00:00
|
|
|
return 0;
|
2004-07-07 00:22:46 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
if (l > c->playback.fragment_size)
|
|
|
|
|
l = c->playback.fragment_size;
|
2004-06-15 15:18:33 +00:00
|
|
|
|
2007-01-04 13:43:45 +00:00
|
|
|
if (c->playback.current_memblock)
|
2007-10-28 19:13:50 +00:00
|
|
|
if (pa_memblock_get_length(c->playback.current_memblock) - 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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!c->playback.current_memblock) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert_se(c->playback.current_memblock = pa_memblock_new(c->protocol->core->mempool, l));
|
2004-07-09 23:26:10 +00:00
|
|
|
c->playback.memblock_index = 0;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
p = pa_memblock_acquire(c->playback.current_memblock);
|
|
|
|
|
r = pa_iochannel_read(c->io, (uint8_t*) p + c->playback.memblock_index, l);
|
|
|
|
|
pa_memblock_release(c->playback.current_memblock);
|
|
|
|
|
|
|
|
|
|
if (r <= 0) {
|
|
|
|
|
|
|
|
|
|
if (r < 0 && (errno == EINTR || errno == EAGAIN))
|
|
|
|
|
return 0;
|
|
|
|
|
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log_debug("read(): %s", r == 0 ? "EOF" : pa_cstrerror(errno));
|
2004-06-15 00:29:01 +00:00
|
|
|
return -1;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
2004-06-15 15:18:33 +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;
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
c->playback.memblock_index += r;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_asyncmsgq_post(c->sink_input->sink->asyncmsgq, PA_MSGOBJECT(c->sink_input), SINK_INPUT_MESSAGE_POST_DATA, NULL, 0, &chunk, NULL);
|
|
|
|
|
pa_atomic_sub(&c->playback.missing, r);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-15 00:29:01 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static int do_write(connection *c) {
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_memchunk chunk;
|
2004-06-15 00:29:01 +00:00
|
|
|
ssize_t r;
|
2007-10-28 19:13:50 +00:00
|
|
|
void *p;
|
|
|
|
|
|
|
|
|
|
connection_assert_ref(c);
|
2006-11-06 13:06:01 +00:00
|
|
|
|
2004-06-15 17:05:03 +00:00
|
|
|
if (!c->source_output)
|
2007-01-04 13:43:45 +00:00
|
|
|
return 0;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
if (pa_memblockq_peek(c->output_memblockq, &chunk) < 0) {
|
|
|
|
|
/* pa_log("peek failed"); */
|
2004-06-16 00:05:30 +00:00
|
|
|
return 0;
|
2007-10-28 19:13:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pa_assert(chunk.memblock);
|
|
|
|
|
pa_assert(chunk.length);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
p = pa_memblock_acquire(chunk.memblock);
|
|
|
|
|
r = pa_iochannel_write(c->io, (uint8_t*) p+chunk.index, chunk.length);
|
|
|
|
|
pa_memblock_release(chunk.memblock);
|
|
|
|
|
|
|
|
|
|
pa_memblock_unref(chunk.memblock);
|
|
|
|
|
|
|
|
|
|
if (r < 0) {
|
|
|
|
|
|
|
|
|
|
if (errno == EINTR || errno == EAGAIN)
|
|
|
|
|
return 0;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("write(): %s", pa_cstrerror(errno));
|
2004-06-15 00:29:01 +00:00
|
|
|
return -1;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_memblockq_drop(c->output_memblockq, r);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-15 00:29:01 +00:00
|
|
|
return 0;
|
|
|
|
|
}
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static void do_work(connection *c) {
|
|
|
|
|
connection_assert_ref(c);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if (c->dead)
|
|
|
|
|
return;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if (pa_iochannel_is_readable(c->io)) {
|
2004-07-09 23:26:10 +00:00
|
|
|
if (do_read(c) < 0)
|
|
|
|
|
goto fail;
|
2006-02-20 04:05:16 +00:00
|
|
|
} else if (pa_iochannel_is_hungup(c->io))
|
|
|
|
|
goto fail;
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
if (pa_iochannel_is_writable(c->io)) {
|
|
|
|
|
if (do_write(c) < 0)
|
|
|
|
|
goto fail;
|
2007-01-04 13:43:45 +00:00
|
|
|
}
|
2004-11-18 20:50:44 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
fail:
|
2006-02-20 04:05:16 +00:00
|
|
|
|
|
|
|
|
if (c->sink_input) {
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
/* If there is a sink input, we first drain what we already have read before shutting down the connection */
|
2006-02-20 04:05:16 +00:00
|
|
|
c->dead = 1;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2006-02-20 04:05:16 +00:00
|
|
|
pa_iochannel_free(c->io);
|
|
|
|
|
c->io = NULL;
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_asyncmsgq_post(c->sink_input->sink->asyncmsgq, PA_MSGOBJECT(c->sink_input), SINK_INPUT_MESSAGE_DISABLE_PREBUF, NULL, 0, NULL, NULL);
|
2006-02-20 04:05:16 +00:00
|
|
|
} else
|
2007-10-28 19:13:50 +00:00
|
|
|
connection_unlink(c);
|
2004-07-09 23:26:10 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static int connection_process_msg(pa_msgobject *o, int code, void*userdata, int64_t offset, pa_memchunk *chunk) {
|
|
|
|
|
connection *c = CONNECTION(o);
|
|
|
|
|
connection_assert_ref(c);
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
switch (code) {
|
|
|
|
|
case CONNECTION_MESSAGE_REQUEST_DATA:
|
|
|
|
|
do_work(c);
|
|
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
case CONNECTION_MESSAGE_POST_DATA:
|
|
|
|
|
/* pa_log("got data %u", chunk->length); */
|
|
|
|
|
pa_memblockq_push_align(c->output_memblockq, chunk);
|
|
|
|
|
do_work(c);
|
|
|
|
|
break;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
case CONNECTION_MESSAGE_UNLINK_CONNECTION:
|
|
|
|
|
connection_unlink(c);
|
|
|
|
|
break;
|
2006-02-20 04:05:16 +00:00
|
|
|
}
|
2004-06-15 17:05:03 +00:00
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/*** sink_input callbacks ***/
|
|
|
|
|
|
|
|
|
|
/* Called from thread context */
|
|
|
|
|
static int sink_input_process_msg(pa_msgobject *o, int code, void *userdata, int64_t offset, pa_memchunk *chunk) {
|
|
|
|
|
pa_sink_input *i = PA_SINK_INPUT(o);
|
|
|
|
|
connection*c;
|
|
|
|
|
|
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
c = CONNECTION(i->userdata);
|
|
|
|
|
connection_assert_ref(c);
|
|
|
|
|
|
|
|
|
|
switch (code) {
|
|
|
|
|
|
|
|
|
|
case SINK_INPUT_MESSAGE_POST_DATA: {
|
|
|
|
|
pa_assert(chunk);
|
|
|
|
|
|
|
|
|
|
/* New data from the main loop */
|
|
|
|
|
pa_memblockq_push_align(c->input_memblockq, chunk);
|
|
|
|
|
|
|
|
|
|
/* pa_log("got data, %u", pa_memblockq_get_length(c->input_memblockq)); */
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case SINK_INPUT_MESSAGE_DISABLE_PREBUF: {
|
|
|
|
|
pa_memblockq_prebuf_disable(c->input_memblockq);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case PA_SINK_INPUT_MESSAGE_GET_LATENCY: {
|
|
|
|
|
pa_usec_t *r = userdata;
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
*r = pa_bytes_to_usec(pa_memblockq_get_length(c->input_memblockq), &c->sink_input->sample_spec);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/* Fall through, the default handler will add in the extra
|
|
|
|
|
* latency added by the resampler */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return pa_sink_input_process_msg(o, code, userdata, offset, chunk);
|
|
|
|
|
}
|
2004-06-15 17:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/* Called from thread context */
|
|
|
|
|
static int sink_input_peek_cb(pa_sink_input *i, size_t length, pa_memchunk *chunk) {
|
|
|
|
|
connection *c;
|
|
|
|
|
int r;
|
|
|
|
|
|
|
|
|
|
pa_assert(i);
|
|
|
|
|
c = CONNECTION(i->userdata);
|
|
|
|
|
connection_assert_ref(c);
|
|
|
|
|
pa_assert(chunk);
|
|
|
|
|
|
|
|
|
|
r = pa_memblockq_peek(c->input_memblockq, chunk);
|
|
|
|
|
|
|
|
|
|
/* pa_log("peeked %u %i", r >= 0 ? chunk->length: 0, r); */
|
|
|
|
|
|
|
|
|
|
if (c->dead && r < 0)
|
|
|
|
|
pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(c), CONNECTION_MESSAGE_UNLINK_CONNECTION, NULL, 0, NULL, NULL);
|
|
|
|
|
|
|
|
|
|
return r;
|
2004-06-15 17:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/* Called from thread context */
|
|
|
|
|
static void sink_input_drop_cb(pa_sink_input *i, size_t length) {
|
|
|
|
|
connection *c;
|
|
|
|
|
size_t old, new;
|
|
|
|
|
|
|
|
|
|
pa_assert(i);
|
|
|
|
|
c = CONNECTION(i->userdata);
|
|
|
|
|
connection_assert_ref(c);
|
|
|
|
|
pa_assert(length);
|
|
|
|
|
|
|
|
|
|
old = pa_memblockq_missing(c->input_memblockq);
|
|
|
|
|
pa_memblockq_drop(c->input_memblockq, length);
|
|
|
|
|
new = pa_memblockq_missing(c->input_memblockq);
|
2004-06-18 17:12:50 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
if (new > old) {
|
|
|
|
|
if (pa_atomic_add(&c->playback.missing, new - old) <= 0)
|
|
|
|
|
pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(c), CONNECTION_MESSAGE_REQUEST_DATA, NULL, 0, NULL, NULL);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Called from main context */
|
|
|
|
|
static void sink_input_kill_cb(pa_sink_input *i) {
|
|
|
|
|
pa_sink_input_assert_ref(i);
|
|
|
|
|
|
|
|
|
|
connection_unlink(CONNECTION(i->userdata));
|
2004-06-18 17:12:50 +00:00
|
|
|
}
|
|
|
|
|
|
2004-06-15 17:05:03 +00:00
|
|
|
/*** source_output callbacks ***/
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/* Called from thread context */
|
2006-01-11 01:17:39 +00:00
|
|
|
static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk) {
|
2007-10-28 19:13:50 +00:00
|
|
|
connection *c;
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(o);
|
|
|
|
|
c = CONNECTION(o->userdata);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
pa_assert(chunk);
|
2004-06-16 00:05:30 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_asyncmsgq_post(pa_thread_mq_get()->outq, PA_MSGOBJECT(c), CONNECTION_MESSAGE_POST_DATA, NULL, 0, chunk, NULL);
|
2004-06-15 17:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/* Called from main context */
|
2006-01-11 01:17:39 +00:00
|
|
|
static void source_output_kill_cb(pa_source_output *o) {
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_source_output_assert_ref(o);
|
|
|
|
|
|
|
|
|
|
connection_unlink(CONNECTION(o->userdata));
|
2004-06-15 17:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
/* Called from main context */
|
2006-01-11 01:17:39 +00:00
|
|
|
static pa_usec_t source_output_get_latency_cb(pa_source_output *o) {
|
2007-10-28 19:13:50 +00:00
|
|
|
connection*c;
|
|
|
|
|
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
c = CONNECTION(o->userdata);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
2004-09-16 00:05:56 +00:00
|
|
|
return pa_bytes_to_usec(pa_memblockq_get_length(c->output_memblockq), &c->source_output->sample_spec);
|
|
|
|
|
}
|
|
|
|
|
|
2004-06-15 17:05:03 +00:00
|
|
|
/*** client callbacks ***/
|
|
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
static void client_kill_cb(pa_client *client) {
|
|
|
|
|
connection*c;
|
|
|
|
|
|
|
|
|
|
pa_assert(client);
|
|
|
|
|
c = CONNECTION(client->userdata);
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
connection_unlink(c);
|
2004-06-15 17:05:03 +00:00
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
/*** pa_iochannel callbacks ***/
|
2004-06-15 17:05:03 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void io_callback(pa_iochannel*io, void *userdata) {
|
2007-10-28 19:13:50 +00:00
|
|
|
connection *c = CONNECTION(userdata);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
connection_assert_ref(c);
|
|
|
|
|
pa_assert(io);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
|
|
|
|
do_work(c);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*** socket_server callbacks ***/
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
static void on_connection(pa_socket_server*s, pa_iochannel *io, void *userdata) {
|
|
|
|
|
pa_protocol_simple *p = userdata;
|
2007-10-28 19:13:50 +00:00
|
|
|
connection *c = NULL;
|
2004-06-23 23:17:30 +00:00
|
|
|
char cname[256];
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_assert(s);
|
|
|
|
|
pa_assert(io);
|
|
|
|
|
pa_assert(p);
|
2004-06-08 23:54:24 +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-10-28 19:13:50 +00:00
|
|
|
c = pa_msgobject_new(connection);
|
|
|
|
|
c->parent.parent.free = connection_free;
|
|
|
|
|
c->parent.process_msg = connection_process_msg;
|
2004-06-08 23:54:24 +00:00
|
|
|
c->io = io;
|
2004-06-15 17:05:03 +00:00
|
|
|
c->sink_input = NULL;
|
|
|
|
|
c->source_output = NULL;
|
|
|
|
|
c->input_memblockq = c->output_memblockq = NULL;
|
2004-06-08 23:54:24 +00:00
|
|
|
c->protocol = p;
|
2004-07-09 23:26:10 +00:00
|
|
|
c->playback.current_memblock = NULL;
|
|
|
|
|
c->playback.memblock_index = 0;
|
|
|
|
|
c->playback.fragment_size = 0;
|
2006-02-20 04:05:16 +00:00
|
|
|
c->dead = 0;
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_atomic_store(&c->playback.missing, 0);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-09 23:26:10 +00:00
|
|
|
pa_iochannel_socket_peer_to_string(io, cname, sizeof(cname));
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert_se(c->client = pa_client_new(p->core, __FILE__, cname));
|
2004-07-10 20:56:38 +00:00
|
|
|
c->client->owner = p->module;
|
2004-06-15 17:05:03 +00:00
|
|
|
c->client->kill = client_kill_cb;
|
|
|
|
|
c->client->userdata = c;
|
2004-06-14 18:38:50 +00:00
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
if (p->mode & PLAYBACK) {
|
2006-08-13 16:19:56 +00:00
|
|
|
pa_sink_input_new_data data;
|
2004-06-15 17:05:03 +00:00
|
|
|
size_t l;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-08-13 16:19:56 +00:00
|
|
|
pa_sink_input_new_data_init(&data);
|
|
|
|
|
data.driver = __FILE__;
|
|
|
|
|
data.name = c->client->name;
|
|
|
|
|
pa_sink_input_new_data_set_sample_spec(&data, &p->sample_spec);
|
|
|
|
|
data.module = p->module;
|
|
|
|
|
data.client = c->client;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2006-08-13 16:19:56 +00:00
|
|
|
if (!(c->sink_input = pa_sink_input_new(p->core, &data, 0))) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("Failed to create sink input.");
|
2004-07-10 16:50:22 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
c->sink_input->parent.process_msg = sink_input_process_msg;
|
2004-06-15 17:05:03 +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->userdata = c;
|
|
|
|
|
|
2004-07-07 00:22:46 +00:00
|
|
|
l = (size_t) (pa_bytes_per_second(&p->sample_spec)*PLAYBACK_BUFFER_SECONDS);
|
2006-02-20 04:05:16 +00:00
|
|
|
c->input_memblockq = pa_memblockq_new(
|
|
|
|
|
0,
|
|
|
|
|
l,
|
|
|
|
|
0,
|
|
|
|
|
pa_frame_size(&p->sample_spec),
|
|
|
|
|
(size_t) -1,
|
|
|
|
|
l/PLAYBACK_BUFFER_FRAGMENTS,
|
2006-08-18 19:55:18 +00:00
|
|
|
NULL);
|
2004-07-09 23:26:10 +00:00
|
|
|
pa_iochannel_socket_set_rcvbuf(io, l/PLAYBACK_BUFFER_FRAGMENTS*5);
|
2007-10-28 19:13:50 +00:00
|
|
|
c->playback.fragment_size = l/PLAYBACK_BUFFER_FRAGMENTS;
|
|
|
|
|
|
|
|
|
|
pa_atomic_store(&c->playback.missing, pa_memblockq_missing(c->input_memblockq));
|
2006-08-13 16:19:56 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_sink_input_put(c->sink_input);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
if (p->mode & RECORD) {
|
2006-08-13 19:55:17 +00:00
|
|
|
pa_source_output_new_data data;
|
2004-07-09 23:26:10 +00:00
|
|
|
size_t l;
|
|
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
pa_source_output_new_data_init(&data);
|
|
|
|
|
data.driver = __FILE__;
|
|
|
|
|
data.name = c->client->name;
|
|
|
|
|
pa_source_output_new_data_set_sample_spec(&data, &p->sample_spec);
|
|
|
|
|
data.module = p->module;
|
|
|
|
|
data.client = c->client;
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2006-08-13 19:55:17 +00:00
|
|
|
if (!(c->source_output = pa_source_output_new(p->core, &data, 0))) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("Failed to create source output.");
|
2004-07-10 16:50:22 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
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;
|
|
|
|
|
|
|
|
|
|
l = (size_t) (pa_bytes_per_second(&p->sample_spec)*RECORD_BUFFER_SECONDS);
|
2006-02-20 04:05:16 +00:00
|
|
|
c->output_memblockq = pa_memblockq_new(
|
|
|
|
|
0,
|
|
|
|
|
l,
|
|
|
|
|
0,
|
|
|
|
|
pa_frame_size(&p->sample_spec),
|
|
|
|
|
1,
|
|
|
|
|
0,
|
2006-08-18 19:55:18 +00:00
|
|
|
NULL);
|
2004-07-09 23:26:10 +00:00
|
|
|
pa_iochannel_socket_set_sndbuf(io, l/RECORD_BUFFER_FRAGMENTS*2);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
|
|
|
|
pa_source_output_put(c->source_output);
|
2004-07-09 23:26:10 +00:00
|
|
|
}
|
|
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_iochannel_set_callback(c->io, io_callback, c);
|
|
|
|
|
pa_idxset_put(p->connections, c, NULL);
|
2004-07-09 23:26:10 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
return;
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
fail:
|
2004-07-03 00:19:17 +00:00
|
|
|
if (c)
|
2007-10-28 19:13:50 +00:00
|
|
|
connection_unlink(c);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
pa_protocol_simple* pa_protocol_simple_new(pa_core *core, pa_socket_server *server, pa_module *m, pa_modargs *ma) {
|
|
|
|
|
pa_protocol_simple* p = NULL;
|
2007-11-13 17:37:44 +00:00
|
|
|
pa_bool_t enable;
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2007-10-28 19:13:50 +00:00
|
|
|
pa_assert(core);
|
|
|
|
|
pa_assert(server);
|
|
|
|
|
pa_assert(ma);
|
|
|
|
|
|
|
|
|
|
p = pa_xnew0(pa_protocol_simple, 1);
|
2004-07-10 20:56:38 +00:00
|
|
|
p->module = m;
|
2004-06-08 23:54:24 +00:00
|
|
|
p->core = core;
|
|
|
|
|
p->server = server;
|
2004-07-03 23:35:12 +00:00
|
|
|
p->connections = pa_idxset_new(NULL, NULL);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-15 20:12:21 +00:00
|
|
|
p->sample_spec = core->default_sample_spec;
|
2004-07-11 22:20:08 +00:00
|
|
|
if (pa_modargs_get_sample_spec(ma, &p->sample_spec) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("Failed to parse sample type specification.");
|
2004-07-11 22:20:08 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
p->source_name = pa_xstrdup(pa_modargs_get_value(ma, "source", NULL));
|
|
|
|
|
p->sink_name = pa_xstrdup(pa_modargs_get_value(ma, "sink", NULL));
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2007-11-13 17:37:44 +00:00
|
|
|
enable = FALSE;
|
2004-09-04 00:27:36 +00:00
|
|
|
if (pa_modargs_get_value_boolean(ma, "record", &enable) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("record= expects a numeric argument.");
|
2004-07-11 22:20:08 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
p->mode = enable ? RECORD : 0;
|
|
|
|
|
|
|
|
|
|
enable = 1;
|
2004-09-04 00:27:36 +00:00
|
|
|
if (pa_modargs_get_value_boolean(ma, "playback", &enable) < 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("playback= expects a numeric argument.");
|
2004-07-11 22:20:08 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
p->mode |= enable ? PLAYBACK : 0;
|
|
|
|
|
|
|
|
|
|
if ((p->mode & (RECORD|PLAYBACK)) == 0) {
|
2006-08-18 21:38:40 +00:00
|
|
|
pa_log("neither playback nor recording enabled for protocol.");
|
2004-07-11 22:20:08 +00:00
|
|
|
goto fail;
|
|
|
|
|
}
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-03 23:35:12 +00:00
|
|
|
pa_socket_server_set_callback(p->server, on_connection, p);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-06-08 23:54:24 +00:00
|
|
|
return p;
|
2004-07-11 22:20:08 +00:00
|
|
|
|
|
|
|
|
fail:
|
|
|
|
|
if (p)
|
|
|
|
|
pa_protocol_simple_free(p);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
return NULL;
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2006-01-11 01:17:39 +00:00
|
|
|
void pa_protocol_simple_free(pa_protocol_simple *p) {
|
2007-10-28 19:13:50 +00:00
|
|
|
connection *c;
|
|
|
|
|
pa_assert(p);
|
2004-06-08 23:54:24 +00:00
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
if (p->connections) {
|
|
|
|
|
while((c = pa_idxset_first(p->connections, NULL)))
|
2007-10-28 19:13:50 +00:00
|
|
|
connection_unlink(c);
|
2007-01-04 13:43:45 +00:00
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
pa_idxset_free(p->connections, NULL, NULL);
|
|
|
|
|
}
|
2004-07-03 00:19:17 +00:00
|
|
|
|
2004-07-11 22:20:08 +00:00
|
|
|
if (p->server)
|
2004-08-15 00:02:26 +00:00
|
|
|
pa_socket_server_unref(p->server);
|
2007-10-28 19:13:50 +00:00
|
|
|
|
2004-08-04 16:39:30 +00:00
|
|
|
pa_xfree(p);
|
2004-06-08 23:54:24 +00:00
|
|
|
}
|