2018-08-08 21:54:58 +00:00
|
|
|
#include "modules/clock.hpp"
|
|
|
|
|
2018-12-18 16:30:54 +00:00
|
|
|
waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
|
2020-01-21 22:48:16 +00:00
|
|
|
: ALabel(config, "clock", id, "{:%H:%M}", 60)
|
|
|
|
, fixed_time_zone_(false)
|
|
|
|
{
|
|
|
|
if (config_["timezone"].isString()) {
|
|
|
|
time_zone_ = date::locate_zone(config_["timezone"].asString());
|
|
|
|
fixed_time_zone_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config_["locale"].isString()) {
|
|
|
|
locale_ = std::locale(config_["locale"].asString());
|
|
|
|
} else {
|
|
|
|
locale_ = std::locale("");
|
|
|
|
}
|
|
|
|
|
2018-11-23 10:57:37 +00:00
|
|
|
thread_ = [this] {
|
2018-08-20 12:50:45 +00:00
|
|
|
dp.emit();
|
2019-03-07 11:34:12 +00:00
|
|
|
auto now = std::chrono::system_clock::now();
|
2018-11-23 10:57:37 +00:00
|
|
|
auto timeout = std::chrono::floor<std::chrono::seconds>(now + interval_);
|
2019-05-22 09:51:33 +00:00
|
|
|
auto diff = std::chrono::seconds(timeout.time_since_epoch().count() % interval_.count());
|
|
|
|
thread_.sleep_until(timeout - diff);
|
2018-08-08 21:54:58 +00:00
|
|
|
};
|
2018-08-18 09:43:48 +00:00
|
|
|
}
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2020-01-21 22:48:16 +00:00
|
|
|
using zoned_time = date::zoned_time<std::chrono::system_clock::duration>;
|
|
|
|
|
|
|
|
struct waybar_time {
|
|
|
|
std::locale locale;
|
|
|
|
zoned_time ztime;
|
|
|
|
};
|
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
auto waybar::modules::Clock::update() -> void {
|
2020-01-21 22:48:16 +00:00
|
|
|
if (!fixed_time_zone_) {
|
|
|
|
// Time zone can change. Be sure to pick that.
|
|
|
|
time_zone_ = date::current_zone();
|
2020-01-20 23:47:15 +00:00
|
|
|
}
|
2020-01-21 22:48:16 +00:00
|
|
|
auto now = std::chrono::system_clock::now();
|
|
|
|
waybar_time wtime = {locale_, date::make_zoned(time_zone_, now)};
|
|
|
|
|
|
|
|
auto text = fmt::format(format_, wtime);
|
2019-02-24 08:25:34 +00:00
|
|
|
label_.set_markup(text);
|
2019-04-18 15:52:00 +00:00
|
|
|
|
2019-02-24 08:25:34 +00:00
|
|
|
if (tooltipEnabled()) {
|
|
|
|
if (config_["tooltip-format"].isString()) {
|
|
|
|
auto tooltip_format = config_["tooltip-format"].asString();
|
2020-01-21 22:48:16 +00:00
|
|
|
auto tooltip_text = fmt::format(tooltip_format, wtime);
|
2019-02-24 08:25:34 +00:00
|
|
|
label_.set_tooltip_text(tooltip_text);
|
|
|
|
} else {
|
|
|
|
label_.set_tooltip_text(text);
|
|
|
|
}
|
|
|
|
}
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
2020-01-20 23:47:15 +00:00
|
|
|
|
2020-01-21 22:48:16 +00:00
|
|
|
template <>
|
|
|
|
struct fmt::formatter<waybar_time> : fmt::formatter<std::tm> {
|
2020-01-20 23:47:15 +00:00
|
|
|
template <typename FormatContext>
|
2020-01-21 22:48:16 +00:00
|
|
|
auto format(const waybar_time& t, FormatContext& ctx) {
|
|
|
|
return format_to(ctx.out(), "{}", date::format(t.locale, fmt::to_string(tm_format), t.ztime));
|
2020-01-20 23:47:15 +00:00
|
|
|
}
|
|
|
|
};
|