Waybar/include/modules/battery.hpp

55 lines
1.2 KiB
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#include <fmt/format.h>
#include <filesystem>
2022-10-04 04:14:37 +00:00
#if defined(__linux__)
2018-08-13 12:05:13 +00:00
#include <sys/inotify.h>
#endif
2022-04-06 06:37:19 +00:00
2018-08-13 20:33:07 +00:00
#include <algorithm>
2019-04-18 15:52:00 +00:00
#include <fstream>
2019-05-18 23:44:45 +00:00
#include <string>
#include <vector>
2022-04-06 06:37:19 +00:00
2022-11-24 11:28:52 +00:00
#include "ALabel.hpp"
#include "bar.hpp"
2019-04-18 15:52:00 +00:00
#include "util/sleeper_thread.hpp"
2018-08-08 21:54:58 +00:00
namespace waybar::modules {
2018-08-16 12:29:41 +00:00
namespace fs = std::filesystem;
2018-08-08 21:54:58 +00:00
2022-11-24 11:28:52 +00:00
class Battery : public ALabel {
2019-04-18 15:52:00 +00:00
public:
Battery(const std::string&, const waybar::Bar&, const Json::Value&);
2023-03-02 13:57:07 +00:00
virtual ~Battery();
auto update() -> void override;
2019-04-18 15:52:00 +00:00
private:
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
2022-04-06 06:37:19 +00:00
void refreshBatteries();
void worker();
const std::string getAdapterStatus(uint8_t capacity) const;
2021-01-24 20:39:14 +00:00
const std::tuple<uint8_t, float, std::string, float> getInfos();
2022-04-06 06:37:19 +00:00
const std::string formatTimeRemaining(float hoursRemaining);
void setBarClass(std::string&);
2022-04-06 06:37:19 +00:00
int global_watch;
std::map<fs::path, int> batteries_;
fs::path adapter_;
int battery_watch_fd_;
int global_watch_fd_;
std::mutex battery_list_mutex_;
std::string old_status_;
bool warnFirstTime_{true};
const Bar& bar_;
2022-04-06 06:37:19 +00:00
util::SleeperThread thread_;
util::SleeperThread thread_battery_update_;
util::SleeperThread thread_timer_;
2018-08-16 12:29:41 +00:00
};
2018-08-08 21:54:58 +00:00
2019-04-18 15:52:00 +00:00
} // namespace waybar::modules