waybar/include/modules/battery.hpp

48 lines
1.1 KiB
C++
Raw Normal View History

2018-08-08 23:54:58 +02:00
#pragma once
#ifdef FILESYSTEM_EXPERIMENTAL
2018-11-22 15:47:23 +01:00
#include <experimental/filesystem>
#else
2018-11-22 15:47:23 +01:00
#include <filesystem>
#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-12-26 11:13:36 +01:00
#include "util/sleeper_thread.hpp"
#include "ALabel.hpp"
2018-08-08 23:54:58 +02:00
namespace waybar::modules {
#ifdef FILESYSTEM_EXPERIMENTAL
namespace fs = std::experimental::filesystem;
#else
2018-08-16 14:29:41 +02:00
namespace fs = std::filesystem;
#endif
2018-08-08 23:54:58 +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/";
void getBatteries();
2018-08-20 14:50:45 +02:00
void worker();
const std::string getAdapterStatus(uint8_t capacity) const;
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_;
fs::path adapter_;
2018-08-19 13:39:57 +02:00
int fd_;
std::vector<int> wds_;
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
}