2018-08-08 23:54:58 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-11-02 20:59:41 +01:00
|
|
|
#ifdef FILESYSTEM_EXPERIMENTAL
|
2018-11-22 15:47:23 +01:00
|
|
|
#include <experimental/filesystem>
|
2018-11-02 20:59:41 +01:00
|
|
|
#else
|
2018-11-22 15:47:23 +01:00
|
|
|
#include <filesystem>
|
2018-11-02 20:59:41 +01:00
|
|
|
#endif
|
2018-08-08 23:54:58 +02:00
|
|
|
#include <fmt/format.h>
|
2018-08-13 14:05:13 +02:00
|
|
|
#include <sys/inotify.h>
|
2018-08-13 22:33:07 +02:00
|
|
|
#include <algorithm>
|
2019-04-18 17:52:00 +02:00
|
|
|
#include <fstream>
|
2019-05-19 01:44:45 +02:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
2018-08-18 11:43:48 +02:00
|
|
|
#include "ALabel.hpp"
|
2019-04-18 17:52:00 +02:00
|
|
|
#include "util/sleeper_thread.hpp"
|
2018-08-08 23:54:58 +02:00
|
|
|
|
|
|
|
namespace waybar::modules {
|
|
|
|
|
2018-11-02 20:59:41 +01:00
|
|
|
#ifdef FILESYSTEM_EXPERIMENTAL
|
|
|
|
namespace fs = std::experimental::filesystem;
|
|
|
|
#else
|
2018-08-16 14:29:41 +02:00
|
|
|
namespace fs = std::filesystem;
|
2018-11-02 20:59:41 +01:00
|
|
|
#endif
|
2018-08-08 23:54:58 +02:00
|
|
|
|
2018-08-18 11:43:48 +02:00
|
|
|
class Battery : public ALabel {
|
2019-04-18 17:52:00 +02: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 21:39:14 +01: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 17:52:00 +02:00
|
|
|
|
2020-11-27 14:56:04 +01:00
|
|
|
int global_watch;
|
|
|
|
std::map<fs::path,int> batteries_;
|
2019-04-18 17:52:00 +02:00
|
|
|
fs::path adapter_;
|
2020-12-03 10:52:33 +01:00
|
|
|
int battery_watch_fd_;
|
|
|
|
int global_watch_fd_;
|
|
|
|
std::mutex battery_list_mutex_;
|
2019-04-18 17:52:00 +02:00
|
|
|
std::string old_status_;
|
2019-05-29 17:53:22 +02:00
|
|
|
|
|
|
|
util::SleeperThread thread_;
|
2020-12-03 10:52:33 +01:00
|
|
|
util::SleeperThread thread_battery_update_;
|
2019-05-29 17:53:22 +02:00
|
|
|
util::SleeperThread thread_timer_;
|
2018-08-16 14:29:41 +02:00
|
|
|
};
|
2018-08-08 23:54:58 +02:00
|
|
|
|
2019-04-18 17:52:00 +02:00
|
|
|
} // namespace waybar::modules
|