pulse_mixer.c 8.34 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Copyright (C) 2003-2009 The Music Player Daemon Project
 * 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 21
#include "mixer_api.h"
#include "conf.h"
David Guibert's avatar
David Guibert committed
22 23 24 25 26

#include <glib.h>
#include <pulse/volume.h>
#include <pulse/pulseaudio.h>

27 28
#include <string.h>

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

David Guibert's avatar
David Guibert committed
32 33
struct pulse_mixer {
	struct mixer base;
34

35 36 37
	const char *server;
	const char *sink;
	const char *output_name;
38

David Guibert's avatar
David Guibert committed
39
	uint32_t index;
40 41
	bool online;

David Guibert's avatar
David Guibert committed
42 43
	struct pa_context *context;
	struct pa_threaded_mainloop *mainloop;
44
	struct pa_cvolume volume;
David Guibert's avatar
David Guibert committed
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
/**
 * \brief waits for a pulseaudio operation to finish, frees it and
 *     unlocks the mainloop
 * \param operation the operation to wait for
 * \return true if operation has finished normally (DONE state),
 *     false otherwise
 */
static bool
pulse_wait_for_operation(struct pa_threaded_mainloop *mainloop,
			 struct pa_operation *operation)
{
	pa_operation_state_t state;

	assert(mainloop != NULL);
	assert(operation != NULL);

	state = pa_operation_get_state(operation);
	while (state == PA_OPERATION_RUNNING) {
		pa_threaded_mainloop_wait(mainloop);
		state = pa_operation_get_state(operation);
	}

	pa_operation_unref(operation);

	return state == PA_OPERATION_DONE;
}

David Guibert's avatar
David Guibert committed
75 76 77 78 79 80
static void
sink_input_cb(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
	      int eol, void *userdata)
{

	struct pulse_mixer *pm = userdata;
81

David Guibert's avatar
David Guibert committed
82 83 84 85 86
	if (eol) {
		g_debug("eol error sink_input_cb");
		return;
	}

87
	if (i == NULL) {
David Guibert's avatar
David Guibert committed
88 89 90
		g_debug("Sink input callback failure");
		return;
	}
91

David Guibert's avatar
David Guibert committed
92
	g_debug("sink input cb %s, index %d ",i->name,i->index);
93 94 95 96

	if (strcmp(i->name,pm->output_name) == 0) {
		pm->index = i->index;
		pm->online = true;
97
		pm->volume = i->volume;
David Guibert's avatar
David Guibert committed
98 99 100 101 102 103 104 105 106 107
	} else
		g_debug("bad name");
}

static void
sink_input_vol(G_GNUC_UNUSED pa_context *context, const pa_sink_input_info *i,
	       int eol, void *userdata)
{

	struct pulse_mixer *pm = userdata;
108

David Guibert's avatar
David Guibert committed
109 110 111 112 113
	if (eol) {
		g_debug("eol error sink_input_vol");
		return;
	}

114
	if (i == NULL) {
David Guibert's avatar
David Guibert committed
115 116 117
		g_debug("Sink input callback failure");
		return;
	}
118

David Guibert's avatar
David Guibert committed
119
	g_debug("sink input vol %s, index %d ", i->name, i->index);
120

121
	pm->volume = i->volume;
122 123

	pa_threaded_mainloop_signal(pm->mainloop, 0);
David Guibert's avatar
David Guibert committed
124 125 126
}

static void
127
subscribe_cb(pa_context *c, pa_subscription_event_type_t t,
David Guibert's avatar
David Guibert committed
128 129 130 131
	     uint32_t idx, void *userdata)
{

	struct pulse_mixer *pm = userdata;
132

133
	g_debug("subscribe call back");
134

David Guibert's avatar
David Guibert committed
135 136 137
	switch (t & PA_SUBSCRIPTION_EVENT_FACILITY_MASK) {
	case PA_SUBSCRIPTION_EVENT_SINK_INPUT:
		if ((t & PA_SUBSCRIPTION_EVENT_TYPE_MASK) ==
138 139
		    PA_SUBSCRIPTION_EVENT_REMOVE &&
		    pm->index == idx)
140
			pm->online = false;
David Guibert's avatar
David Guibert committed
141 142 143
		else {
			pa_operation *o;

144
			o = pa_context_get_sink_input_info(c, idx,
145 146
							   sink_input_cb, pm);
			if (o == NULL) {
147
				g_debug("pa_context_get_sink_input_info() failed");
David Guibert's avatar
David Guibert committed
148 149 150 151 152
				return;
			}

			pa_operation_unref(o);
		}
153

David Guibert's avatar
David Guibert committed
154 155 156 157 158 159 160 161
		break;
	}
}

static void
context_state_cb(pa_context *context, void *userdata)
{
	struct pulse_mixer *pm = userdata;
162

David Guibert's avatar
David Guibert committed
163 164 165 166 167 168
	switch (pa_context_get_state(context)) {
	case PA_CONTEXT_READY: {
		pa_operation *o;

		pa_context_set_subscribe_callback(context, subscribe_cb, pm);

169 170 171 172
		o = pa_context_subscribe(context,
					 (pa_subscription_mask_t)PA_SUBSCRIPTION_MASK_SINK_INPUT,
					 NULL, NULL);
		if (o == NULL) {
173
			g_debug("pa_context_subscribe() failed");
David Guibert's avatar
David Guibert committed
174 175 176
			return;
		}

177
		pa_operation_unref(o);
David Guibert's avatar
David Guibert committed
178

179 180 181
		o = pa_context_get_sink_input_info_list(context,
							sink_input_cb, pm);
		if (o == NULL) {
182
			g_debug("pa_context_get_sink_input_info_list() failed");
David Guibert's avatar
David Guibert committed
183 184 185
			return;
		}

186
		pa_operation_unref(o);
David Guibert's avatar
David Guibert committed
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209

		pa_threaded_mainloop_signal(pm->mainloop, 0);
		break;
	}

	case PA_CONTEXT_UNCONNECTED:
	case PA_CONTEXT_CONNECTING:
	case PA_CONTEXT_AUTHORIZING:
	case PA_CONTEXT_SETTING_NAME:
		break;
	case PA_CONTEXT_TERMINATED:
	case PA_CONTEXT_FAILED:
		pa_threaded_mainloop_signal(pm->mainloop, 0);
		break;
	}
}


static struct mixer *
pulse_mixer_init(const struct config_param *param)
{
	struct pulse_mixer *pm = g_new(struct pulse_mixer,1);
	mixer_init(&pm->base, &pulse_mixer);
210

211
	pm->online = false;
David Guibert's avatar
David Guibert committed
212

213 214 215
	pm->server = config_get_block_string(param, "server", NULL);
	pm->sink = config_get_block_string(param, "sink", NULL);
	pm->output_name = config_get_block_string(param, "name", NULL);
David Guibert's avatar
David Guibert committed
216

217 218 219 220 221 222 223
	return &pm->base;
}

static void
pulse_mixer_finish(struct mixer *data)
{
	struct pulse_mixer *pm = (struct pulse_mixer *) data;
224

225 226 227 228
	g_free(pm);
}

static bool
229
pulse_mixer_setup(struct pulse_mixer *pm)
230
{
David Guibert's avatar
David Guibert committed
231 232 233 234
	pa_context_set_state_callback(pm->context, context_state_cb, pm);

	if (pa_context_connect(pm->context, pm->server,
			       (pa_context_flags_t)0, NULL) < 0) {
235
		g_debug("context server fail");
236
		return false;
David Guibert's avatar
David Guibert committed
237 238 239
	}

	pa_threaded_mainloop_lock(pm->mainloop);
240

David Guibert's avatar
David Guibert committed
241
	if (pa_threaded_mainloop_start(pm->mainloop) < 0) {
242
		pa_threaded_mainloop_unlock(pm->mainloop);
243
		g_debug("error start mainloop");
244
		return false;
David Guibert's avatar
David Guibert committed
245 246 247 248 249
	}

	pa_threaded_mainloop_wait(pm->mainloop);

	if (pa_context_get_state(pm->context) != PA_CONTEXT_READY) {
250
		pa_threaded_mainloop_unlock(pm->mainloop);
251
		g_debug("error context not ready");
252
		return false;
David Guibert's avatar
David Guibert committed
253 254 255 256 257 258 259
	}

	pa_threaded_mainloop_unlock(pm->mainloop);

	return true;
}

260
static bool
261
pulse_mixer_open(struct mixer *data)
262 263
{
	struct pulse_mixer *pm = (struct pulse_mixer *) data;
264

265 266
	g_debug("pulse mixer open");

267 268 269
	pm->index = 0;
	pm->online = false;

270 271
	pm->mainloop = pa_threaded_mainloop_new();
	if (pm->mainloop == NULL) {
272 273 274 275
		g_debug("failed mainloop");
		return false;
	}

276 277 278
	pm->context = pa_context_new(pa_threaded_mainloop_get_api(pm->mainloop),
				     "Mixer mpd");
	if (pm->context == NULL) {
279 280
		pa_threaded_mainloop_stop(pm->mainloop);
		pa_threaded_mainloop_free(pm->mainloop);
281 282 283 284 285
		g_debug("failed context");
		return false;
	}

	if (!pulse_mixer_setup(pm)) {
286 287 288 289
		pa_threaded_mainloop_stop(pm->mainloop);
		pa_context_disconnect(pm->context);
		pa_context_unref(pm->context);
		pa_threaded_mainloop_free(pm->mainloop);
290 291 292 293 294 295
		return false;
	}

	return true;
}

David Guibert's avatar
David Guibert committed
296
static void
297
pulse_mixer_close(struct mixer *data)
David Guibert's avatar
David Guibert committed
298
{
299
	struct pulse_mixer *pm = (struct pulse_mixer *) data;
David Guibert's avatar
David Guibert committed
300

301 302 303 304
	pa_threaded_mainloop_stop(pm->mainloop);
	pa_context_disconnect(pm->context);
	pa_context_unref(pm->context);
	pa_threaded_mainloop_free(pm->mainloop);
305 306

	pm->online = false;
David Guibert's avatar
David Guibert committed
307 308 309 310 311
}

static int
pulse_mixer_get_volume(struct mixer *mixer)
{
312
	struct pulse_mixer *pm = (struct pulse_mixer *) mixer;
David Guibert's avatar
David Guibert committed
313 314 315
	int ret;
	pa_operation *o;

316 317
	pa_threaded_mainloop_lock(pm->mainloop);

318
	if (!pm->online) {
319
		pa_threaded_mainloop_unlock(pm->mainloop);
320 321
		return false;
	}
David Guibert's avatar
David Guibert committed
322

323 324 325
	o = pa_context_get_sink_input_info(pm->context, pm->index,
					   sink_input_vol, pm);
	if (o == NULL) {
326
		pa_threaded_mainloop_unlock(pm->mainloop);
327 328
		g_debug("pa_context_get_sink_input_info() failed");
		return false;
David Guibert's avatar
David Guibert committed
329 330
	}

331 332
	if (!pulse_wait_for_operation(pm->mainloop, o)) {
		pa_threaded_mainloop_unlock(pm->mainloop);
333
		return false;
334
	}
335

336 337 338
	ret = pm->online
		? (int)((100*(pa_cvolume_avg(&pm->volume)+1))/PA_VOLUME_NORM)
		: -1;
339 340

	pa_threaded_mainloop_unlock(pm->mainloop);
341

342
	return ret;
David Guibert's avatar
David Guibert committed
343 344 345 346 347
}

static bool
pulse_mixer_set_volume(struct mixer *mixer, unsigned volume)
{
348
	struct pulse_mixer *pm = (struct pulse_mixer *) mixer;
349 350
	struct pa_cvolume cvolume;
	pa_operation *o;
351

352 353
	pa_threaded_mainloop_lock(pm->mainloop);

354
	if (!pm->online) {
355
		pa_threaded_mainloop_unlock(pm->mainloop);
356 357
		return false;
	}
David Guibert's avatar
David Guibert committed
358

359 360
	pa_cvolume_set(&cvolume, pm->volume.channels,
		       (pa_volume_t)volume * PA_VOLUME_NORM / 100 + 0.5);
David Guibert's avatar
David Guibert committed
361

362 363
	o = pa_context_set_sink_input_volume(pm->context, pm->index,
					     &cvolume, NULL, NULL);
364
	pa_threaded_mainloop_unlock(pm->mainloop);
365 366 367
	if (o == NULL) {
		g_debug("pa_context_set_sink_input_volume() failed");
		return false;
David Guibert's avatar
David Guibert committed
368 369
	}

370 371
	pa_operation_unref(o);

David Guibert's avatar
David Guibert committed
372 373 374 375 376 377 378 379 380 381 382
	return true;
}

const struct mixer_plugin pulse_mixer = {
	.init = pulse_mixer_init,
	.finish = pulse_mixer_finish,
	.open = pulse_mixer_open,
	.close = pulse_mixer_close,
	.get_volume = pulse_mixer_get_volume,
	.set_volume = pulse_mixer_set_volume,
};