Waybar/include/modules/battery.hpp

44 lines
899 B
C++
Raw Normal View History

2018-08-08 21:54:58 +00:00
#pragma once
#ifdef FILESYSTEM_EXPERIMENTAL
#include <experimental/filesystem>
#else
#include <filesystem>
#endif
2018-08-08 21:54:58 +00:00
#include <fstream>
#include <iostream>
#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>
2018-08-08 21:54:58 +00:00
#include "util/chrono.hpp"
#include "ALabel.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 {
2018-08-16 12:29:41 +00:00
public:
2018-08-20 12:50:45 +00:00
Battery(const Json::Value&);
2018-08-19 11:39:57 +00:00
~Battery();
2018-08-16 12:29:41 +00:00
auto update() -> void;
private:
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
2018-08-20 12:50:45 +00:00
void worker();
std::tuple<uint16_t, std::string> getInfos();
std::string getState(uint16_t);
2018-08-16 12:29:41 +00:00
util::SleeperThread thread_;
2018-11-16 09:02:12 +00:00
util::SleeperThread thread_timer_;
2018-08-16 12:29:41 +00:00
std::vector<fs::path> batteries_;
2018-08-19 11:39:57 +00:00
int fd_;
2018-11-02 21:08:55 +00:00
std::string old_status_;
2018-08-16 12:29:41 +00:00
};
2018-08-08 21:54:58 +00:00
}