2009-04-21 22:46:41 +02:00
|
|
|
/*
|
2020-01-18 19:22:19 +01:00
|
|
|
* Copyright 2003-2020 The Music Player Daemon Project
|
2009-04-21 22:46:41 +02:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-01-23 16:28:56 +01:00
|
|
|
#include "NullMixerListener.hxx"
|
2014-01-24 16:25:21 +01:00
|
|
|
#include "mixer/MixerControl.hxx"
|
|
|
|
#include "mixer/MixerList.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
|
|
|
|
|
|
|
#include <assert.h>
|
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 *
|
2017-05-08 14:44:49 +02:00
|
|
|
filter_plugin_by_name(gcc_unused const char *name) noexcept
|
2009-07-06 21:52:15 +02:00
|
|
|
{
|
|
|
|
assert(false);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-08-04 23:48:01 +02:00
|
|
|
int main(int argc, gcc_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
|
|
|
|
2016-09-09 12:52:51 +02:00
|
|
|
mixer_open(mixer);
|
2009-04-21 22:46:41 +02:00
|
|
|
|
2016-09-09 12:52:51 +02:00
|
|
|
volume = mixer_get_volume(mixer);
|
2009-04-21 22:46:41 +02:00
|
|
|
mixer_close(mixer);
|
|
|
|
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
|
|
|
}
|