mixer_control.c 3.41 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 22
 */

#include "mixer_control.h"
#include "mixer_api.h"

23 24
#include <glib.h>

25
#include <assert.h>
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
#include <stddef.h>

#undef G_LOG_DOMAIN
#define G_LOG_DOMAIN "mixer"

static bool mixers_enabled = true;

void
mixer_disable_all(void)
{
	g_debug("mixer api is disabled");
	mixers_enabled = false;
}

struct mixer *
mixer_new(const struct mixer_plugin *plugin, const struct config_param *param)
{
	struct mixer *mixer;

	//mixers are disabled (by using software volume)
	if (!mixers_enabled) {
		return NULL;
	}
	assert(plugin != NULL);

	mixer = plugin->init(param);

	assert(mixer == NULL || mixer->plugin == plugin);

	return mixer;
}

void
mixer_free(struct mixer *mixer)
{
61
	assert(mixer != NULL);
62
	assert(mixer->plugin != NULL);
63 64 65
	assert(mixer->mutex != NULL);

	g_mutex_free(mixer->mutex);
66 67 68 69 70 71 72

	mixer->plugin->finish(mixer);
}

bool
mixer_open(struct mixer *mixer)
{
73 74
	bool success;

75
	assert(mixer != NULL);
76
	assert(mixer->plugin != NULL);
77 78

	g_mutex_lock(mixer->mutex);
79 80 81 82 83 84

	if (mixer->open)
		success = true;
	else
		success = mixer->open = mixer->plugin->open(mixer);

85 86
	mixer->failed = !success;

87 88 89
	g_mutex_unlock(mixer->mutex);

	return success;
90 91
}

92 93 94 95 96 97 98 99 100 101 102
static void
mixer_close_internal(struct mixer *mixer)
{
	assert(mixer != NULL);
	assert(mixer->plugin != NULL);
	assert(mixer->open);

	mixer->plugin->close(mixer);
	mixer->open = false;
}

103 104 105
void
mixer_close(struct mixer *mixer)
{
106
	assert(mixer != NULL);
107
	assert(mixer->plugin != NULL);
108 109

	g_mutex_lock(mixer->mutex);
110

111 112
	if (mixer->open)
		mixer_close_internal(mixer);
113

114
	g_mutex_unlock(mixer->mutex);
115 116
}

117 118 119 120 121 122 123
void
mixer_auto_close(struct mixer *mixer)
{
	if (!mixer->plugin->global)
		mixer_close(mixer);
}

124 125 126 127 128 129 130 131 132
/*
 * Close the mixer due to failure.  The mutex must be locked before
 * calling this function.
 */
static void
mixer_failed(struct mixer *mixer)
{
	assert(mixer->open);

133
	mixer_close_internal(mixer);
134 135

	mixer->failed = true;
136 137
}

138 139 140
int
mixer_get_volume(struct mixer *mixer)
{
141 142
	int volume;

143 144
	assert(mixer != NULL);

145
	if (mixer->plugin->global && !mixer->failed && !mixer_open(mixer))
146 147
		return -1;

148
	g_mutex_lock(mixer->mutex);
149 150 151

	if (mixer->open) {
		volume = mixer->plugin->get_volume(mixer);
152 153
		if (volume < 0)
			mixer_failed(mixer);
154 155 156
	} else
		volume = -1;

157 158 159
	g_mutex_unlock(mixer->mutex);

	return volume;
160 161 162 163 164
}

bool
mixer_set_volume(struct mixer *mixer, unsigned volume)
{
165 166
	bool success;

167
	assert(mixer != NULL);
168
	assert(volume <= 100);
169

170
	if (mixer->plugin->global && !mixer->failed && !mixer_open(mixer))
171 172
		return false;

173
	g_mutex_lock(mixer->mutex);
174 175 176

	if (mixer->open) {
		success = mixer->plugin->set_volume(mixer, volume);
177 178
		if (!success)
			mixer_failed(mixer);
179 180 181
	} else
		success = false;

182 183 184
	g_mutex_unlock(mixer->mutex);

	return success;
185
}