aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutputs/audioOutput_fifo.c
blob: d7b83fd7d25a961b8c4243cabd8113703df235db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
/* 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
 */

#include "../audioOutput.h"
#include "../os_compat.h"

#ifdef HAVE_FIFO

#include "../log.h"
#include "../conf.h"
#include "../utils.h"
#include "../timer.h"

#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;

static FifoData *newFifoData(void)
{
	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)
{
	DEBUG("Removing FIFO \"%s\"\n", fd->path);

	if (unlink(fd->path) < 0) {
		ERROR("Could not remove FIFO \"%s\": %s\n",
		      fd->path, strerror(errno));
		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) {
		ERROR("Couldn't create FIFO \"%s\": %s\n",
		      fd->path, strerror(errno));
		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);
		}

		ERROR("Failed to stat FIFO \"%s\": %s\n",
		      fd->path, strerror(errno));
		return -1;
	}

	if (!S_ISFIFO(st.st_mode)) {
		ERROR("\"%s\" already exists, but is not a FIFO\n", fd->path);
		return -1;
	}

	return 0;
}

static int openFifo(FifoData *fd)
{
	if (checkFifo(fd) < 0)
		return -1;

	fd->input = open(fd->path, O_RDONLY|O_NONBLOCK);
	if (fd->input < 0) {
		ERROR("Could not open FIFO \"%s\" for reading: %s\n",
		      fd->path, strerror(errno));
		closeFifo(fd);
		return -1;
	}

	fd->output = open(fd->path, O_WRONLY|O_NONBLOCK);
	if (fd->output < 0) {
		ERROR("Could not open FIFO \"%s\" for writing: %s\n",
		      fd->path, strerror(errno));
		closeFifo(fd);
		return -1;
	}

	return 0;
}

static int fifo_initDriver(AudioOutput *audioOutput, ConfigParam *param)
{
	FifoData *fd;
	BlockParam *blockParam;
	char *path;

	blockParam = getBlockParam(param, "path");
	if (!blockParam) {
		FATAL("No \"path\" parameter specified for fifo output "
		      "defined at line %i\n", param->line);
	}

	path = parsePath(blockParam->value);
	if (!path) {
		FATAL("Could not parse \"path\" parameter for fifo output "
		      "at line %i\n", blockParam->line);
	}

	fd = newFifoData();
	fd->path = path;
	audioOutput->data = fd;

	if (openFifo(fd) < 0) {
		freeFifoData(fd);
		return -1;
	}

	return 0;
}

static void fifo_finishDriver(AudioOutput *audioOutput)
{
	FifoData *fd = (FifoData *)audioOutput->data;

	closeFifo(fd);
	freeFifoData(fd);
}

static int fifo_openDevice(AudioOutput *audioOutput)
{
	FifoData *fd = (FifoData *)audioOutput->data;

	if (fd->timer)
		timer_free(fd->timer);

	fd->timer = timer_new(&audioOutput->outAudioFormat);

	audioOutput->open = 1;

	return 0;
}

static void fifo_closeDevice(AudioOutput *audioOutput)
{
	FifoData *fd = (FifoData *)audioOutput->data;

	if (fd->timer) {
		timer_free(fd->timer);
		fd->timer = NULL;
	}

	audioOutput->open = 0;
}

static void fifo_dropBufferedAudio(AudioOutput *audioOutput)
{
	FifoData *fd = (FifoData *)audioOutput->data;
	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) {
		WARNING("Flush of FIFO \"%s\" failed: %s\n",
		        fd->path, strerror(errno));
	}
}

static int fifo_playAudio(AudioOutput *audioOutput, char *playChunk, int size)
{
	FifoData *fd = (FifoData *)audioOutput->data;
	int offset = 0;
	int bytes;

	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 */
				fifo_dropBufferedAudio(audioOutput);
				continue;
			case EINTR:
				continue;
			}

			ERROR("Closing FIFO output \"%s\" due to write error: "
			      "%s\n", fd->path, strerror(errno));
			fifo_closeDevice(audioOutput);
			return -1;
		}

		size -= bytes;
		offset += bytes;
	}

	return 0;
}

AudioOutputPlugin fifoPlugin = {
	"fifo",
	NULL, /* testDefaultDeviceFunc */
	fifo_initDriver,
	fifo_finishDriver,
	fifo_openDevice,
	fifo_playAudio,
	fifo_dropBufferedAudio,
	fifo_closeDevice,
	NULL, /* sendMetadataFunc */
};

#else /* HAVE_FIFO */

DISABLED_AUDIO_OUTPUT_PLUGIN(fifoPlugin)

#endif /* !HAVE_FIFO */