2023-03-06 14:42:04 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
// Copyright The Music Player Daemon Project
|
2009-04-21 22:46:41 +02:00
|
|
|
|
2018-01-23 16:28:56 +01:00
|
|
|
#include "NullMixerListener.hxx"
|
2022-08-18 17:00:45 +02:00
|
|
|
#include "mixer/Control.hxx"
|
2022-08-18 14:29:07 +02:00
|
|
|
#include "mixer/Mixer.hxx"
|
2022-08-18 17:03:37 +02:00
|
|
|
#include "mixer/plugins/AlsaMixerPlugin.hxx"
|
2019-08-26 20:54:52 +02:00
|
|
|
#include "filter/Registry.hxx"
|
2013-01-15 07:53:44 +01:00
|
|
|
#include "event/Loop.hxx"
|
2015-01-21 22:13:44 +01:00
|
|
|
#include "config/Block.hxx"
|
2018-07-17 21:56:43 +02:00
|
|
|
#include "util/PrintException.hxx"
|
2009-04-21 22:46:41 +02:00
|
|
|
|
2020-03-12 23:20:59 +01:00
|
|
|
#include <cassert>
|
|
|
|
|
2015-01-26 20:39:45 +01:00
|
|
|
#include <stdlib.h>
|
2009-04-21 22:46:41 +02:00
|
|
|
|
2016-11-23 17:43:50 +01:00
|
|
|
const FilterPlugin *
|
2020-03-12 20:56:11 +01:00
|
|
|
filter_plugin_by_name([[maybe_unused]] const char *name) noexcept
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
|
|
|
assert(false);
|
2020-02-01 13:49:19 +01:00
|
|
|
return nullptr;
|
2009-07-06 21:52:15 +02:00
|
|
|
}
|
|
|
|
|
2020-03-12 20:56:11 +01:00
|
|
|
int main(int argc, [[maybe_unused]] char **argv)
|
2016-09-09 12:52:51 +02:00
|
|
|
try {
|
2009-04-21 22:46:41 +02:00
|
|
|
int volume;
|
|
|
|
|
|
|
|
if (argc != 2) {
|
2013-12-24 14:44:08 +01:00
|
|
|
fprintf(stderr, "Usage: read_mixer PLUGIN\n");
|
|
|
|
return EXIT_FAILURE;
|
2009-04-21 22:46:41 +02:00
|
|
|
}
|
|
|
|
|
2014-02-05 00:02:02 +01:00
|
|
|
EventLoop event_loop;
|
2013-01-15 07:53:44 +01:00
|
|
|
|
2018-01-23 16:28:56 +01:00
|
|
|
NullMixerListener mixer_listener;
|
2014-02-06 21:10:12 +01:00
|
|
|
Mixer *mixer = mixer_new(event_loop, alsa_mixer_plugin,
|
2018-01-23 16:42:25 +01:00
|
|
|
/* ugly dangerous dummy pointer to
|
|
|
|
make the compiler happy; this
|
|
|
|
works with most mixers, because
|
|
|
|
they don't need the AudioOutput */
|
|
|
|
*(AudioOutput *)0x1,
|
2018-01-23 16:28:56 +01:00
|
|
|
mixer_listener,
|
2016-09-09 12:52:51 +02:00
|
|
|
ConfigBlock());
|
2009-04-21 22:46:41 +02:00
|
|
|
|
2022-08-18 14:29:07 +02:00
|
|
|
volume = mixer->LockGetVolume();
|
2009-04-21 22:46:41 +02:00
|
|
|
mixer_free(mixer);
|
|
|
|
|
|
|
|
assert(volume >= -1 && volume <= 100);
|
|
|
|
|
|
|
|
if (volume < 0) {
|
2016-09-09 12:52:51 +02:00
|
|
|
fprintf(stderr, "failed to read volume\n");
|
2013-12-24 14:44:08 +01:00
|
|
|
return EXIT_FAILURE;
|
2009-04-21 22:46:41 +02:00
|
|
|
}
|
|
|
|
|
2013-12-24 14:44:08 +01:00
|
|
|
printf("%d\n", volume);
|
2009-04-21 22:46:41 +02:00
|
|
|
return 0;
|
2018-07-17 21:56:43 +02:00
|
|
|
} catch (...) {
|
|
|
|
PrintException(std::current_exception());
|
2016-09-09 12:52:51 +02:00
|
|
|
return EXIT_FAILURE;
|
2009-04-21 22:46:41 +02:00
|
|
|
}
|