2009-03-13 18:43:16 +01:00
|
|
|
/*
|
2016-02-26 17:54:05 +01:00
|
|
|
* Copyright 2003-2016 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"
|
2014-01-23 23:49:50 +01:00
|
|
|
#include "../OutputAPI.hxx"
|
2015-01-28 19:43:37 +01:00
|
|
|
#include "../Wrapper.hxx"
|
2014-02-19 09:00:29 +01: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"
|
2015-02-28 20:42:50 +01:00
|
|
|
#include "fs/FileInfo.hxx"
|
2013-08-10 18:02:44 +02:00
|
|
|
#include "util/Domain.hxx"
|
2016-11-05 15:13:14 +01:00
|
|
|
#include "util/RuntimeError.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
|
|
|
|
2015-01-17 19:16:18 +01:00
|
|
|
class FifoOutput {
|
|
|
|
friend struct AudioOutputWrapper<FifoOutput>;
|
|
|
|
|
2014-01-28 11:34:09 +01:00
|
|
|
AudioOutput base;
|
2011-09-16 23:31:48 +02:00
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
const AllocatedPath path;
|
2013-08-07 19:54:38 +02:00
|
|
|
std::string path_utf8;
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
int input = -1;
|
|
|
|
int output = -1;
|
|
|
|
bool created = false;
|
2013-05-12 15:03:42 +02:00
|
|
|
Timer *timer;
|
2013-04-17 00:12:41 +02:00
|
|
|
|
2015-01-17 19:16:18 +01:00
|
|
|
public:
|
2016-11-05 15:13:14 +01:00
|
|
|
FifoOutput(const ConfigBlock &block);
|
2013-04-17 00:12:41 +02:00
|
|
|
|
2015-01-28 19:43:37 +01:00
|
|
|
~FifoOutput() {
|
2015-08-06 09:49:00 +02:00
|
|
|
CloseFifo();
|
2015-01-28 19:43:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static FifoOutput *Create(const ConfigBlock &block, Error &error);
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
void Create();
|
|
|
|
void Check();
|
2013-04-17 00:12:41 +02:00
|
|
|
void Delete();
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
void OpenFifo();
|
2015-08-06 09:49:00 +02:00
|
|
|
void CloseFifo();
|
2015-01-28 19:43:37 +01:00
|
|
|
|
2015-08-06 09:50:02 +02:00
|
|
|
bool Open(AudioFormat &audio_format, Error &error);
|
|
|
|
void Close();
|
|
|
|
|
2015-01-28 19:43:37 +01:00
|
|
|
unsigned Delay() const;
|
|
|
|
size_t Play(const void *chunk, size_t size, Error &error);
|
|
|
|
void Cancel();
|
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
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
FifoOutput::FifoOutput(const ConfigBlock &block)
|
|
|
|
:base(fifo_output_plugin, block),
|
|
|
|
path(block.GetPath("path"))
|
|
|
|
{
|
|
|
|
if (path.IsNull())
|
|
|
|
throw std::runtime_error("No \"path\" parameter specified");
|
|
|
|
|
|
|
|
path_utf8 = path.ToUTF8();
|
|
|
|
|
|
|
|
OpenFifo();
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2016-08-15 22:25:15 +02:00
|
|
|
try {
|
|
|
|
RemoveFile(path);
|
|
|
|
} catch (const std::runtime_error &e) {
|
|
|
|
LogError(e, "Could not remove FIFO");
|
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
|
2015-08-06 09:49:00 +02:00
|
|
|
FifoOutput::CloseFifo()
|
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
|
|
|
}
|
|
|
|
|
2015-02-28 20:42:50 +01:00
|
|
|
FileInfo fi;
|
|
|
|
if (created && GetFileInfo(path, fi))
|
2013-04-17 00:12:41 +02:00
|
|
|
Delete();
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
inline void
|
|
|
|
FifoOutput::Create()
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2016-11-05 15:13:14 +01:00
|
|
|
if (!MakeFifo(path, 0666))
|
|
|
|
throw FormatErrno("Couldn't create FIFO \"%s\"",
|
2013-08-10 18:02:44 +02:00
|
|
|
path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2013-04-17 00:12:41 +02:00
|
|
|
created = true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
inline void
|
|
|
|
FifoOutput::Check()
|
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 */
|
2016-11-05 15:13:14 +01:00
|
|
|
Create();
|
|
|
|
return;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
throw FormatErrno("Failed to stat FIFO \"%s\"",
|
2013-08-10 18:02:44 +02:00
|
|
|
path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
if (!S_ISFIFO(st.st_mode))
|
|
|
|
throw FormatRuntimeError("\"%s\" already exists, but is not a FIFO",
|
|
|
|
path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
inline void
|
|
|
|
FifoOutput::OpenFifo()
|
|
|
|
try {
|
|
|
|
Check();
|
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);
|
2016-11-05 15:13:14 +01:00
|
|
|
if (input < 0)
|
|
|
|
throw FormatErrno("Could not open FIFO \"%s\" for reading",
|
2013-08-10 18:02:44 +02:00
|
|
|
path_utf8.c_str());
|
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);
|
2016-11-05 15:13:14 +01:00
|
|
|
if (output < 0)
|
|
|
|
throw FormatErrno("Could not open FIFO \"%s\" for writing",
|
2013-08-10 18:02:44 +02:00
|
|
|
path_utf8.c_str());
|
2016-11-05 15:13:14 +01:00
|
|
|
} catch (...) {
|
|
|
|
CloseFifo();
|
|
|
|
throw;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2015-01-28 19:43:37 +01:00
|
|
|
inline FifoOutput *
|
2016-11-05 15:13:14 +01:00
|
|
|
FifoOutput::Create(const ConfigBlock &block, Error &)
|
2013-04-17 00:12:41 +02:00
|
|
|
{
|
2016-11-05 15:13:14 +01:00
|
|
|
return new FifoOutput(block);
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2015-08-06 09:50:02 +02:00
|
|
|
bool
|
|
|
|
FifoOutput::Open(AudioFormat &audio_format, gcc_unused Error &error)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2015-08-06 09:50:02 +02:00
|
|
|
timer = new Timer(audio_format);
|
2008-10-29 20:40:27 +01:00
|
|
|
return true;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2015-08-06 09:50:02 +02:00
|
|
|
void
|
|
|
|
FifoOutput::Close()
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2015-08-06 09:50:02 +02:00
|
|
|
delete timer;
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
|
2015-01-28 19:43:37 +01:00
|
|
|
inline void
|
|
|
|
FifoOutput::Cancel()
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2015-01-28 19:43:37 +01:00
|
|
|
timer->Reset();
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2015-08-06 10:14:35 +02:00
|
|
|
ssize_t bytes;
|
2015-08-06 10:13:21 +02:00
|
|
|
do {
|
2015-08-06 10:15:19 +02:00
|
|
|
char buffer[16384];
|
|
|
|
bytes = read(input, buffer, sizeof(buffer));
|
2015-08-06 10:13:21 +02:00
|
|
|
} while (bytes > 0 && errno != EINTR);
|
2007-06-13 16:15:30 +02:00
|
|
|
|
|
|
|
if (bytes < 0 && errno != EAGAIN) {
|
2013-09-27 22:31:24 +02:00
|
|
|
FormatErrno(fifo_output_domain,
|
|
|
|
"Flush of FIFO \"%s\" failed",
|
2015-01-28 19:43:37 +01:00
|
|
|
path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-28 19:43:37 +01:00
|
|
|
inline unsigned
|
|
|
|
FifoOutput::Delay() const
|
2011-12-13 21:12:48 +01:00
|
|
|
{
|
2015-01-28 19:43:37 +01:00
|
|
|
return timer->IsStarted()
|
|
|
|
? timer->GetDelay()
|
2011-12-13 21:12:48 +01:00
|
|
|
: 0;
|
|
|
|
}
|
|
|
|
|
2015-01-28 19:43:37 +01:00
|
|
|
inline size_t
|
2016-11-05 15:13:14 +01:00
|
|
|
FifoOutput::Play(const void *chunk, size_t size, Error &)
|
2007-06-13 16:15:30 +02:00
|
|
|
{
|
2015-01-28 19:43:37 +01:00
|
|
|
if (!timer->IsStarted())
|
|
|
|
timer->Start();
|
|
|
|
timer->Add(size);
|
2007-06-13 16:15:30 +02:00
|
|
|
|
2009-02-23 09:29:56 +01:00
|
|
|
while (true) {
|
2015-01-28 19:43:37 +01:00
|
|
|
ssize_t bytes = write(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 */
|
2015-01-28 19:43:37 +01:00
|
|
|
Cancel();
|
2007-06-13 16:15:30 +02:00
|
|
|
continue;
|
|
|
|
case EINTR:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-11-05 15:13:14 +01:00
|
|
|
throw FormatErrno("Failed to write to FIFO %s",
|
2015-01-28 19:43:37 +01:00
|
|
|
path_utf8.c_str());
|
2007-06-13 16:15:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-28 19:43:37 +01:00
|
|
|
typedef AudioOutputWrapper<FifoOutput> Wrapper;
|
|
|
|
|
2014-01-28 11:22:27 +01:00
|
|
|
const struct AudioOutputPlugin fifo_output_plugin = {
|
2013-04-17 00:12:41 +02:00
|
|
|
"fifo",
|
|
|
|
nullptr,
|
2015-01-28 19:43:37 +01:00
|
|
|
&Wrapper::Init,
|
|
|
|
&Wrapper::Finish,
|
2013-04-17 00:12:41 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2015-08-06 09:50:02 +02:00
|
|
|
&Wrapper::Open,
|
|
|
|
&Wrapper::Close,
|
2015-01-28 19:43:37 +01:00
|
|
|
&Wrapper::Delay,
|
2013-04-17 00:12:41 +02:00
|
|
|
nullptr,
|
2015-01-28 19:43:37 +01:00
|
|
|
&Wrapper::Play,
|
2013-04-17 00:12:41 +02:00
|
|
|
nullptr,
|
2015-01-28 19:43:37 +01:00
|
|
|
&Wrapper::Cancel,
|
2013-04-17 00:12:41 +02:00
|
|
|
nullptr,
|
|
|
|
nullptr,
|
2007-06-13 16:15:30 +02:00
|
|
|
};
|