2018-08-08 23:54:33 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <fmt/format.h>
|
2019-05-18 23:44:45 +00:00
|
|
|
#include <cstdint>
|
2019-05-29 15:53:22 +00:00
|
|
|
#include <fstream>
|
2019-04-18 15:52:00 +00:00
|
|
|
#include <numeric>
|
2019-05-18 23:44:45 +00:00
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
2019-05-29 15:53:22 +00:00
|
|
|
#include <vector>
|
2018-08-18 09:43:48 +00:00
|
|
|
#include "ALabel.hpp"
|
2019-04-18 15:52:00 +00:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-08 23:54:33 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-08-18 09:43:48 +00:00
|
|
|
class Cpu : public ALabel {
|
2019-04-18 15:52:00 +00:00
|
|
|
public:
|
|
|
|
Cpu(const std::string&, const Json::Value&);
|
|
|
|
~Cpu() = default;
|
|
|
|
auto update() -> void;
|
|
|
|
|
|
|
|
private:
|
2021-09-19 10:41:59 +00:00
|
|
|
double getCpuLoad();
|
|
|
|
std::tuple<std::vector<uint16_t>, std::string> getCpuUsage();
|
|
|
|
std::tuple<float, float, float> getCpuFrequency();
|
|
|
|
std::vector<std::tuple<size_t, size_t>> parseCpuinfo();
|
|
|
|
std::vector<float> parseCpuFrequencies();
|
2018-11-15 13:44:43 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
std::vector<std::tuple<size_t, size_t>> prev_times_;
|
2019-05-29 15:53:22 +00:00
|
|
|
|
|
|
|
util::SleeperThread thread_;
|
2018-08-16 12:29:41 +00:00
|
|
|
};
|
2018-08-08 23:54:33 +00:00
|
|
|
|
2019-04-18 15:52:00 +00:00
|
|
|
} // namespace waybar::modules
|