Waybar/include/modules/battery.hpp

54 lines
1.5 KiB
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#ifdef FILESYSTEM_EXPERIMENTAL
2018-11-22 14:47:23 +00:00
#include <experimental/filesystem>
#else
2018-11-22 14:47:23 +00:00
#include <filesystem>
#endif
2018-08-08 21:54:58 +00:00
#include <fmt/format.h>
2018-08-13 12:05:13 +00:00
#include <sys/inotify.h>
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>
#include "ALabel.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 {
#ifdef FILESYSTEM_EXPERIMENTAL
namespace fs = std::experimental::filesystem;
#else
2018-08-16 12:29:41 +00:00
namespace fs = std::filesystem;
#endif
2018-08-08 21:54:58 +00:00
class Battery : public ALabel {
2019-04-18 15:52:00 +00:00
public:
Battery(const std::string&, const Json::Value&);
~Battery();
auto update() -> void;
private:
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
2021-01-24 20:39:14 +00:00
void refreshBatteries();
void worker();
const std::string getAdapterStatus(uint8_t capacity) const;
const std::tuple<uint8_t, float, std::string, float> getInfos();
const std::string formatTimeRemaining(float hoursRemaining);
2019-04-18 15:52:00 +00:00
int global_watch;
std::map<fs::path,int> batteries_;
2019-04-18 15:52:00 +00:00
fs::path adapter_;
int battery_watch_fd_;
int global_watch_fd_;
std::mutex battery_list_mutex_;
2019-04-18 15:52:00 +00:00
std::string old_status_;
2019-05-29 15:53:22 +00:00
util::SleeperThread thread_;
util::SleeperThread thread_battery_update_;
2019-05-29 15:53:22 +00:00
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