run_output.cxx 3.93 KB
Newer Older
1
/*
Max Kellermann's avatar
Max Kellermann committed
2
 * Copyright 2003-2017 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 "output/Client.hxx"
24
#include "config/Param.hxx"
25 26
#include "config/ConfigGlobal.hxx"
#include "config/ConfigOption.hxx"
Max Kellermann's avatar
Max Kellermann committed
27
#include "Idle.hxx"
28
#include "Main.hxx"
29
#include "event/Thread.hxx"
30
#include "fs/Path.hxx"
31
#include "AudioParser.hxx"
32
#include "ReplayGainConfig.hxx"
Max Kellermann's avatar
Max Kellermann committed
33
#include "pcm/PcmConvert.hxx"
34
#include "filter/FilterRegistry.hxx"
35
#include "util/StringBuffer.hxx"
36 37
#include "util/RuntimeError.hxx"
#include "util/ScopeExit.hxx"
38
#include "Log.hxx"
39 40 41 42

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

46 47
void AudioOutput::Task() {}

48 49 50 51 52 53 54 55 56 57
class DummyAudioOutputClient final : public AudioOutputClient {
public:
	/* virtual methods from AudioOutputClient */
	void ChunksConsumed() override {
	}

	void ApplyEnabled() override {
	}
};

58
const FilterPlugin *
59
filter_plugin_by_name(gcc_unused const char *name)
60 61 62 63 64
{
	assert(false);
	return NULL;
}

65
static AudioOutput *
66 67
load_audio_output(EventLoop &event_loop, AudioOutputClient &client,
		  const char *name)
68
{
69 70
	const auto *param = config_find_block(ConfigBlockOption::AUDIO_OUTPUT,
					      "name", name);
71 72 73
	if (param == NULL)
		throw FormatRuntimeError("No such configured audio output: %s\n",
					 name);
74

75
	return audio_output_new(event_loop, ReplayGainConfig(), *param,
76
				*(MixerListener *)nullptr,
77
				client);
78 79
}

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

85
	ao_plugin_enable(ao);
86
	AtScopeExit(&ao) { ao_plugin_disable(ao); };
87

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

91
	fprintf(stderr, "audio_format=%s\n",
92
		ToString(audio_format).c_str());
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 141
	EventThread io_thread;
	io_thread.Start();
142

143 144
	/* initialize the audio output */

145
	DummyAudioOutputClient client;
146 147
	AudioOutput *ao = load_audio_output(io_thread.GetEventLoop(), client,
					    argv[2]);
148 149 150

	/* parse the audio format */

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

154
	/* do it */
155

156
	run_output(*ao, audio_format);
157 158 159

	/* cleanup and exit */

160
	audio_output_free(ao);
161 162 163

	config_global_finish();

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