polybar/include/modules/cpu.hpp

51 lines
1.1 KiB
C++
Raw Normal View History

#pragma once
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
#include "config.hpp"
2016-11-20 22:04:31 +00:00
#include "modules/meta/timer_module.hpp"
2016-05-19 14:41:06 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
namespace modules {
struct cpu_time {
2016-05-19 14:41:06 +00:00
unsigned long long user;
unsigned long long nice;
unsigned long long system;
unsigned long long idle;
unsigned long long total;
};
2016-06-15 03:32:35 +00:00
using cpu_time_t = unique_ptr<cpu_time>;
class cpu_module : public timer_module<cpu_module> {
public:
using timer_module::timer_module;
2016-11-02 19:22:45 +00:00
void setup();
bool update();
2016-11-25 12:55:15 +00:00
bool build(builder* builder, const string& tag) const;
2016-06-15 03:32:35 +00:00
protected:
2016-11-02 19:22:45 +00:00
bool read_values();
float get_load(size_t core) const;
2016-06-15 03:32:35 +00:00
private:
static constexpr auto TAG_LABEL = "<label>";
static constexpr auto TAG_BAR_LOAD = "<bar-load>";
static constexpr auto TAG_RAMP_LOAD = "<ramp-load>";
static constexpr auto TAG_RAMP_LOAD_PER_CORE = "<ramp-coreload>";
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
progressbar_t m_barload;
ramp_t m_rampload;
ramp_t m_rampload_core;
label_t m_label;
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
vector<cpu_time_t> m_cputimes;
vector<cpu_time_t> m_cputimes_prev;
2016-05-19 14:41:06 +00:00
2016-06-15 03:32:35 +00:00
float m_total = 0;
vector<float> m_load;
2016-05-19 14:41:06 +00:00
};
}
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END