output_thread.c 4.09 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/* the Music Player Daemon (MPD)
 * Copyright (C) 2008 Max Kellermann <max@duempel.org>
 * 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 "output_thread.h"
#include "output_api.h"
21
#include "output_internal.h"
22

23
#include <glib.h>
24

25
#include <assert.h>
26 27
#include <stdlib.h>
#include <errno.h>
28

29 30 31
#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "output"

32 33 34 35 36 37
enum {
	/** after a failure, wait this number of seconds before
	    automatically reopening the device */
	REOPEN_AFTER = 10,
};

38 39 40 41 42 43 44
static void ao_command_finished(struct audio_output *ao)
{
	assert(ao->command != AO_COMMAND_NONE);
	ao->command = AO_COMMAND_NONE;
	notify_signal(&audio_output_client_notify);
}

45 46 47 48 49
static void
ao_close(struct audio_output *ao)
{
	assert(ao->open);

50
	ao_plugin_close(ao->plugin, ao->data);
51 52 53 54
	pcm_convert_deinit(&ao->convert_state);
	ao->open = false;
}

55 56 57 58 59
static void ao_play(struct audio_output *ao)
{
	const char *data = ao->args.play.data;
	size_t size = ao->args.play.size;

60
	assert(size > 0);
61
	assert(size % audio_format_frame_size(&ao->out_audio_format) == 0);
62

63 64 65 66
	if (!audio_format_equals(&ao->in_audio_format, &ao->out_audio_format)) {
		data = pcm_convert(&ao->convert_state,
				   &ao->in_audio_format, data, size,
				   &ao->out_audio_format, &size);
67

68 69 70 71
		/* under certain circumstances, pcm_convert() may
		   return an empty buffer - this condition should be
		   investigated further, but for now, do this check as
		   a workaround: */
72
		if (data == NULL)
73 74 75
			return;
	}

76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
	while (size > 0) {
		size_t nbytes;

		nbytes = ao_plugin_play(ao->plugin, ao->data, data, size);
		if (nbytes == 0) {
			/* play()==0 means failure */
			ao_plugin_cancel(ao->plugin, ao->data);
			ao_close(ao);
			break;
		}

		assert(nbytes <= size);
		assert(nbytes % audio_format_frame_size(&ao->out_audio_format) == 0);

		data += nbytes;
		size -= nbytes;
92 93
	}

94 95 96
	ao_command_finished(ao);
}

97 98
static void ao_pause(struct audio_output *ao)
{
99 100 101 102 103 104 105 106 107 108 109 110
	bool ret;

	ao_plugin_cancel(ao->plugin, ao->data);
	ao_command_finished(ao);

	do {
		ret = ao_plugin_pause(ao->plugin, ao->data);
		if (!ret) {
			ao_close(ao);
			break;
		}
	} while (ao->command == AO_COMMAND_NONE);
111 112
}

113
static gpointer audio_output_task(gpointer arg)
114 115
{
	struct audio_output *ao = arg;
116
	bool ret;
117 118 119 120 121 122 123 124

	while (1) {
		switch (ao->command) {
		case AO_COMMAND_NONE:
			break;

		case AO_COMMAND_OPEN:
			assert(!ao->open);
125

126 127
			ret = ao_plugin_open(ao->plugin, ao->data,
					     &ao->out_audio_format);
128 129

			assert(!ao->open);
130 131
			if (ret) {
				pcm_convert_init(&ao->convert_state);
132
				ao->open = true;
133
			} else
134
				ao->reopen_after = time(NULL) + REOPEN_AFTER;
135

136 137 138 139 140
			ao_command_finished(ao);
			break;

		case AO_COMMAND_CLOSE:
			assert(ao->open);
141

142
			ao_plugin_cancel(ao->plugin, ao->data);
143
			ao_close(ao);
144 145 146 147 148 149 150
			ao_command_finished(ao);
			break;

		case AO_COMMAND_PLAY:
			ao_play(ao);
			break;

151 152 153 154
		case AO_COMMAND_PAUSE:
			ao_pause(ao);
			break;

155
		case AO_COMMAND_CANCEL:
156
			ao_plugin_cancel(ao->plugin, ao->data);
157 158 159 160
			ao_command_finished(ao);
			break;

		case AO_COMMAND_SEND_TAG:
161
			ao_plugin_send_tag(ao->plugin, ao->data, ao->args.tag);
162 163 164 165 166 167 168 169 170 171 172 173 174 175
			ao_command_finished(ao);
			break;

		case AO_COMMAND_KILL:
			ao_command_finished(ao);
			return NULL;
		}

		notify_wait(&ao->notify);
	}
}

void audio_output_thread_start(struct audio_output *ao)
{
176
	GError *e = NULL;
177 178 179

	assert(ao->command == AO_COMMAND_NONE);

180
	if (!(ao->thread = g_thread_create(audio_output_task, ao, true, &e)))
181
		g_error("Failed to spawn output task: %s\n", e->message);
182
}