2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2011-01-29 10:13:54 +01:00
|
|
|
* Copyright (C) 2003-2011 The Music Player Daemon Project
|
2009-03-13 18:43:16 +01:00
|
|
|
* http://www.musicpd.org
|
2007-06-13 16:15:30 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but 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.
|
2009-03-13 18:43:16 +01:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-06-13 16:15:30 +02:00
|
|
|
*/
|
|
|
|
|
2009-11-12 09:12:38 +01:00
|
|
|
#include "config.h"
|
2009-10-22 19:23:30 +02:00
|
|
|
#include "output_api.h"
|
|
|
|
#include "utils.h"
|
|
|
|
#include "timer.h"
|
2009-11-07 18:55:16 +01:00
|
|
|
#include "fd_util.h"
|
2010-05-20 06:59:25 +02:00
|
|
|
#include "open.h"
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-01-01 18:08:29 +01:00
|
|
|
#include <glib.h>
|
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
2009-01-03 14:51:34 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2008-12-29 17:29:31 +01:00
|
|
|
#undef G_LOG_DOMAIN
|
|
|
|
#define G_LOG_DOMAIN "fifo"
|
|
|
|
|
2007-06-13 16:15:30 +02:00
|
|
|
#define FIFO_BUFFER_SIZE 65536 /* pipe capacity on Linux >= 2.6.11 */
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data {
|
2007-06-13 16:15:30 +02:00
|
|
|
char *path;
|
|
|
|
int input;
|
|
|
|
int output;
|
2009-02-25 19:53:27 +01:00
|
|
|
bool created;
|
2011-07-25 21:55:43 +02:00
|
|
|
struct timer *timer;
|
2009-02-25 19:53:24 +01:00
|
|
|
};
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-02-26 22:04:59 +01:00
|
|
|
/**
|
|
|
|
* The quark used for GError.domain.
|
|
|
|
*/
|
|
|
|
static inline GQuark
|
|
|
|
fifo_output_quark(void)
|
|
|
|
{
|
|
|
|
return g_quark_from_static_string("fifo_output");
|
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static struct fifo_data *fifo_data_new(void)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data *ret;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
ret = g_new(struct fifo_data, 1);
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
ret->path = NULL;
|
|
|
|
ret->input = -1;
|
|
|
|
ret->output = -1;
|
2009-02-25 19:53:27 +01:00
|
|
|
ret->created = false;
|
2009-01-03 14:51:34 +01:00
|
|
|
|
2007-06-13 16:15:30 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void fifo_data_free(struct fifo_data *fd)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-01-03 14:51:34 +01:00
|
|
|
g_free(fd->path);
|
|
|
|
g_free(fd);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void fifo_delete(struct fifo_data *fd)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2008-12-29 17:29:31 +01:00
|
|
|
g_debug("Removing FIFO \"%s\"", fd->path);
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
if (unlink(fd->path) < 0) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("Could not remove FIFO \"%s\": %s",
|
|
|
|
fd->path, strerror(errno));
|
2007-06-13 16:15:30 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:27 +01:00
|
|
|
fd->created = false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void
|
|
|
|
fifo_close(struct fifo_data *fd)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (fd->input >= 0) {
|
|
|
|
close(fd->input);
|
|
|
|
fd->input = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd->output >= 0) {
|
|
|
|
close(fd->output);
|
|
|
|
fd->output = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fd->created && (stat(fd->path, &st) == 0))
|
2009-02-25 19:53:24 +01:00
|
|
|
fifo_delete(fd);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:27 +01:00
|
|
|
static bool
|
2009-02-26 22:04:59 +01:00
|
|
|
fifo_make(struct fifo_data *fd, GError **error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
|
|
|
if (mkfifo(fd->path, 0666) < 0) {
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error, fifo_output_quark(), errno,
|
|
|
|
"Couldn't create FIFO \"%s\": %s",
|
|
|
|
fd->path, strerror(errno));
|
2009-02-25 19:53:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:27 +01:00
|
|
|
fd->created = true;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-02-25 19:53:27 +01:00
|
|
|
return true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:27 +01:00
|
|
|
static bool
|
2009-02-26 22:04:59 +01:00
|
|
|
fifo_check(struct fifo_data *fd, GError **error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(fd->path, &st) < 0) {
|
|
|
|
if (errno == ENOENT) {
|
|
|
|
/* Path doesn't exist */
|
2009-02-26 22:04:59 +01:00
|
|
|
return fifo_make(fd, error);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error, fifo_output_quark(), errno,
|
|
|
|
"Failed to stat FIFO \"%s\": %s",
|
|
|
|
fd->path, strerror(errno));
|
2009-02-25 19:53:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!S_ISFIFO(st.st_mode)) {
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error, fifo_output_quark(), 0,
|
|
|
|
"\"%s\" already exists, but is not a FIFO",
|
|
|
|
fd->path);
|
2009-02-25 19:53:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:27 +01:00
|
|
|
return true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static bool
|
2009-02-26 22:04:59 +01:00
|
|
|
fifo_open(struct fifo_data *fd, GError **error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-26 22:04:59 +01:00
|
|
|
if (!fifo_check(fd, error))
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2010-05-20 06:59:25 +02:00
|
|
|
fd->input = open_cloexec(fd->path, O_RDONLY|O_NONBLOCK|O_BINARY, 0);
|
2007-06-13 16:15:30 +02:00
|
|
|
if (fd->input < 0) {
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error, fifo_output_quark(), errno,
|
|
|
|
"Could not open FIFO \"%s\" for reading: %s",
|
|
|
|
fd->path, strerror(errno));
|
2009-02-25 19:53:24 +01:00
|
|
|
fifo_close(fd);
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2010-05-20 06:59:25 +02:00
|
|
|
fd->output = open_cloexec(fd->path, O_WRONLY|O_NONBLOCK|O_BINARY, 0);
|
2007-06-13 16:15:30 +02:00
|
|
|
if (fd->output < 0) {
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error, fifo_output_quark(), errno,
|
|
|
|
"Could not open FIFO \"%s\" for writing: %s",
|
|
|
|
fd->path, strerror(errno));
|
2009-02-25 19:53:24 +01:00
|
|
|
fifo_close(fd);
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 18:34:02 +01:00
|
|
|
static void *
|
2009-02-25 19:53:24 +01:00
|
|
|
fifo_output_init(G_GNUC_UNUSED const struct audio_format *audio_format,
|
2009-02-26 22:04:59 +01:00
|
|
|
const struct config_param *param,
|
|
|
|
GError **error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data *fd;
|
2009-01-18 19:37:27 +01:00
|
|
|
char *value, *path;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-01-18 19:37:27 +01:00
|
|
|
value = config_dup_block_string(param, "path", NULL);
|
2009-02-26 22:04:59 +01:00
|
|
|
if (value == NULL) {
|
|
|
|
g_set_error(error, fifo_output_quark(), errno,
|
|
|
|
"No \"path\" parameter specified");
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2011-09-09 22:35:15 +02:00
|
|
|
path = parsePath(value, error);
|
2009-01-18 19:37:27 +01:00
|
|
|
g_free(value);
|
2007-06-13 17:37:46 +02:00
|
|
|
if (!path) {
|
2011-09-09 22:35:15 +02:00
|
|
|
g_prefix_error(error, "Invalid path in line %i: ",
|
|
|
|
param->line);
|
2009-02-26 22:04:59 +01:00
|
|
|
return NULL;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
fd = fifo_data_new();
|
2007-06-13 17:37:46 +02:00
|
|
|
fd->path = path;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-02-26 22:04:59 +01:00
|
|
|
if (!fifo_open(fd, error)) {
|
2009-02-25 19:53:24 +01:00
|
|
|
fifo_data_free(fd);
|
2008-09-24 07:20:55 +02:00
|
|
|
return NULL;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:55 +02:00
|
|
|
return fd;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void
|
|
|
|
fifo_output_finish(void *data)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data *fd = (struct fifo_data *)data;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
fifo_close(fd);
|
|
|
|
fifo_data_free(fd);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static bool
|
2009-02-26 22:04:59 +01:00
|
|
|
fifo_output_open(void *data, struct audio_format *audio_format,
|
|
|
|
G_GNUC_UNUSED GError **error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data *fd = (struct fifo_data *)data;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2008-09-24 07:20:36 +02:00
|
|
|
fd->timer = timer_new(audio_format);
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void
|
|
|
|
fifo_output_close(void *data)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data *fd = (struct fifo_data *)data;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-02-25 19:09:38 +01:00
|
|
|
timer_free(fd->timer);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void
|
|
|
|
fifo_output_cancel(void *data)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data *fd = (struct fifo_data *)data;
|
2007-06-13 16:15:30 +02:00
|
|
|
char buf[FIFO_BUFFER_SIZE];
|
|
|
|
int bytes = 1;
|
|
|
|
|
|
|
|
timer_reset(fd->timer);
|
|
|
|
|
|
|
|
while (bytes > 0 && errno != EINTR)
|
|
|
|
bytes = read(fd->input, buf, FIFO_BUFFER_SIZE);
|
|
|
|
|
|
|
|
if (bytes < 0 && errno != EAGAIN) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("Flush of FIFO \"%s\" failed: %s",
|
|
|
|
fd->path, strerror(errno));
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
static size_t
|
2009-02-26 22:04:59 +01:00
|
|
|
fifo_output_play(void *data, const void *chunk, size_t size,
|
|
|
|
GError **error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2009-02-25 19:53:24 +01:00
|
|
|
struct fifo_data *fd = (struct fifo_data *)data;
|
2008-04-12 06:15:52 +02:00
|
|
|
ssize_t bytes;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
if (!fd->timer->started)
|
|
|
|
timer_start(fd->timer);
|
|
|
|
else
|
|
|
|
timer_sync(fd->timer);
|
|
|
|
|
|
|
|
timer_add(fd->timer, size);
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
while (true) {
|
2009-02-23 09:34:26 +01:00
|
|
|
bytes = write(fd->output, chunk, size);
|
2009-02-23 09:29:56 +01:00
|
|
|
if (bytes > 0)
|
|
|
|
return (size_t)bytes;
|
|
|
|
|
2007-06-13 16:15:30 +02:00
|
|
|
if (bytes < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case EAGAIN:
|
|
|
|
/* The pipe is full, so empty it */
|
2009-02-25 19:53:24 +01:00
|
|
|
fifo_output_cancel(fd);
|
2007-06-13 16:15:30 +02:00
|
|
|
continue;
|
|
|
|
case EINTR:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2009-02-26 22:04:59 +01:00
|
|
|
g_set_error(error, fifo_output_quark(), errno,
|
|
|
|
"Failed to write to FIFO %s: %s",
|
|
|
|
fd->path, g_strerror(errno));
|
2009-02-23 09:29:56 +01:00
|
|
|
return 0;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
const struct audio_output_plugin fifo_output_plugin = {
|
2008-09-29 15:55:17 +02:00
|
|
|
.name = "fifo",
|
2009-02-25 19:53:24 +01:00
|
|
|
.init = fifo_output_init,
|
|
|
|
.finish = fifo_output_finish,
|
|
|
|
.open = fifo_output_open,
|
|
|
|
.close = fifo_output_close,
|
|
|
|
.play = fifo_output_play,
|
|
|
|
.cancel = fifo_output_cancel,
|
2007-06-13 16:15:30 +02:00
|
|
|
};
|