run_output.cxx 4.66 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright (C) 2003-2014 The Music Player Daemon Project
3 4 5 6 7 8 9 10 11 12 13
 * 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.
14 15 16 17
 *
 * 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.
18 19
 */

20
#include "config.h"
21
#include "output/Internal.hxx"
22
#include "output/OutputPlugin.hxx"
23 24 25
#include "config/ConfigData.hxx"
#include "config/ConfigGlobal.hxx"
#include "config/ConfigOption.hxx"
Max Kellermann's avatar
Max Kellermann committed
26
#include "Idle.hxx"
27 28
#include "Main.hxx"
#include "event/Loop.hxx"
29
#include "ScopeIOThread.hxx"
30
#include "fs/Path.hxx"
31
#include "AudioParser.hxx"
Max Kellermann's avatar
Max Kellermann committed
32
#include "pcm/PcmConvert.hxx"
33
#include "filter/FilterRegistry.hxx"
34
#include "PlayerControl.hxx"
35
#include "stdbin.h"
36
#include "util/Error.hxx"
37
#include "Log.hxx"
38 39 40 41

#include <assert.h>
#include <string.h>
#include <unistd.h>
42
#include <stdlib.h>
43
#include <stdio.h>
44

45
const struct filter_plugin *
46
filter_plugin_by_name(gcc_unused const char *name)
47 48 49 50 51
{
	assert(false);
	return NULL;
}

52 53
PlayerControl::PlayerControl(PlayerListener &_listener,
			     MultipleOutputs &_outputs,
54 55 56 57 58
			     unsigned _buffer_chunks,
			     unsigned _buffered_before_play)
	:listener(_listener), outputs(_outputs),
	 buffer_chunks(_buffer_chunks),
	 buffered_before_play(_buffered_before_play) {}
59
PlayerControl::~PlayerControl() {}
60

61
static AudioOutput *
62
load_audio_output(EventLoop &event_loop, const char *name)
63
{
64 65
	const config_param *param =
		config_find_block(CONF_AUDIO_OUTPUT, "name", name);
66
	if (param == NULL) {
67
		fprintf(stderr, "No such configured audio output: %s\n", name);
68
		return nullptr;
69 70
	}

71 72
	static struct PlayerControl dummy_player_control(*(PlayerListener *)nullptr,
							 *(MultipleOutputs *)nullptr,
73
							 32, 4);
74

75
	Error error;
76
	AudioOutput *ao =
77 78 79
		audio_output_new(event_loop, *param,
				 *(MixerListener *)nullptr,
				 dummy_player_control,
80
				 error);
81
	if (ao == nullptr)
82
		LogError(error);
83

84
	return ao;
85 86
}

87
static bool
88
run_output(AudioOutput *ao, AudioFormat audio_format)
89 90 91
{
	/* open the audio output */

92 93
	Error error;
	if (!ao_plugin_enable(ao, error)) {
94
		LogError(error, "Failed to enable audio output");
95 96 97
		return false;
	}

98
	if (!ao_plugin_open(ao, audio_format, error)) {
99
		ao_plugin_disable(ao);
100
		LogError(error, "Failed to open audio output");
101 102 103 104
		return false;
	}

	struct audio_format_string af_string;
105 106
	fprintf(stderr, "audio_format=%s\n",
		audio_format_to_string(audio_format, &af_string));
107

108
	size_t frame_size = audio_format.GetFrameSize();
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125

	/* play */

	size_t length = 0;
	char buffer[4096];
	while (true) {
		if (length < sizeof(buffer)) {
			ssize_t nbytes = read(0, buffer + length,
					      sizeof(buffer) - length);
			if (nbytes <= 0)
				break;

			length += (size_t)nbytes;
		}

		size_t play_length = (length / frame_size) * frame_size;
		if (play_length > 0) {
126
			size_t consumed = ao_plugin_play(ao,
127
							 buffer, play_length,
128
							 error);
129
			if (consumed == 0) {
130
				ao_plugin_close(ao);
131
				ao_plugin_disable(ao);
132
				LogError(error, "Failed to play");
133 134 135 136 137 138 139 140 141 142 143
				return false;
			}

			assert(consumed <= length);
			assert(consumed % frame_size == 0);

			length -= consumed;
			memmove(buffer, buffer + consumed, length);
		}
	}

144
	ao_plugin_close(ao);
145
	ao_plugin_disable(ao);
146 147 148
	return true;
}

149 150
int main(int argc, char **argv)
{
151
	Error error;
152 153

	if (argc < 3 || argc > 4) {
154 155
		fprintf(stderr, "Usage: run_output CONFIG NAME [FORMAT] <IN\n");
		return EXIT_FAILURE;
156 157
	}

158 159
	const Path config_path = Path::FromFS(argv[1]);

160
	AudioFormat audio_format(44100, SampleFormat::S16, 2);
161

162 163 164
	/* read configuration file (mpd.conf) */

	config_global_init();
165
	if (!ReadConfigFile(config_path, error)) {
166 167
		LogError(error);
		return EXIT_FAILURE;
168
	}
169

170
	EventLoop event_loop;
171

172
	const ScopeIOThread io_thread;
173

174 175
	/* initialize the audio output */

176
	AudioOutput *ao = load_audio_output(event_loop, argv[2]);
177
	if (ao == NULL)
178 179 180 181 182
		return 1;

	/* parse the audio format */

	if (argc > 3) {
183
		if (!audio_format_parse(audio_format, argv[3], false, error)) {
184 185
			LogError(error, "Failed to parse audio format");
			return EXIT_FAILURE;
186 187 188
		}
	}

189
	/* do it */
190

191
	bool success = run_output(ao, audio_format);
192 193 194

	/* cleanup and exit */

195
	audio_output_free(ao);
196 197 198

	config_global_finish();

199
	return success ? EXIT_SUCCESS : EXIT_FAILURE;
200
}