mpd/src/mixer/plugins/PulseMixerPlugin.cxx

219 lines
4.6 KiB
C++
Raw Normal View History

/*
2017-01-03 20:48:59 +01:00
* Copyright 2003-2017 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.
*
* 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.
*/
#include "config.h"
2013-04-16 20:51:21 +02:00
#include "PulseMixerPlugin.hxx"
#include "lib/pulse/Domain.hxx"
#include "lib/pulse/LogError.hxx"
#include "lib/pulse/LockGuard.hxx"
2014-01-24 16:25:21 +01:00
#include "mixer/MixerInternal.hxx"
#include "mixer/Listener.hxx"
2014-01-23 23:49:50 +01:00
#include "output/plugins/PulseOutputPlugin.hxx"
#include <pulse/context.h>
#include <pulse/introspect.h>
#include <pulse/stream.h>
#include <pulse/subscribe.h>
2016-09-09 12:52:51 +02:00
#include <stdexcept>
#include <assert.h>
class PulseMixer final : public Mixer {
PulseOutput &output;
bool online;
struct pa_cvolume volume;
public:
PulseMixer(PulseOutput &_output, MixerListener &_listener)
:Mixer(pulse_mixer_plugin, _listener),
output(_output), online(false)
2013-04-16 20:47:55 +02:00
{
}
virtual ~PulseMixer();
void Offline();
void VolumeCallback(const pa_sink_input_info *i, int eol);
void Update(pa_context *context, pa_stream *stream);
2016-09-09 12:52:51 +02:00
int GetVolumeInternal();
/* virtual methods from class Mixer */
2016-09-09 12:52:51 +02:00
void Open() override {
}
2017-06-08 21:42:12 +02:00
void Close() noexcept override {
}
2016-09-09 12:52:51 +02:00
int GetVolume() override;
void SetVolume(unsigned volume) override;
};
void
PulseMixer::Offline()
{
if (!online)
return;
online = false;
listener.OnMixerVolumeChanged(*this, -1);
}
inline void
PulseMixer::VolumeCallback(const pa_sink_input_info *i, int eol)
{
if (eol)
return;
2013-10-28 23:58:17 +01:00
if (i == nullptr) {
Offline();
return;
}
online = true;
volume = i->volume;
2016-09-09 12:52:51 +02:00
listener.OnMixerVolumeChanged(*this, GetVolumeInternal());
}
/**
* Callback invoked by pulse_mixer_update(). Receives the new mixer
* value.
*/
static void
pulse_mixer_volume_cb(gcc_unused pa_context *context, const pa_sink_input_info *i,
int eol, void *userdata)
{
PulseMixer *pm = (PulseMixer *)userdata;
pm->VolumeCallback(i, eol);
}
inline void
PulseMixer::Update(pa_context *context, pa_stream *stream)
{
2013-10-28 23:58:17 +01:00
assert(context != nullptr);
assert(stream != nullptr);
assert(pa_stream_get_state(stream) == PA_STREAM_READY);
pa_operation *o =
pa_context_get_sink_input_info(context,
pa_stream_get_index(stream),
pulse_mixer_volume_cb, this);
2013-10-28 23:58:17 +01:00
if (o == nullptr) {
LogPulseError(context,
"pa_context_get_sink_input_info() failed");
Offline();
return;
}
pa_operation_unref(o);
}
void
pulse_mixer_on_connect(gcc_unused PulseMixer &pm,
struct pa_context *context)
{
pa_operation *o;
2013-10-28 23:58:17 +01:00
assert(context != nullptr);
o = pa_context_subscribe(context,
(pa_subscription_mask_t)PA_SUBSCRIPTION_MASK_SINK_INPUT,
2013-10-28 23:58:17 +01:00
nullptr, nullptr);
if (o == nullptr) {
LogPulseError(context,
"pa_context_subscribe() failed");
return;
}
pa_operation_unref(o);
}
void
pulse_mixer_on_disconnect(PulseMixer &pm)
{
pm.Offline();
}
void
pulse_mixer_on_change(PulseMixer &pm,
struct pa_context *context, struct pa_stream *stream)
{
pm.Update(context, stream);
}
2013-04-16 21:33:25 +02:00
static Mixer *
pulse_mixer_init(gcc_unused EventLoop &event_loop, AudioOutput &ao,
MixerListener &listener,
2016-09-09 12:52:51 +02:00
gcc_unused const ConfigBlock &block)
{
PulseOutput &po = (PulseOutput &)ao;
PulseMixer *pm = new PulseMixer(po, listener);
pulse_output_set_mixer(po, *pm);
2013-04-16 20:47:55 +02:00
return pm;
}
PulseMixer::~PulseMixer()
{
pulse_output_clear_mixer(output, *this);
}
int
2016-09-09 12:52:51 +02:00
PulseMixer::GetVolume()
{
Pulse::LockGuard lock(pulse_output_get_mainloop(output));
2016-09-09 12:52:51 +02:00
return GetVolumeInternal();
}
/**
* Pulse mainloop lock must be held by caller
*/
int
2016-09-09 12:52:51 +02:00
PulseMixer::GetVolumeInternal()
{
return online ?
(int)((100 * (pa_cvolume_avg(&volume) + 1)) / PA_VOLUME_NORM)
: -1;
}
2016-09-09 12:52:51 +02:00
void
PulseMixer::SetVolume(unsigned new_volume)
{
Pulse::LockGuard lock(pulse_output_get_mainloop(output));
2016-09-09 12:52:51 +02:00
if (!online)
throw std::runtime_error("disconnected");
struct pa_cvolume cvolume;
pa_cvolume_set(&cvolume, volume.channels,
(new_volume * PA_VOLUME_NORM + 50) / 100);
2016-09-09 12:52:51 +02:00
pulse_output_set_volume(output, &cvolume);
volume = cvolume;
}
const MixerPlugin pulse_mixer_plugin = {
2013-01-09 22:25:24 +01:00
pulse_mixer_init,
false,
};