run_output.cxx 4.1 KB
Newer Older
1
/*
2
 * Copyright 2003-2016 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
#include "config/Param.hxx"
24 25
#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 "player/Control.hxx"
35 36
#include "util/RuntimeError.hxx"
#include "util/ScopeExit.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 auto *param = config_find_block(ConfigBlockOption::AUDIO_OUTPUT,
					      "name", name);
66 67 68
	if (param == NULL)
		throw FormatRuntimeError("No such configured audio output: %s\n",
					 name);
69

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

74 75 76
	return audio_output_new(event_loop, *param,
				*(MixerListener *)nullptr,
				dummy_player_control);
77 78
}

79
static void
80
run_output(AudioOutput *ao, AudioFormat audio_format)
81 82 83
{
	/* open the audio output */

84 85
	ao_plugin_enable(ao);
	AtScopeExit(ao) { ao_plugin_disable(ao); };
86

87 88
	ao_plugin_open(ao, audio_format);
	AtScopeExit(ao) { ao_plugin_close(ao); };
89 90

	struct audio_format_string af_string;
91 92
	fprintf(stderr, "audio_format=%s\n",
		audio_format_to_string(audio_format, &af_string));
93

94
	size_t frame_size = audio_format.GetFrameSize();
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111

	/* 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) {
112
			size_t consumed = ao_plugin_play(ao,
113
							 buffer, play_length);
114 115 116 117 118 119 120 121 122 123

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

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

124
int main(int argc, char **argv)
125
try {
126
	if (argc < 3 || argc > 4) {
127 128
		fprintf(stderr, "Usage: run_output CONFIG NAME [FORMAT] <IN\n");
		return EXIT_FAILURE;
129 130
	}

131 132
	const Path config_path = Path::FromFS(argv[1]);

133
	AudioFormat audio_format(44100, SampleFormat::S16, 2);
134

135 136 137
	/* read configuration file (mpd.conf) */

	config_global_init();
138
	ReadConfigFile(config_path);
139

140
	EventLoop event_loop;
141

142
	const ScopeIOThread io_thread;
143

144 145
	/* initialize the audio output */

146
	AudioOutput *ao = load_audio_output(event_loop, argv[2]);
147 148 149

	/* parse the audio format */

150 151
	if (argc > 3)
		audio_format = ParseAudioFormat(argv[3], false);
152

153
	/* do it */
154

155
	run_output(ao, audio_format);
156 157 158

	/* cleanup and exit */

159
	audio_output_free(ao);
160 161 162

	config_global_finish();

163
	return EXIT_SUCCESS;
164 165 166 167
 } catch (const std::exception &e) {
	LogError(e);
	return EXIT_FAILURE;
 }