1
0
Fork 0
mirror of https://github.com/polybar/polybar.git synced 2024-11-11 13:50:56 -05:00
polybar/include/utils/inotify.hpp
Patrick Ziegler 56779a5902
Make the event loop return shared_ptrs (#2842)
* Return shared_ptr from eventloop

* Add -Wdeprecated-copy-dtor warning

Produces a warning if classes don't have explicit copy operations if
they have a user-defined constructor.
This helps us stick to the rule of 5 (kinda, no warnings for missing
move operators).

* Clean up eventloop

* Fix compiler warnings

* Fix fs_event_handle_t name
2022-10-15 23:21:40 +02:00

44 lines
805 B
C++

#pragma once
#include <poll.h>
#include <sys/inotify.h>
#include <cstdio>
#include "common.hpp"
#include "utils/mixins.hpp"
POLYBAR_NS
struct inotify_event {
bool is_valid = false;
string filename;
bool is_dir;
int wd = 0;
int cookie = 0;
int mask = 0;
};
class inotify_watch : public non_copyable_mixin {
public:
explicit inotify_watch(string path);
~inotify_watch();
inotify_watch(inotify_watch&& other) noexcept;
inotify_watch& operator=(inotify_watch&& other) noexcept;
void attach(int mask = IN_MODIFY);
void remove(bool force = false);
bool poll(int wait_ms = 1000) const;
inotify_event get_event() const;
string path() const;
int get_file_descriptor() const;
protected:
string m_path;
int m_fd{-1};
int m_wd{-1};
int m_mask{0};
};
POLYBAR_NS_END