2016-12-13 17:24:01 +00:00
|
|
|
#include <fstream>
|
2016-12-15 02:30:41 +00:00
|
|
|
#include <istream>
|
2016-12-13 17:24:01 +00:00
|
|
|
|
2016-11-02 19:22:45 +00:00
|
|
|
#include "modules/cpu.hpp"
|
2016-11-20 22:04:31 +00:00
|
|
|
|
2016-11-19 14:49:03 +00:00
|
|
|
#include "drawtypes/label.hpp"
|
|
|
|
#include "drawtypes/progressbar.hpp"
|
|
|
|
#include "drawtypes/ramp.hpp"
|
2016-11-02 19:22:45 +00:00
|
|
|
#include "utils/math.hpp"
|
|
|
|
|
2016-11-20 22:04:31 +00:00
|
|
|
#include "modules/meta/base.inl"
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
namespace modules {
|
2016-11-20 22:04:31 +00:00
|
|
|
template class module<cpu_module>;
|
|
|
|
|
2016-12-21 07:00:09 +00:00
|
|
|
cpu_module::cpu_module(const bar_settings& bar, string name_) : timer_module<cpu_module>(bar, move(name_)) {
|
2016-12-31 02:04:01 +00:00
|
|
|
m_interval = m_conf.get<decltype(m_interval)>(name(), "interval", 1s);
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2018-10-15 23:11:05 +00:00
|
|
|
m_ramp_padding = m_conf.get<decltype(m_ramp_padding)>(name(), "ramp-coreload-spacing", 1);
|
|
|
|
|
2016-11-19 14:49:03 +00:00
|
|
|
m_formatter->add(DEFAULT_FORMAT, TAG_LABEL, {TAG_LABEL, TAG_BAR_LOAD, TAG_RAMP_LOAD, TAG_RAMP_LOAD_PER_CORE});
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2017-01-13 19:03:08 +00:00
|
|
|
// warmup cpu times
|
|
|
|
read_values();
|
|
|
|
read_values();
|
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
if (m_formatter->has(TAG_BAR_LOAD)) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_barload = load_progressbar(m_bar, m_conf, name(), TAG_BAR_LOAD);
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_formatter->has(TAG_RAMP_LOAD)) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_rampload = load_ramp(m_conf, name(), TAG_RAMP_LOAD);
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_formatter->has(TAG_RAMP_LOAD_PER_CORE)) {
|
2016-11-02 19:22:45 +00:00
|
|
|
m_rampload_core = load_ramp(m_conf, name(), TAG_RAMP_LOAD_PER_CORE);
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
|
|
|
if (m_formatter->has(TAG_LABEL)) {
|
2017-01-13 19:03:08 +00:00
|
|
|
m_label = load_optional_label(m_conf, name(), TAG_LABEL, "%percentage%%");
|
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool cpu_module::update() {
|
2016-11-25 12:55:15 +00:00
|
|
|
if (!read_values()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
return false;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
m_total = 0.0f;
|
|
|
|
m_load.clear();
|
|
|
|
|
|
|
|
auto cores_n = m_cputimes.size();
|
2016-11-25 12:55:15 +00:00
|
|
|
if (!cores_n) {
|
2016-11-02 19:22:45 +00:00
|
|
|
return false;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
|
2016-12-20 14:24:41 +00:00
|
|
|
vector<string> percentage_cores;
|
2016-11-02 19:22:45 +00:00
|
|
|
for (size_t i = 0; i < cores_n; i++) {
|
|
|
|
auto load = get_load(i);
|
|
|
|
m_total += load;
|
|
|
|
m_load.emplace_back(load);
|
2016-12-20 14:24:41 +00:00
|
|
|
|
|
|
|
if (m_label) {
|
2017-01-13 19:03:08 +00:00
|
|
|
percentage_cores.emplace_back(to_string(static_cast<int>(load + 0.5)));
|
2016-12-20 14:24:41 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
m_total = m_total / static_cast<float>(cores_n);
|
|
|
|
|
|
|
|
if (m_label) {
|
|
|
|
m_label->reset_tokens();
|
2017-01-13 19:03:08 +00:00
|
|
|
m_label->replace_token("%percentage%", to_string(static_cast<int>(m_total + 0.5)));
|
2018-12-03 00:48:18 +00:00
|
|
|
m_label->replace_token("%percentage-sum%", to_string(static_cast<int>(m_total * static_cast<float>(cores_n) + 0.5)));
|
2018-09-15 14:43:55 +00:00
|
|
|
m_label->replace_token("%percentage-cores%", string_util::join(percentage_cores, "% ") + "%");
|
2016-12-20 14:24:41 +00:00
|
|
|
|
2017-01-13 19:03:08 +00:00
|
|
|
for (size_t i = 0; i < percentage_cores.size(); i++) {
|
|
|
|
m_label->replace_token("%percentage-core" + to_string(i + 1) + "%", percentage_cores[i]);
|
2016-12-20 14:24:41 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
bool cpu_module::build(builder* builder, const string& tag) const {
|
|
|
|
if (tag == TAG_LABEL) {
|
2016-11-02 19:22:45 +00:00
|
|
|
builder->node(m_label);
|
2016-11-25 12:55:15 +00:00
|
|
|
} else if (tag == TAG_BAR_LOAD) {
|
2016-11-02 19:22:45 +00:00
|
|
|
builder->node(m_barload->output(m_total));
|
2016-11-25 12:55:15 +00:00
|
|
|
} else if (tag == TAG_RAMP_LOAD) {
|
2016-11-02 19:22:45 +00:00
|
|
|
builder->node(m_rampload->get_by_percentage(m_total));
|
2016-11-25 12:55:15 +00:00
|
|
|
} else if (tag == TAG_RAMP_LOAD_PER_CORE) {
|
2016-11-02 19:22:45 +00:00
|
|
|
auto i = 0;
|
|
|
|
for (auto&& load : m_load) {
|
2016-11-25 12:55:15 +00:00
|
|
|
if (i++ > 0) {
|
2018-10-15 23:11:05 +00:00
|
|
|
builder->space(m_ramp_padding);
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
builder->node(m_rampload_core->get_by_percentage(load));
|
|
|
|
}
|
|
|
|
builder->node(builder->flush());
|
2016-11-25 12:55:15 +00:00
|
|
|
} else {
|
2016-11-02 19:22:45 +00:00
|
|
|
return false;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool cpu_module::read_values() {
|
|
|
|
m_cputimes_prev.swap(m_cputimes);
|
|
|
|
m_cputimes.clear();
|
|
|
|
|
|
|
|
try {
|
|
|
|
std::ifstream in(PATH_CPU_INFO);
|
|
|
|
string str;
|
|
|
|
|
|
|
|
while (std::getline(in, str) && str.compare(0, 3, "cpu") == 0) {
|
|
|
|
// skip line with accumulated value
|
2016-11-25 12:55:15 +00:00
|
|
|
if (str.compare(0, 4, "cpu ") == 0) {
|
2016-11-02 19:22:45 +00:00
|
|
|
continue;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
auto values = string_util::split(str, ' ');
|
|
|
|
|
|
|
|
m_cputimes.emplace_back(new cpu_time);
|
2016-11-25 12:55:15 +00:00
|
|
|
m_cputimes.back()->user = std::stoull(values[1], nullptr, 10);
|
|
|
|
m_cputimes.back()->nice = std::stoull(values[2], nullptr, 10);
|
|
|
|
m_cputimes.back()->system = std::stoull(values[3], nullptr, 10);
|
|
|
|
m_cputimes.back()->idle = std::stoull(values[4], nullptr, 10);
|
2016-11-19 14:49:03 +00:00
|
|
|
m_cputimes.back()->total =
|
|
|
|
m_cputimes.back()->user + m_cputimes.back()->nice + m_cputimes.back()->system + m_cputimes.back()->idle;
|
2016-11-02 19:22:45 +00:00
|
|
|
}
|
|
|
|
} catch (const std::ios_base::failure& e) {
|
|
|
|
m_log.err("Failed to read CPU values (what: %s)", e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
return !m_cputimes.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
float cpu_module::get_load(size_t core) const {
|
2016-11-25 12:55:15 +00:00
|
|
|
if (m_cputimes.empty() || m_cputimes_prev.empty()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
return 0;
|
2016-11-25 12:55:15 +00:00
|
|
|
} else if (core >= m_cputimes.size() || core >= m_cputimes_prev.size()) {
|
2016-11-02 19:22:45 +00:00
|
|
|
return 0;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
auto& last = m_cputimes[core];
|
|
|
|
auto& prev = m_cputimes_prev[core];
|
|
|
|
|
|
|
|
auto last_idle = last->idle;
|
|
|
|
auto prev_idle = prev->idle;
|
|
|
|
|
|
|
|
auto diff = last->total - prev->total;
|
|
|
|
|
2016-11-25 12:55:15 +00:00
|
|
|
if (diff == 0) {
|
2016-11-02 19:22:45 +00:00
|
|
|
return 0;
|
2016-11-25 12:55:15 +00:00
|
|
|
}
|
2016-11-02 19:22:45 +00:00
|
|
|
|
|
|
|
float percentage = 100.0f * (diff - (last_idle - prev_idle)) / diff;
|
|
|
|
|
|
|
|
return math_util::cap<float>(percentage, 0, 100);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-19 05:22:44 +00:00
|
|
|
POLYBAR_NS_END
|