2017-09-26 18:21:23 -04:00
|
|
|
#include "modules/pulseaudio.hpp"
|
|
|
|
#include "adapters/pulseaudio.hpp"
|
|
|
|
#include "drawtypes/label.hpp"
|
|
|
|
#include "drawtypes/progressbar.hpp"
|
|
|
|
#include "drawtypes/ramp.hpp"
|
|
|
|
#include "utils/math.hpp"
|
|
|
|
|
|
|
|
#include "modules/meta/base.inl"
|
|
|
|
|
|
|
|
#include "settings.hpp"
|
|
|
|
|
|
|
|
POLYBAR_NS
|
|
|
|
|
|
|
|
namespace modules {
|
|
|
|
template class module<pulseaudio_module>;
|
|
|
|
|
|
|
|
pulseaudio_module::pulseaudio_module(const bar_settings& bar, string name_) : event_module<pulseaudio_module>(bar, move(name_)) {
|
|
|
|
// Load configuration values
|
|
|
|
auto sink_name = m_conf.get(name(), "sink", ""s);
|
|
|
|
try {
|
2017-10-29 01:50:51 -04:00
|
|
|
m_pulseaudio = factory_util::unique<pulseaudio>(m_log, move(sink_name));
|
2017-09-26 18:21:23 -04:00
|
|
|
} catch (const pulseaudio_error& err) {
|
|
|
|
throw module_error(err.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add formats and elements
|
|
|
|
m_formatter->add(FORMAT_VOLUME, TAG_LABEL_VOLUME, {TAG_RAMP_VOLUME, TAG_LABEL_VOLUME, TAG_BAR_VOLUME});
|
|
|
|
m_formatter->add(FORMAT_MUTED, TAG_LABEL_MUTED, {TAG_RAMP_VOLUME, TAG_LABEL_MUTED, TAG_BAR_VOLUME});
|
|
|
|
|
|
|
|
if (m_formatter->has(TAG_BAR_VOLUME)) {
|
|
|
|
m_bar_volume = load_progressbar(m_bar, m_conf, name(), TAG_BAR_VOLUME);
|
|
|
|
}
|
|
|
|
if (m_formatter->has(TAG_LABEL_VOLUME, FORMAT_VOLUME)) {
|
|
|
|
m_label_volume = load_optional_label(m_conf, name(), TAG_LABEL_VOLUME, "%percentage%%");
|
|
|
|
}
|
|
|
|
if (m_formatter->has(TAG_LABEL_MUTED, FORMAT_MUTED)) {
|
|
|
|
m_label_muted = load_optional_label(m_conf, name(), TAG_LABEL_MUTED, "%percentage%%");
|
|
|
|
}
|
|
|
|
if (m_formatter->has(TAG_RAMP_VOLUME)) {
|
|
|
|
m_ramp_volume = load_ramp(m_conf, name(), TAG_RAMP_VOLUME);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void pulseaudio_module::teardown() {
|
|
|
|
m_pulseaudio.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pulseaudio_module::has_event() {
|
|
|
|
// Poll for mixer and control events
|
|
|
|
try {
|
2017-10-07 23:19:06 -04:00
|
|
|
if (m_pulseaudio->wait())
|
2017-09-26 18:21:23 -04:00
|
|
|
return true;
|
|
|
|
} catch (const pulseaudio_error& e) {
|
|
|
|
m_log.err("%s: %s", name(), e.what());
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pulseaudio_module::update() {
|
|
|
|
// Consume pending events
|
|
|
|
m_pulseaudio->process_events();
|
|
|
|
|
2017-10-14 14:27:43 -04:00
|
|
|
// Get volume and mute state
|
2017-09-26 18:21:23 -04:00
|
|
|
m_volume = 100;
|
|
|
|
m_muted = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (m_pulseaudio) {
|
|
|
|
m_volume = m_volume * m_pulseaudio->get_volume() / 100.0f;
|
|
|
|
m_muted = m_muted || m_pulseaudio->is_muted();
|
|
|
|
}
|
|
|
|
} catch (const pulseaudio_error& err) {
|
|
|
|
m_log.err("%s: Failed to query pulseaudio sink (%s)", name(), err.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace label tokens
|
|
|
|
if (m_label_volume) {
|
|
|
|
m_label_volume->reset_tokens();
|
|
|
|
m_label_volume->replace_token("%percentage%", to_string(m_volume));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (m_label_muted) {
|
|
|
|
m_label_muted->reset_tokens();
|
|
|
|
m_label_muted->replace_token("%percentage%", to_string(m_volume));
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
string pulseaudio_module::get_format() const {
|
|
|
|
return m_muted ? FORMAT_MUTED : FORMAT_VOLUME;
|
|
|
|
}
|
|
|
|
|
|
|
|
string pulseaudio_module::get_output() {
|
|
|
|
// Get the module output early so that
|
|
|
|
// the format prefix/suffix also gets wrapper
|
|
|
|
// with the cmd handlers
|
|
|
|
string output{module::get_output()};
|
|
|
|
|
|
|
|
if (m_handle_events) {
|
|
|
|
m_builder->cmd(mousebtn::LEFT, EVENT_TOGGLE_MUTE);
|
|
|
|
m_builder->cmd(mousebtn::SCROLL_UP, EVENT_VOLUME_UP);
|
|
|
|
m_builder->cmd(mousebtn::SCROLL_DOWN, EVENT_VOLUME_DOWN);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_builder->append(output);
|
|
|
|
|
|
|
|
return m_builder->flush();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pulseaudio_module::build(builder* builder, const string& tag) const {
|
|
|
|
if (tag == TAG_BAR_VOLUME) {
|
|
|
|
builder->node(m_bar_volume->output(m_volume));
|
2017-10-14 14:27:43 -04:00
|
|
|
} else if (tag == TAG_RAMP_VOLUME) {
|
2017-09-26 18:21:23 -04:00
|
|
|
builder->node(m_ramp_volume->get_by_percentage(m_volume));
|
|
|
|
} else if (tag == TAG_LABEL_VOLUME) {
|
|
|
|
builder->node(m_label_volume);
|
|
|
|
} else if (tag == TAG_LABEL_MUTED) {
|
|
|
|
builder->node(m_label_muted);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool pulseaudio_module::input(string&& cmd) {
|
|
|
|
if (!m_handle_events) {
|
|
|
|
return false;
|
2018-03-27 03:52:31 -04:00
|
|
|
} else if (cmd.compare(0, strlen(EVENT_PREFIX), EVENT_PREFIX) != 0) {
|
2017-09-26 18:21:23 -04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (m_pulseaudio && !m_pulseaudio->get_name().empty()) {
|
|
|
|
if (cmd.compare(0, strlen(EVENT_TOGGLE_MUTE), EVENT_TOGGLE_MUTE) == 0) {
|
|
|
|
m_pulseaudio->toggle_mute();
|
|
|
|
} else if (cmd.compare(0, strlen(EVENT_VOLUME_UP), EVENT_VOLUME_UP) == 0) {
|
|
|
|
// cap above 100 (~150)?
|
|
|
|
m_pulseaudio->inc_volume(5);
|
|
|
|
} else if (cmd.compare(0, strlen(EVENT_VOLUME_DOWN), EVENT_VOLUME_DOWN) == 0) {
|
|
|
|
m_pulseaudio->inc_volume(-5);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (const exception& err) {
|
|
|
|
m_log.err("%s: Failed to handle command (%s)", name(), err.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
POLYBAR_NS_END
|