mirror of
https://github.com/polybar/polybar.git
synced 2024-10-27 05:23:39 -04:00
b417c9f812
Module used to query the GitHub API for information. Currently only supports notification count. Ref #84
38 lines
807 B
C++
38 lines
807 B
C++
POLYBAR_NS
|
|
|
|
namespace modules {
|
|
// public {{{
|
|
|
|
template <typename Impl>
|
|
void timer_module<Impl>::start() {
|
|
CAST_MOD(Impl)->m_mainthread = thread(&timer_module::runner, this);
|
|
}
|
|
|
|
// }}}
|
|
// protected {{{
|
|
|
|
template <typename Impl>
|
|
void timer_module<Impl>::runner() {
|
|
try {
|
|
while (CONST_MOD(Impl).running()) {
|
|
{
|
|
std::lock_guard<std::mutex> guard(this->m_updatelock);
|
|
|
|
if (CAST_MOD(Impl)->update())
|
|
CAST_MOD(Impl)->broadcast();
|
|
}
|
|
if (CONST_MOD(Impl).running()) {
|
|
CAST_MOD(Impl)->sleep(m_interval);
|
|
}
|
|
}
|
|
} catch (const module_error& err) {
|
|
CAST_MOD(Impl)->halt(err.what());
|
|
} catch (const std::exception& err) {
|
|
CAST_MOD(Impl)->halt(err.what());
|
|
}
|
|
}
|
|
|
|
// }}}
|
|
}
|
|
|
|
POLYBAR_NS_END
|