2018-08-08 23:54:33 +00:00
|
|
|
#include "modules/cpu.hpp"
|
|
|
|
|
2018-08-20 12:50:45 +00:00
|
|
|
waybar::modules::Cpu::Cpu(const Json::Value& config)
|
2018-08-26 23:36:25 +00:00
|
|
|
: ALabel(config, "{}%")
|
2018-08-08 23:54:33 +00:00
|
|
|
{
|
2018-08-16 12:29:41 +00:00
|
|
|
label_.set_name("cpu");
|
2018-10-26 07:27:16 +00:00
|
|
|
uint32_t interval = config_["interval"].isUInt() ? config_["interval"].asUInt() : 10;
|
2018-08-16 12:29:41 +00:00
|
|
|
thread_ = [this, interval] {
|
2018-08-20 12:50:45 +00:00
|
|
|
dp.emit();
|
2018-08-16 12:29:41 +00:00
|
|
|
thread_.sleep_for(chrono::seconds(interval));
|
2018-08-08 23:54:33 +00:00
|
|
|
};
|
2018-08-18 09:43:48 +00:00
|
|
|
}
|
2018-08-08 23:54:33 +00:00
|
|
|
|
2018-08-09 10:05:48 +00:00
|
|
|
auto waybar::modules::Cpu::update() -> void
|
|
|
|
{
|
2018-11-11 02:11:32 +00:00
|
|
|
if (prevTimes_.size() < 1) {
|
|
|
|
prevTimes_ = parseCpuinfo();
|
|
|
|
std::this_thread::sleep_for(chrono::milliseconds(100));
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|
2018-11-11 02:11:32 +00:00
|
|
|
std::vector< std::tuple<size_t, size_t> > currTimes = parseCpuinfo();
|
|
|
|
std::string tooltip;
|
|
|
|
for (size_t i = 0; i < currTimes.size(); ++i) {
|
|
|
|
auto [currIdle, currTotal] = currTimes[i];
|
|
|
|
auto [prevIdle, prevTotal] = prevTimes_[i];
|
|
|
|
const float deltaIdle = currIdle - prevIdle;
|
|
|
|
const float deltaTotal = currTotal - prevTotal;
|
|
|
|
uint16_t load = 100 * (1 - deltaIdle / deltaTotal);
|
|
|
|
if (i == 0) {
|
|
|
|
label_.set_text(fmt::format(format_, load));
|
|
|
|
tooltip = fmt::format("Total: {}%", load);
|
|
|
|
} else {
|
|
|
|
tooltip = tooltip + fmt::format("\nCore{}: {}%", i - 1, load);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
label_.set_tooltip_text(tooltip);
|
|
|
|
prevTimes_ = currTimes;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector< std::tuple<size_t, size_t> > waybar::modules::Cpu::parseCpuinfo()
|
|
|
|
{
|
|
|
|
std::ifstream info(data_dir_);
|
|
|
|
if (!info.is_open()) {
|
|
|
|
throw std::runtime_error("Can't open " + data_dir_);
|
|
|
|
}
|
|
|
|
std::vector< std::tuple<size_t, size_t> > cpuinfo;
|
|
|
|
std::string line;
|
|
|
|
while (getline(info, line)) {
|
|
|
|
if (line.substr(0,3).compare("cpu") != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
std::stringstream sline(line.substr(5));
|
|
|
|
std::vector<size_t> times;
|
|
|
|
for (size_t time; sline >> time; times.push_back(time));
|
|
|
|
|
|
|
|
size_t idle_time = 0;
|
|
|
|
size_t total_time = 0;
|
|
|
|
if (times.size() >= 4) {
|
|
|
|
idle_time = times[3];
|
|
|
|
total_time = std::accumulate(times.begin(), times.end(), 0);
|
|
|
|
}
|
|
|
|
cpuinfo.push_back( {idle_time, total_time} );
|
|
|
|
}
|
|
|
|
return cpuinfo;
|
2018-08-09 10:05:48 +00:00
|
|
|
}
|