1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
/* BEGIN_COMMON_COPYRIGHT_HEADER
* (c)LGPL2+
*
* LXQt - a lightweight, Qt based, desktop toolset
* https://lxqt.org
*
* Copyright: 2012 Razor team
* Authors:
* Johannes Zellner <webmaster@nebulon.de>
*
* This program or library is free software; you can redistribute it
* and/or modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*
* END_COMMON_COPYRIGHT_HEADER */
#include "pulseaudioengine.h"
#include "audiodevice.h"
#include <QMetaType>
#include <QtDebug>
//#define PULSEAUDIO_ENGINE_DEBUG
static void sinkInfoCallback(pa_context *context, const pa_sink_info *info, int isLast, void *userdata)
{
PulseAudioEngine *pulseEngine = static_cast<PulseAudioEngine*>(userdata);
QMap<pa_sink_state, QString> stateMap;
stateMap[PA_SINK_INVALID_STATE] = QLatin1String("n/a");
stateMap[PA_SINK_RUNNING] = QLatin1String("RUNNING");
stateMap[PA_SINK_IDLE] = QLatin1String("IDLE");
stateMap[PA_SINK_SUSPENDED] = QLatin1String("SUSPENDED");
if (isLast < 0) {
pa_threaded_mainloop_signal(pulseEngine->mainloop(), 0);
qWarning() << QStringLiteral("Failed to get sink information: %1").arg(QString::fromUtf8(pa_strerror(pa_context_errno(context))));
return;
}
if (isLast) {
pa_threaded_mainloop_signal(pulseEngine->mainloop(), 0);
return;
}
pulseEngine->addOrUpdateSink(info);
}
static void contextEventCallback(pa_context * /*context*/, const char *
#ifdef PULSEAUDIO_ENGINE_DEBUG
name
#endif
, pa_proplist * /*p*/, void * /*userdata*/)
{
#ifdef PULSEAUDIO_ENGINE_DEBUG
qWarning("event received %s", name);
#endif
}
static void contextStateCallback(pa_context *context, void *userdata)
{
PulseAudioEngine *pulseEngine = reinterpret_cast<PulseAudioEngine*>(userdata);
// update internal state
pa_context_state_t state = pa_context_get_state(context);
pulseEngine->setContextState(state);
#ifdef PULSEAUDIO_ENGINE_DEBUG
switch (state) {
case PA_CONTEXT_UNCONNECTED:
qWarning("context unconnected");
break;
case PA_CONTEXT_CONNECTING:
qWarning("context connecting");
break;
case PA_CONTEXT_AUTHORIZING:
qWarning("context authorizing");
break;
case PA_CONTEXT_SETTING_NAME:
qWarning("context setting name");
break;
case PA_CONTEXT_READY:
qWarning("context ready");
break;
case PA_CONTEXT_FAILED:
qWarning("context failed");
break;
case PA_CONTEXT_TERMINATED:
qWarning("context terminated");
break;
default:
qWarning("we should never hit this state");
}
#endif
pa_threaded_mainloop_signal(pulseEngine->mainloop(), 0);
}
static void contextSuccessCallback(pa_context *context, int success, void *userdata)
{
Q_UNUSED(context);
Q_UNUSED(success);
Q_UNUSED(userdata);
PulseAudioEngine *pulseEngine = reinterpret_cast<PulseAudioEngine*>(userdata);
pa_threaded_mainloop_signal(pulseEngine->mainloop(), 0);
}
static void contextSubscriptionCallback(pa_context * /*context*/, pa_subscription_event_type_t t, uint32_t idx, void *userdata)
{
PulseAudioEngine *pulseEngine = reinterpret_cast<PulseAudioEngine*>(userdata);
if (PA_SUBSCRIPTION_EVENT_REMOVE == t)
pulseEngine->removeSink(idx);
else
pulseEngine->requestSinkInfoUpdate(idx);
}
PulseAudioEngine::PulseAudioEngine(QObject *parent) :
AudioEngine(parent),
m_context(nullptr),
m_contextState(PA_CONTEXT_UNCONNECTED),
m_ready(false),
m_maximumVolume(PA_VOLUME_NORM)
{
qRegisterMetaType<pa_context_state_t>("pa_context_state_t");
m_reconnectionTimer.setSingleShot(true);
m_reconnectionTimer.setInterval(100);
connect(&m_reconnectionTimer, &QTimer::timeout, this, &PulseAudioEngine::connectContext);
m_mainLoop = pa_threaded_mainloop_new();
if (m_mainLoop == nullptr) {
qWarning("Unable to create pulseaudio mainloop");
return;
}
if (pa_threaded_mainloop_start(m_mainLoop) != 0) {
qWarning("Unable to start pulseaudio mainloop");
pa_threaded_mainloop_free(m_mainLoop);
m_mainLoop = nullptr;
return;
}
m_mainLoopApi = pa_threaded_mainloop_get_api(m_mainLoop);
connect(this, &PulseAudioEngine::contextStateChanged, this, &PulseAudioEngine::handleContextStateChanged);
connectContext();
}
PulseAudioEngine::~PulseAudioEngine()
{
if (m_context) {
pa_context_unref(m_context);
m_context = nullptr;
}
if (m_mainLoop) {
pa_threaded_mainloop_free(m_mainLoop);
m_mainLoop = nullptr;
}
}
void PulseAudioEngine::removeSink(uint32_t idx)
{
auto dev_i = std::find_if(m_sinks.begin(), m_sinks.end(), [idx] (AudioDevice * dev) { return dev->index() == idx; });
if (m_sinks.end() == dev_i)
return;
std::unique_ptr<AudioDevice> dev{*dev_i};
m_cVolumeMap.remove(dev.get());
m_sinks.erase(dev_i);
emit sinkListChanged();
}
void PulseAudioEngine::addOrUpdateSink(const pa_sink_info *info)
{
AudioDevice *dev = nullptr;
bool newSink = false;
QString name = QString::fromUtf8(info->name);
for (AudioDevice *device : std::as_const(m_sinks)) {
if (device->name() == name) {
dev = device;
break;
}
}
if (!dev) {
dev = new AudioDevice(Sink, this);
newSink = true;
}
dev->setName(name);
dev->setIndex(info->index);
dev->setDescription(QString::fromUtf8(info->description));
dev->setMuteNoCommit(info->mute);
// TODO: save separately? alsa does not have it
m_cVolumeMap.insert(dev, info->volume);
pa_volume_t v = pa_cvolume_avg(&(info->volume));
// convert real volume to percentage
dev->setVolumeNoCommit(qRound((static_cast<double>(v) * 100.0) / m_maximumVolume));
if (newSink) {
//keep the sinks sorted by index()
m_sinks.insert(
std::lower_bound(m_sinks.begin(), m_sinks.end(), dev, [] (AudioDevice const * const a, AudioDevice const * const b) {
return a->name() < b->name();
})
, dev
);
emit sinkListChanged();
}
}
void PulseAudioEngine::requestSinkInfoUpdate(uint32_t idx)
{
emit sinkInfoChanged(idx);
}
void PulseAudioEngine::commitDeviceVolume(AudioDevice *device)
{
if (!device || !m_ready)
return;
// convert from percentage to real volume value
pa_volume_t v = ((double)device->volume() / 100.0) * m_maximumVolume;
pa_cvolume tmpVolume = m_cVolumeMap.value(device);
pa_cvolume *volume = pa_cvolume_set(&tmpVolume, tmpVolume.channels, v);
// qDebug() << "PulseAudioEngine::commitDeviceVolume" << v;
pa_threaded_mainloop_lock(m_mainLoop);
pa_operation *operation;
if (device->type() == Sink)
operation = pa_context_set_sink_volume_by_index(m_context, device->index(), volume, contextSuccessCallback, this);
else
operation = pa_context_set_source_volume_by_index(m_context, device->index(), volume, contextSuccessCallback, this);
while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
pa_threaded_mainloop_wait(m_mainLoop);
pa_operation_unref(operation);
pa_threaded_mainloop_unlock(m_mainLoop);
}
void PulseAudioEngine::retrieveSinks()
{
if (!m_ready)
return;
pa_threaded_mainloop_lock(m_mainLoop);
pa_operation *operation;
operation = pa_context_get_sink_info_list(m_context, sinkInfoCallback, this);
while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
pa_threaded_mainloop_wait(m_mainLoop);
pa_operation_unref(operation);
pa_threaded_mainloop_unlock(m_mainLoop);
}
void PulseAudioEngine::setupSubscription()
{
if (!m_ready)
return;
connect(this, &PulseAudioEngine::sinkInfoChanged, this, &PulseAudioEngine::retrieveSinkInfo, Qt::QueuedConnection);
pa_context_set_subscribe_callback(m_context, contextSubscriptionCallback, this);
pa_threaded_mainloop_lock(m_mainLoop);
pa_operation *operation;
operation = pa_context_subscribe(m_context, PA_SUBSCRIPTION_MASK_SINK, contextSuccessCallback, this);
while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
pa_threaded_mainloop_wait(m_mainLoop);
pa_operation_unref(operation);
pa_threaded_mainloop_unlock(m_mainLoop);
}
void PulseAudioEngine::handleContextStateChanged()
{
if (m_contextState == PA_CONTEXT_FAILED || m_contextState == PA_CONTEXT_TERMINATED) {
qWarning("LXQt-Volume: Context connection failed or terminated lets try to reconnect");
m_reconnectionTimer.start();
}
}
void PulseAudioEngine::connectContext()
{
bool keepGoing = true;
bool ok = false;
m_reconnectionTimer.stop();
if (!m_mainLoop)
return;
pa_threaded_mainloop_lock(m_mainLoop);
if (m_context) {
pa_context_unref(m_context);
m_context = nullptr;
}
m_context = pa_context_new(m_mainLoopApi, "lxqt-volume");
pa_context_set_state_callback(m_context, contextStateCallback, this);
pa_context_set_event_callback(m_context, contextEventCallback, this);
if (!m_context) {
pa_threaded_mainloop_unlock(m_mainLoop);
m_reconnectionTimer.start();
return;
}
if (pa_context_connect(m_context, nullptr, (pa_context_flags_t)0, nullptr) < 0) {
pa_threaded_mainloop_unlock(m_mainLoop);
m_reconnectionTimer.start();
return;
}
while (keepGoing) {
switch (m_contextState) {
case PA_CONTEXT_CONNECTING:
case PA_CONTEXT_AUTHORIZING:
case PA_CONTEXT_SETTING_NAME:
break;
case PA_CONTEXT_READY:
keepGoing = false;
ok = true;
break;
case PA_CONTEXT_TERMINATED:
keepGoing = false;
break;
case PA_CONTEXT_FAILED:
default:
qWarning() << QStringLiteral("Connection failure: %1").arg(QString::fromUtf8(pa_strerror(pa_context_errno(m_context))));
keepGoing = false;
}
if (keepGoing)
pa_threaded_mainloop_wait(m_mainLoop);
}
pa_threaded_mainloop_unlock(m_mainLoop);
if (ok) {
retrieveSinks();
setupSubscription();
} else {
m_reconnectionTimer.start();
}
}
void PulseAudioEngine::retrieveSinkInfo(uint32_t idx)
{
if (!m_ready)
return;
pa_threaded_mainloop_lock(m_mainLoop);
pa_operation *operation;
operation = pa_context_get_sink_info_by_index(m_context, idx, sinkInfoCallback, this);
while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
pa_threaded_mainloop_wait(m_mainLoop);
pa_operation_unref(operation);
pa_threaded_mainloop_unlock(m_mainLoop);
}
void PulseAudioEngine::setMute(AudioDevice *device, bool state)
{
if (!m_ready)
return;
pa_threaded_mainloop_lock(m_mainLoop);
pa_operation *operation;
operation = pa_context_set_sink_mute_by_index(m_context, device->index(), state, contextSuccessCallback, this);
while (pa_operation_get_state(operation) == PA_OPERATION_RUNNING)
pa_threaded_mainloop_wait(m_mainLoop);
pa_operation_unref(operation);
pa_threaded_mainloop_unlock(m_mainLoop);
}
void PulseAudioEngine::setContextState(pa_context_state_t state)
{
if (m_contextState == state)
return;
m_contextState = state;
// update ready member as it depends on state
if (m_ready == (m_contextState == PA_CONTEXT_READY))
return;
m_ready = (m_contextState == PA_CONTEXT_READY);
emit contextStateChanged(m_contextState);
emit readyChanged(m_ready);
}
void PulseAudioEngine::setIgnoreMaxVolume(bool ignore)
{
int oldMax = m_maximumVolume;
if (ignore)
m_maximumVolume = PA_VOLUME_UI_MAX;
else
m_maximumVolume = PA_VOLUME_NORM;
if (oldMax != m_maximumVolume)
retrieveSinks();
}
|