30# define FSW__MONITOR_H
194 void set_property(
const std::string& name,
const std::string& value);
204 void set_properties(
const std::map<std::string, std::string> options);
310 void set_filters(
const std::vector<monitor_filter>& filters);
428 const std::vector<fsw_event_type_filter>& filters);
615 std::chrono::milliseconds get_latency_ms()
const;
616 std::vector<compiled_monitor_filter> filters;
617 std::vector<fsw_event_type_filter> event_type_filters;
619 static void inactivity_callback(
monitor *mon);
620 mutable std::atomic<std::chrono::milliseconds> last_notification;
fsw_event_flag
Backend-agnostic change flags.
Definition cevent.h:66
Type representing a file change event.
Definition event.hpp:65
monitor & operator=(const monitor &that)=delete
This class is not copy assignable.
bool is_running()
Check whether the monitor is running.
Definition monitor.cpp:302
bool directory_only
Flag indicating whether only directories should be monitored.
Definition monitor.hpp:580
std::vector< std::string > paths
List of paths to watch.
Definition monitor.hpp:527
std::mutex notify_mutex
Mutex used to serialize access to the notify_events() method.
Definition monitor.hpp:612
bool allow_overflow
If true, queue overflow events will be notified to the caller, otherwise the monitor will throw a lib...
Definition monitor.hpp:565
void stop()
Stop the monitor.
Definition monitor.cpp:289
void add_filter(const monitor_filter &filter)
Add a path filter.
Definition monitor.cpp:115
void * context
Pointer to context data that will be passed to the monitor::callback.
Definition monitor.hpp:547
bool fire_idle_event
If true, the monitor will notify an event when idle.
Definition monitor.hpp:559
void * get_context() const
Get the pointer to the context data.
Definition monitor.cpp:199
void set_filters(const std::vector< monitor_filter > &filters)
Set the path filters.
Definition monitor.cpp:152
bool follow_symlinks
If true, symbolic links are followed.
Definition monitor.hpp:575
void set_latency(double latency)
Sets the latency.
Definition monitor.cpp:71
bool accept_event_type(fsw_event_flag event_type) const
Check whether an event should be accepted.
Definition monitor.cpp:170
bool should_stop
Flag indicating whether the monitor should preemptively stop.
Definition monitor.hpp:595
void set_allow_overflow(bool overflow)
Notify buffer overflows as change events.
Definition monitor.cpp:66
void notify_overflow(const std::string &path) const
Notify an overflow event.
Definition monitor.cpp:323
bool watch_access
Flag indicating whether file access should be watched.
Definition monitor.hpp:585
void set_context(void *context)
Set the context data.
Definition monitor.cpp:204
virtual void on_stop()
Execute an implementation-specific stop handler.
Definition monitor.cpp:412
void set_event_type_filters(const std::vector< fsw_event_type_filter > &filters)
Set the event type filters.
Definition monitor.cpp:108
void set_property(const std::string &name, const std::string &value)
Sets a custom property.
Definition monitor.cpp:137
void set_bubble_events(bool bubble_events)
Set the bubble events flag.
Definition monitor.cpp:209
void start()
Start the monitor.
Definition monitor.cpp:261
void set_follow_symlinks(bool follow)
Follow symlinks.
Definition monitor.cpp:160
double latency
Latency of the monitor.
Definition monitor.hpp:552
void set_properties(const std::map< std::string, std::string > options)
Sets the custom properties.
Definition monitor.cpp:142
std::map< std::string, std::string > properties
Map of custom properties.
Definition monitor.hpp:535
void set_watch_access(bool access)
Monitor file access.
Definition monitor.cpp:165
std::vector< fsw_event_flag > filter_flags(const event &evt) const
Filter event types.
Definition monitor.cpp:308
void set_recursive(bool recursive)
Recursively scan subdirectories.
Definition monitor.cpp:92
FSW_EVENT_CALLBACK * callback
Callback to which change events should be notified.
Definition monitor.hpp:542
virtual ~monitor()
Destructs a monitor instance.
Definition monitor.cpp:214
void set_fire_idle_event(bool fire_idle_event)
Sets the fire idle event flag.
Definition monitor.cpp:82
monitor(std::vector< std::string > paths, FSW_EVENT_CALLBACK *callback, void *context=nullptr)
Constructs a monitor watching the specified paths.
Definition monitor.cpp:50
std::string get_property(std::string name)
Gets the value of a property.
Definition monitor.cpp:147
bool bubble_events
Bubble events by joining flags received for the same (time, path) pair.
Definition monitor.hpp:601
monitor(const monitor &orig)=delete
This class is not copy constructible.
virtual void run()=0
Execute monitor loop.
bool recursive
If true, directories will be scanned recursively.
Definition monitor.hpp:570
bool running
Flag indicating whether the monitor is in the running state.
Definition monitor.hpp:590
std::mutex run_mutex
Mutex used to serialize access to the monitor state from multiple threads.
Definition monitor.hpp:607
bool accept_path(const std::string &path) const
Check whether a path should be accepted.
Definition monitor.cpp:182
void add_event_type_filter(const fsw_event_type_filter &filter)
Add an event type filter.
Definition monitor.cpp:102
void set_directory_only(bool directory_only)
Watch directories only.
Definition monitor.cpp:97
void notify_events(const std::vector< event > &events) const
Notify change events.
Definition monitor.cpp:333
Header of the libfswatch library defining the monitor types.
Header of the fsw::event class.
Header of the fsw::monitor_filter class.
Main namespace of libfswatch.
Definition event.cpp:24
struct monitor_filter { std::string text; fsw_filter_type type; bool case_sensitive; bool extended; static std::vector< monitor_filter > read_from_file(const std::string &path, void(*err_handler)( std::string)=nullptr); } monitor_filter
Path filters used to accept or reject file change events.
Definition filter.hpp:58
void FSW_EVENT_CALLBACK(const std::vector< event > &, void *)
Function definition of an event callback.
Definition monitor.hpp:57
Definition monitor.cpp:40
Event type filter.
Definition cfilter.h:56