polybar/include/utils/inotify.hpp

48 lines
889 B
C++
Raw Normal View History

2016-06-15 03:32:35 +00:00
#pragma once
#include <poll.h>
2016-11-25 07:42:31 +00:00
#include <sys/inotify.h>
2016-06-15 03:32:35 +00:00
#include <cstdio>
#include "common.hpp"
#include "utils/factory.hpp"
2016-06-15 03:32:35 +00:00
2016-11-19 05:22:44 +00:00
POLYBAR_NS
2016-06-15 03:32:35 +00:00
struct inotify_event {
string filename;
bool is_dir;
int wd = 0;
int cookie = 0;
int mask = 0;
};
class inotify_watch {
public:
explicit inotify_watch(string path);
~inotify_watch();
void attach(int mask = IN_MODIFY);
void remove(bool force = false);
2016-12-26 09:37:14 +00:00
bool poll(int wait_ms = 1000) const;
unique_ptr<inotify_event> get_event() const;
unique_ptr<inotify_event> await_match() const;
const string path() const;
int get_file_descriptor() const;
protected:
string m_path;
2016-12-26 09:37:14 +00:00
int m_fd{-1};
int m_wd{-1};
int m_mask{0};
};
2016-06-15 03:32:35 +00:00
namespace inotify_util {
template <typename... Args>
decltype(auto) make_watch(Args&&... args) {
return factory_util::unique<inotify_watch>(forward<Args>(args)...);
}
2016-06-15 03:32:35 +00:00
}
2016-11-19 05:22:44 +00:00
POLYBAR_NS_END