2018-08-08 23:54:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2018-11-15 13:44:43 +00:00
|
|
|
#include <sys/sysinfo.h>
|
2018-11-11 02:11:32 +00:00
|
|
|
#include <fstream>
|
|
|
|
#include <vector>
|
|
|
|
#include <numeric>
|
2018-11-15 13:44:43 +00:00
|
|
|
#include <iostream>
|
2018-12-26 10:13:36 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-18 09:43:48 +00:00
|
|
|
#include "ALabel.hpp"
|
2018-08-08 23:54:33 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Cpu : public ALabel {
|
2018-08-16 12:29:41 +00:00
|
|
|
public:
|
2018-12-18 16:30:54 +00:00
|
|
|
Cpu(const std::string&, const Json::Value&);
|
2018-12-26 10:13:36 +00:00
|
|
|
~Cpu() = default;
|
2018-08-16 12:29:41 +00:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
2018-11-11 02:11:32 +00:00
|
|
|
static inline const std::string data_dir_ = "/proc/stat";
|
2018-11-15 13:44:43 +00:00
|
|
|
uint16_t getCpuLoad();
|
|
|
|
std::tuple<uint16_t, std::string> getCpuUsage();
|
|
|
|
std::vector<std::tuple<size_t, size_t>> parseCpuinfo();
|
|
|
|
|
|
|
|
std::vector<std::tuple<size_t, size_t>> prev_times_;
|
2018-08-16 12:29:41 +00:00
|
|
|
waybar::util::SleeperThread thread_;
|
|
|
|
};
|
2018-08-08 23:54:33 +00:00
|
|
|
|
|
|
|
}
|