waybar/include/modules/cpu.hpp

36 lines
762 B
C++
Raw Normal View History

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