2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2014-01-13 22:30:36 +01:00
|
|
|
* Copyright (C) 2003-2014 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"
|
2013-04-17 00:12:41 +02:00
|
|
|
#include "FifoOutputPlugin.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "ConfigError.hxx"
|
2013-07-30 08:34:10 +02:00
|
|
|
#include "OutputAPI.hxx"
|
2013-05-12 15:03:42 +02:00
|
|
|
#include "Timer.hxx"
|
2013-10-17 21:59:35 +02:00
|
|
|
#include "fs/AllocatedPath.hxx"
|
2013-08-07 19:54:38 +02:00
|
|
|
#include "fs/FileSystem.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Error.hxx"
|
|
|
|
#include "util/Domain.hxx"
|
2013-09-27 22:31:24 +02:00
|
|
|
#include "Log.hxx"
|
2010-05-20 06:59:25 +02:00
|
|
|
#include "open.h"
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2008-10-08 10:49:29 +02:00
|
|
|
#include <sys/stat.h>
|
2009-01-03 14:51:34 +01:00
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2008-10-08 10:49:29 +02:00
|
|
|
|
2007-06-13 16:15:30 +02:00
|
|
|
#define FIFO_BUFFER_SIZE 65536 /* pipe capacity on Linux >= 2.6.11 */
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
struct FifoOutput {
|
2011-09-16 23:31:48 +02:00
|
|
|
struct audio_output base;
|
|
|
|
|
2013-10-17 21:59:35 +02:00
|
|
|
AllocatedPath path;
|
2013-08-07 19:54:38 +02:00
|
|
|
std::string path_utf8;
|
|
|
|
|
2007-06-13 16:15:30 +02:00
|
|
|
int input;
|
|
|
|
int output;
|
2009-02-25 19:53:27 +01:00
|
|
|
bool created;
|
2013-05-12 15:03:42 +02:00
|
|
|
Timer *timer;
|
2013-04-17 00:12:41 +02:00
|
|
|
|
|
|
|
FifoOutput()
|
2013-10-17 21:59:35 +02:00
|
|
|
:path(AllocatedPath::Null()), input(-1), output(-1),
|
|
|
|
created(false) {}
|
2013-04-17 00:12:41 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool Initialize(const config_param ¶m, Error &error) {
|
2013-04-17 00:12:41 +02:00
|
|
|
return ao_base_init(&base, &fifo_output_plugin, param,
|
2013-08-10 18:02:44 +02:00
|
|
|
error);
|
2013-04-17 00:12:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void Deinitialize() {
|
|
|
|
ao_base_finish(&base);
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool Create(Error &error);
|
|
|
|
bool Check(Error &error);
|
2013-04-17 00:12:41 +02:00
|
|
|
void Delete();
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
bool Open(Error &error);
|
2013-04-17 00:12:41 +02:00
|
|
|
void Close();
|
2009-02-25 19:53:24 +01:00
|
|
|
};
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
static constexpr Domain fifo_output_domain("fifo_output");
|
2009-02-26 22:04:59 +01:00
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
inline void
|
|
|
|
FifoOutput::Delete()
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatDebug(fifo_output_domain,
|
|
|
|
"Removing FIFO \"%s\"", path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
if (!RemoveFile(path)) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatErrno(fifo_output_domain,
|
|
|
|
"Could not remove FIFO \"%s\"",
|
|
|
|
path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
created = false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
void
|
|
|
|
FifoOutput::Close()
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-04-17 00:12:41 +02:00
|
|
|
if (input >= 0) {
|
|
|
|
close(input);
|
|
|
|
input = -1;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
if (output >= 0) {
|
|
|
|
close(output);
|
|
|
|
output = -1;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
struct stat st;
|
|
|
|
if (created && StatFile(path, st))
|
2013-04-17 00:12:41 +02:00
|
|
|
Delete();
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
inline bool
|
2013-08-10 18:02:44 +02:00
|
|
|
FifoOutput::Create(Error &error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-08-07 19:54:38 +02:00
|
|
|
if (!MakeFifo(path, 0666)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Couldn't create FIFO \"%s\"",
|
|
|
|
path_utf8.c_str());
|
2009-02-25 19:53:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
created = true;
|
2009-02-25 19:53:27 +01:00
|
|
|
return true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
inline bool
|
2013-08-10 18:02:44 +02:00
|
|
|
FifoOutput::Check(Error &error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
|
|
|
struct stat st;
|
2013-08-07 19:54:38 +02:00
|
|
|
if (!StatFile(path, st)) {
|
2007-06-13 16:15:30 +02:00
|
|
|
if (errno == ENOENT) {
|
|
|
|
/* Path doesn't exist */
|
2013-08-10 18:02:44 +02:00
|
|
|
return Create(error);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Failed to stat FIFO \"%s\"",
|
|
|
|
path_utf8.c_str());
|
2009-02-25 19:53:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!S_ISFIFO(st.st_mode)) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.Format(fifo_output_domain,
|
|
|
|
"\"%s\" already exists, but is not a FIFO",
|
|
|
|
path_utf8.c_str());
|
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
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
inline bool
|
2013-08-10 18:02:44 +02:00
|
|
|
FifoOutput::Open(Error &error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!Check(error))
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
input = OpenFile(path, O_RDONLY|O_NONBLOCK|O_BINARY, 0);
|
2013-04-17 00:12:41 +02:00
|
|
|
if (input < 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Could not open FIFO \"%s\" for reading",
|
|
|
|
path_utf8.c_str());
|
2013-04-17 00:12:41 +02:00
|
|
|
Close();
|
2008-10-29 20:40:27 +01:00
|
|
|
return false;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
output = OpenFile(path, O_WRONLY|O_NONBLOCK|O_BINARY, 0);
|
2013-04-17 00:12:41 +02:00
|
|
|
if (output < 0) {
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Could not open FIFO \"%s\" for writing",
|
|
|
|
path_utf8.c_str());
|
2013-04-17 00:12:41 +02:00
|
|
|
Close();
|
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
|
|
|
}
|
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
static bool
|
2013-08-10 18:02:44 +02:00
|
|
|
fifo_open(FifoOutput *fd, Error &error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-08-10 18:02:44 +02:00
|
|
|
return fd->Open(error);
|
2013-04-17 00:12:41 +02:00
|
|
|
}
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
static struct audio_output *
|
2013-08-10 18:02:44 +02:00
|
|
|
fifo_output_init(const config_param ¶m, Error &error)
|
2013-04-17 00:12:41 +02:00
|
|
|
{
|
2013-08-07 19:54:38 +02:00
|
|
|
FifoOutput *fd = new FifoOutput();
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
fd->path = param.GetBlockPath("path", error);
|
2013-08-07 19:54:38 +02:00
|
|
|
if (fd->path.IsNull()) {
|
|
|
|
delete fd;
|
2013-08-10 18:02:44 +02:00
|
|
|
|
|
|
|
if (!error.IsDefined())
|
|
|
|
error.Set(config_domain,
|
|
|
|
"No \"path\" parameter specified");
|
2013-04-17 00:12:41 +02:00
|
|
|
return nullptr;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2013-08-07 19:54:38 +02:00
|
|
|
fd->path_utf8 = fd->path.ToUTF8();
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!fd->Initialize(param, error)) {
|
2013-04-17 00:12:41 +02:00
|
|
|
delete fd;
|
|
|
|
return nullptr;
|
2011-09-16 23:31:48 +02:00
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
if (!fifo_open(fd, error)) {
|
2013-04-17 00:12:41 +02:00
|
|
|
fd->Deinitialize();
|
|
|
|
delete fd;
|
|
|
|
return nullptr;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2011-09-16 23:31:48 +02:00
|
|
|
return &fd->base;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void
|
2011-09-16 23:31:48 +02:00
|
|
|
fifo_output_finish(struct audio_output *ao)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-04-17 00:12:41 +02:00
|
|
|
FifoOutput *fd = (FifoOutput *)ao;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
fd->Close();
|
|
|
|
fd->Deinitialize();
|
|
|
|
delete fd;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static bool
|
2013-08-03 21:00:50 +02:00
|
|
|
fifo_output_open(struct audio_output *ao, AudioFormat &audio_format,
|
2013-08-10 18:02:44 +02:00
|
|
|
gcc_unused Error &error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-04-17 00:12:41 +02:00
|
|
|
FifoOutput *fd = (FifoOutput *)ao;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-08-03 21:00:50 +02:00
|
|
|
fd->timer = new Timer(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
|
2011-09-16 23:31:48 +02:00
|
|
|
fifo_output_close(struct audio_output *ao)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-04-17 00:12:41 +02:00
|
|
|
FifoOutput *fd = (FifoOutput *)ao;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
delete fd->timer;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2009-02-25 19:53:24 +01:00
|
|
|
static void
|
2011-09-16 23:31:48 +02:00
|
|
|
fifo_output_cancel(struct audio_output *ao)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-04-17 00:12:41 +02:00
|
|
|
FifoOutput *fd = (FifoOutput *)ao;
|
2007-06-13 16:15:30 +02:00
|
|
|
char buf[FIFO_BUFFER_SIZE];
|
|
|
|
int bytes = 1;
|
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
fd->timer->Reset();
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
while (bytes > 0 && errno != EINTR)
|
|
|
|
bytes = read(fd->input, buf, FIFO_BUFFER_SIZE);
|
|
|
|
|
|
|
|
if (bytes < 0 && errno != EAGAIN) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatErrno(fifo_output_domain,
|
|
|
|
"Flush of FIFO \"%s\" failed",
|
|
|
|
fd->path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-13 21:12:48 +01:00
|
|
|
static unsigned
|
|
|
|
fifo_output_delay(struct audio_output *ao)
|
|
|
|
{
|
2013-04-17 00:12:41 +02:00
|
|
|
FifoOutput *fd = (FifoOutput *)ao;
|
2011-12-13 21:12:48 +01:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
return fd->timer->IsStarted()
|
|
|
|
? fd->timer->GetDelay()
|
2011-12-13 21:12:48 +01:00
|
|
|
: 0;
|
|
|
|
}
|
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
static size_t
|
2011-09-16 23:31:48 +02:00
|
|
|
fifo_output_play(struct audio_output *ao, const void *chunk, size_t size,
|
2013-08-10 18:02:44 +02:00
|
|
|
Error &error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2013-04-17 00:12:41 +02:00
|
|
|
FifoOutput *fd = (FifoOutput *)ao;
|
2008-04-12 06:15:52 +02:00
|
|
|
ssize_t bytes;
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-05-12 15:03:42 +02:00
|
|
|
if (!fd->timer->IsStarted())
|
|
|
|
fd->timer->Start();
|
|
|
|
fd->timer->Add(size);
|
2007-06-13 16:15:30 +02:00
|
|
|
|
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 */
|
2011-09-16 23:31:48 +02:00
|
|
|
fifo_output_cancel(&fd->base);
|
2007-06-13 16:15:30 +02:00
|
|
|
continue;
|
|
|
|
case EINTR:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-08-10 18:02:44 +02:00
|
|
|
error.FormatErrno("Failed to write to FIFO %s",
|
|
|
|
fd->path_utf8.c_str());
|
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 = {
|
2013-04-17 00:12:41 +02:00
|
|
|
"fifo",
|
|
|
|
nullptr,
|
|
|
|
fifo_output_init,
|
|
|
|
fifo_output_finish,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
|
|
|
fifo_output_open,
|
|
|
|
fifo_output_close,
|
|
|
|
fifo_output_delay,
|
|
|
|
nullptr,
|
|
|
|
fifo_output_play,
|
|
|
|
nullptr,
|
|
|
|
fifo_output_cancel,
|
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2007-06-13 16:15:30 +02:00
|
|
|
};
|