2019-03-13 12:18:08 +00:00
|
|
|
#include "modules/temperature.hpp"
|
|
|
|
|
|
|
|
waybar::modules::Temperature::Temperature(const std::string& id, const Json::Value& config)
|
2019-05-22 10:06:24 +00:00
|
|
|
: ALabel(config, "temperature", id, "{temperatureC}°C", 10) {
|
2019-03-13 12:18:08 +00:00
|
|
|
if (config_["hwmon-path"].isString()) {
|
|
|
|
file_path_ = config_["hwmon-path"].asString();
|
|
|
|
} else {
|
2019-04-18 15:52:00 +00:00
|
|
|
auto zone = config_["thermal-zone"].isInt() ? config_["thermal-zone"].asInt() : 0;
|
2019-03-13 12:18:08 +00:00
|
|
|
file_path_ = fmt::format("/sys/class/thermal/thermal_zone{}/temp", zone);
|
|
|
|
}
|
2019-05-12 17:53:14 +00:00
|
|
|
std::ifstream temp(file_path_);
|
|
|
|
if (!temp.is_open()) {
|
2019-04-11 13:08:23 +00:00
|
|
|
throw std::runtime_error("Can't open " + file_path_);
|
|
|
|
}
|
2019-03-13 12:18:08 +00:00
|
|
|
thread_ = [this] {
|
|
|
|
dp.emit();
|
|
|
|
thread_.sleep_for(interval_);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
auto waybar::modules::Temperature::update() -> void {
|
2019-03-13 12:18:08 +00:00
|
|
|
auto [temperature_c, temperature_f] = getTemperature();
|
|
|
|
auto critical = isCritical(temperature_c);
|
|
|
|
auto format = format_;
|
|
|
|
if (critical) {
|
2019-04-18 15:52:00 +00:00
|
|
|
format = config_["format-critical"].isString() ? config_["format-critical"].asString() : format;
|
2019-03-13 12:18:08 +00:00
|
|
|
label_.get_style_context()->add_class("critical");
|
|
|
|
} else {
|
|
|
|
label_.get_style_context()->remove_class("critical");
|
|
|
|
}
|
2019-05-13 09:31:05 +00:00
|
|
|
auto max_temp = config_["critical-threshold"].isInt() ? config_["critical-threshold"].asInt() : 0;
|
|
|
|
label_.set_markup(fmt::format(format,
|
|
|
|
fmt::arg("temperatureC", temperature_c),
|
|
|
|
fmt::arg("temperatureF", temperature_f),
|
|
|
|
fmt::arg("icon", getIcon(temperature_c, "", max_temp))));
|
2019-03-13 12:18:08 +00:00
|
|
|
}
|
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
std::tuple<uint16_t, uint16_t> waybar::modules::Temperature::getTemperature() {
|
2019-03-13 12:18:08 +00:00
|
|
|
std::ifstream temp(file_path_);
|
|
|
|
if (!temp.is_open()) {
|
|
|
|
throw std::runtime_error("Can't open " + file_path_);
|
|
|
|
}
|
|
|
|
std::string line;
|
|
|
|
if (temp.good()) {
|
|
|
|
getline(temp, line);
|
|
|
|
}
|
|
|
|
temp.close();
|
2019-04-18 15:52:00 +00:00
|
|
|
auto temperature_c = std::strtol(line.c_str(), nullptr, 10) / 1000.0;
|
|
|
|
auto temperature_f = temperature_c * 1.8 + 32;
|
2019-03-13 12:18:08 +00:00
|
|
|
std::tuple<uint16_t, uint16_t> temperatures(std::round(temperature_c), std::round(temperature_f));
|
|
|
|
return temperatures;
|
|
|
|
}
|
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
bool waybar::modules::Temperature::isCritical(uint16_t temperature_c) {
|
|
|
|
return config_["critical-threshold"].isInt() &&
|
|
|
|
temperature_c >= config_["critical-threshold"].asInt();
|
2019-05-22 10:06:24 +00:00
|
|
|
}
|