Waybar/include/modules/battery.hpp

49 lines
1.1 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/";
2019-05-14 13:43:57 +00:00
void getBatteries();
void worker();
const std::string getAdapterStatus(uint8_t capacity, uint32_t current_now) const;
const std::tuple<uint8_t, uint32_t, std::string> getInfos() const;
2019-04-18 15:52:00 +00:00
util::SleeperThread thread_;
util::SleeperThread thread_timer_;
std::vector<fs::path> batteries_;
fs::path adapter_;
int fd_;
std::vector<int> wds_;
std::string old_status_;
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