Waybar/include/modules/battery.hpp

44 lines
937 B
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 <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-12-18 16:30:54 +00:00
Battery(const std::string&, 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();
2018-11-23 10:57:37 +00:00
const std::tuple<uint8_t, std::string> getInfos() const;
const std::string getState(uint8_t) const;
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
}