2007-06-13 16:15:30 +02:00
|
|
|
/* the Music Player Daemon (MPD)
|
|
|
|
* Copyright (C) 2003-2007 by Warren Dukes (warren.dukes@gmail.com)
|
|
|
|
* This project's homepage is: http://www.musicpd.org
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
2008-09-07 22:41:17 +02:00
|
|
|
#include "../output_api.h"
|
2007-06-13 16:15:30 +02:00
|
|
|
#include "../utils.h"
|
|
|
|
#include "../timer.h"
|
|
|
|
|
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>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
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 */
|
|
|
|
|
|
|
|
typedef struct _FifoData {
|
|
|
|
char *path;
|
|
|
|
int input;
|
|
|
|
int output;
|
|
|
|
int created;
|
|
|
|
Timer *timer;
|
|
|
|
} FifoData;
|
|
|
|
|
2008-01-26 13:46:09 +01:00
|
|
|
static FifoData *newFifoData(void)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
|
|
|
FifoData *ret;
|
|
|
|
|
|
|
|
ret = xmalloc(sizeof(FifoData));
|
|
|
|
|
|
|
|
ret->path = NULL;
|
|
|
|
ret->input = -1;
|
|
|
|
ret->output = -1;
|
|
|
|
ret->created = 0;
|
|
|
|
ret->timer = NULL;
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void freeFifoData(FifoData *fd)
|
|
|
|
{
|
|
|
|
if (fd->path)
|
|
|
|
free(fd->path);
|
|
|
|
|
|
|
|
if (fd->timer)
|
|
|
|
timer_free(fd->timer);
|
|
|
|
|
|
|
|
free(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void removeFifo(FifoData *fd)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd->created = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void closeFifo(FifoData *fd)
|
|
|
|
{
|
|
|
|
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))
|
|
|
|
removeFifo(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int makeFifo(FifoData *fd)
|
|
|
|
{
|
|
|
|
if (mkfifo(fd->path, 0666) < 0) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("Couldn't create FIFO \"%s\": %s",
|
|
|
|
fd->path, strerror(errno));
|
2007-06-13 16:15:30 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd->created = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int checkFifo(FifoData *fd)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(fd->path, &st) < 0) {
|
|
|
|
if (errno == ENOENT) {
|
|
|
|
/* Path doesn't exist */
|
|
|
|
return makeFifo(fd);
|
|
|
|
}
|
|
|
|
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("Failed to stat FIFO \"%s\": %s",
|
|
|
|
fd->path, strerror(errno));
|
2007-06-13 16:15:30 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!S_ISFIFO(st.st_mode)) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("\"%s\" already exists, but is not a FIFO",
|
|
|
|
fd->path);
|
2007-06-13 16:15:30 +02:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static bool openFifo(FifoData *fd)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
|
|
|
if (checkFifo(fd) < 0)
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
fd->input = open(fd->path, O_RDONLY|O_NONBLOCK);
|
|
|
|
if (fd->input < 0) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("Could not open FIFO \"%s\" for reading: %s",
|
|
|
|
fd->path, strerror(errno));
|
2007-06-13 16:15:30 +02:00
|
|
|
closeFifo(fd);
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fd->output = open(fd->path, O_WRONLY|O_NONBLOCK);
|
|
|
|
if (fd->output < 0) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("Could not open FIFO \"%s\" for writing: %s",
|
|
|
|
fd->path, strerror(errno));
|
2007-06-13 16:15:30 +02:00
|
|
|
closeFifo(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-01-01 18:08:29 +01:00
|
|
|
static void *fifo_initDriver(G_GNUC_UNUSED struct audio_output *ao,
|
|
|
|
G_GNUC_UNUSED const struct audio_format *audio_format,
|
2008-09-24 07:20:55 +02:00
|
|
|
ConfigParam *param)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
|
|
|
FifoData *fd;
|
2007-06-13 17:37:46 +02:00
|
|
|
BlockParam *blockParam;
|
|
|
|
char *path;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2007-06-13 17:37:46 +02:00
|
|
|
blockParam = getBlockParam(param, "path");
|
|
|
|
if (!blockParam) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_error("No \"path\" parameter specified for fifo output "
|
|
|
|
"defined at line %i", param->line);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2007-06-13 17:37:46 +02:00
|
|
|
path = parsePath(blockParam->value);
|
|
|
|
if (!path) {
|
2008-12-29 17:29:31 +01:00
|
|
|
g_error("Could not parse \"path\" parameter for fifo output "
|
|
|
|
"at line %i", blockParam->line);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fd = newFifoData();
|
2007-06-13 17:37:46 +02:00
|
|
|
fd->path = path;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
if (!openFifo(fd)) {
|
2007-06-13 16:15:30 +02:00
|
|
|
freeFifoData(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
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:55 +02:00
|
|
|
static void fifo_finishDriver(void *data)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2008-09-24 07:20:55 +02:00
|
|
|
FifoData *fd = (FifoData *)data;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
closeFifo(fd);
|
|
|
|
freeFifoData(fd);
|
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static bool fifo_openDevice(void *data,
|
2008-09-24 07:20:36 +02:00
|
|
|
struct audio_format *audio_format)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2008-09-24 07:20:55 +02:00
|
|
|
FifoData *fd = (FifoData *)data;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
if (fd->timer)
|
|
|
|
timer_free(fd->timer);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:55 +02:00
|
|
|
static void fifo_closeDevice(void *data)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2008-09-24 07:20:55 +02:00
|
|
|
FifoData *fd = (FifoData *)data;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
if (fd->timer) {
|
|
|
|
timer_free(fd->timer);
|
|
|
|
fd->timer = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-24 07:20:55 +02:00
|
|
|
static void fifo_dropBufferedAudio(void *data)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2008-09-24 07:20:55 +02:00
|
|
|
FifoData *fd = (FifoData *)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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
static bool
|
|
|
|
fifo_playAudio(void *data, const char *playChunk, size_t size)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2008-09-24 07:20:55 +02:00
|
|
|
FifoData *fd = (FifoData *)data;
|
2008-04-12 06:15:52 +02:00
|
|
|
size_t offset = 0;
|
|
|
|
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);
|
|
|
|
|
|
|
|
while (size) {
|
|
|
|
bytes = write(fd->output, playChunk + offset, size);
|
|
|
|
if (bytes < 0) {
|
|
|
|
switch (errno) {
|
|
|
|
case EAGAIN:
|
|
|
|
/* The pipe is full, so empty it */
|
2008-09-24 07:20:55 +02:00
|
|
|
fifo_dropBufferedAudio(fd);
|
2007-06-13 16:15:30 +02:00
|
|
|
continue;
|
|
|
|
case EINTR:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2008-12-29 17:29:31 +01:00
|
|
|
g_warning("Closing FIFO output \"%s\" due to write error: %s",
|
|
|
|
fd->path, strerror(errno));
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
size -= bytes;
|
|
|
|
offset += bytes;
|
|
|
|
}
|
|
|
|
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2008-09-08 11:43:38 +02:00
|
|
|
const struct audio_output_plugin fifoPlugin = {
|
2008-09-29 15:55:17 +02:00
|
|
|
.name = "fifo",
|
|
|
|
.init = fifo_initDriver,
|
|
|
|
.finish = fifo_finishDriver,
|
|
|
|
.open = fifo_openDevice,
|
|
|
|
.play = fifo_playAudio,
|
|
|
|
.cancel = fifo_dropBufferedAudio,
|
|
|
|
.close = fifo_closeDevice,
|
2007-06-13 16:15:30 +02:00
|
|
|
};
|