2018-08-08 21:54:58 +00:00
|
|
|
#pragma once
|
|
|
|
|
2018-11-02 19:59:41 +00:00
|
|
|
#ifdef FILESYSTEM_EXPERIMENTAL
|
2018-11-22 14:47:23 +00:00
|
|
|
#include <experimental/filesystem>
|
2018-11-02 19:59:41 +00:00
|
|
|
#else
|
2018-11-22 14:47:23 +00:00
|
|
|
#include <filesystem>
|
2018-11-02 19:59:41 +00:00
|
|
|
#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>
|
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 21:54:58 +00:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-11-02 19:59:41 +00:00
|
|
|
#ifdef FILESYSTEM_EXPERIMENTAL
|
|
|
|
namespace fs = std::experimental::filesystem;
|
|
|
|
#else
|
2018-08-16 12:29:41 +00:00
|
|
|
namespace fs = std::filesystem;
|
2018-11-02 19:59:41 +00:00
|
|
|
#endif
|
2018-08-08 21:54:58 +00:00
|
|
|
|
2018-08-18 09:43:48 +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
|
|
|
|
2020-11-27 13:56:04 +00:00
|
|
|
int global_watch;
|
|
|
|
std::map<fs::path,int> batteries_;
|
2019-04-18 15:52:00 +00:00
|
|
|
fs::path adapter_;
|
2020-12-03 09:52:33 +00:00
|
|
|
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_;
|
2020-12-03 09:52:33 +00:00
|
|
|
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
|