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 <fstream>
|
|
|
|
#include <iostream>
|
|
|
|
#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>
|
2018-08-08 23:54:58 +02:00
|
|
|
#include "util/chrono.hpp"
|
2018-08-18 11:43:48 +02:00
|
|
|
#include "ALabel.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 {
|
2018-08-16 14:29:41 +02:00
|
|
|
public:
|
2018-12-18 17:30:54 +01:00
|
|
|
Battery(const std::string&, const Json::Value&);
|
2018-08-19 13:39:57 +02:00
|
|
|
~Battery();
|
2018-08-16 14:29:41 +02:00
|
|
|
auto update() -> void;
|
|
|
|
private:
|
|
|
|
static inline const fs::path data_dir_ = "/sys/class/power_supply/";
|
2018-08-20 14:50:45 +02:00
|
|
|
|
|
|
|
void worker();
|
2018-11-23 11:57:37 +01:00
|
|
|
const std::tuple<uint8_t, std::string> getInfos() const;
|
|
|
|
const std::string getState(uint8_t) const;
|
2018-08-16 14:29:41 +02:00
|
|
|
|
|
|
|
util::SleeperThread thread_;
|
2018-11-16 10:02:12 +01:00
|
|
|
util::SleeperThread thread_timer_;
|
2018-08-16 14:29:41 +02:00
|
|
|
std::vector<fs::path> batteries_;
|
2018-08-19 13:39:57 +02:00
|
|
|
int fd_;
|
2018-11-02 22:08:55 +01:00
|
|
|
std::string old_status_;
|
2018-08-16 14:29:41 +02:00
|
|
|
};
|
2018-08-08 23:54:58 +02:00
|
|
|
|
|
|
|
}
|