fswatch 1.20.1
Loading...
Searching...
No Matches
monitor.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2014-2022 Enrico M. Crisostomo
3 *
4 * This program is free software; you can redistribute it and/or modify it under
5 * the terms of the GNU General Public License as published by the Free Software
6 * Foundation; either version 3, or (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
11 * details.
12 *
13 * You should have received a copy of the GNU General Public License along with
14 * this program. If not, see <http://www.gnu.org/licenses/>.
15 */
29#ifndef FSW__MONITOR_H
30# define FSW__MONITOR_H
31
32# include "filter.hpp"
33# include <vector>
34# include <string>
35# include <mutex>
36# include <atomic>
37# include <chrono>
38# include <map>
39# include "event.hpp"
41
45namespace fsw
46{
57 typedef void FSW_EVENT_CALLBACK(const std::vector<event>&, void *);
58
60
141 {
142 public:
156 monitor(std::vector<std::string> paths,
158 void *context = nullptr);
159
174 virtual ~monitor();
175
179 monitor(const monitor& orig) = delete;
180
184 monitor& operator=(const monitor& that) = delete;
185
194 void set_property(const std::string& name, const std::string& value);
195
204 void set_properties(const std::map<std::string, std::string> options);
205
215 std::string get_property(std::string name);
216
230 void set_latency(double latency);
231
244
257 void set_allow_overflow(bool overflow);
258
273 void set_recursive(bool recursive);
274
292
300 void add_filter(const monitor_filter& filter);
301
310 void set_filters(const std::vector<monitor_filter>& filters);
311
325 void set_follow_symlinks(bool follow);
326
335 void *get_context() const;
336
349 void set_context(void *context);
350
361
383 void start();
384
399 void stop();
400
408 bool is_running();
409
418
428 const std::vector<fsw_event_type_filter>& filters);
429
436 void set_watch_access(bool access);
437
438 protected:
448 bool accept_event_type(fsw_event_flag event_type) const;
449
459 bool accept_path(const std::string& path) const;
460
468 void notify_events(const std::vector<event>& events) const;
469
480 void notify_overflow(const std::string& path) const;
481
491 std::vector<fsw_event_flag> filter_flags(const event& evt) const;
492
507 virtual void run() = 0;
508
519 virtual void on_stop();
520
521 protected:
527 std::vector<std::string> paths;
528
535 std::map<std::string, std::string> properties;
536
543
547 void *context = nullptr;
548
552 double latency = 1.0;
553
559 bool fire_idle_event = false;
560
565 bool allow_overflow = false;
566
570 bool recursive = false;
571
575 bool follow_symlinks = false;
576
580 bool directory_only = false;
581
585 bool watch_access = false;
586
590 bool running = false;
591
595 bool should_stop = false;
596
601 bool bubble_events = false;
602
607 mutable std::mutex run_mutex;
608
612 mutable std::mutex notify_mutex;
613
614 private:
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;
618
619 static void inactivity_callback(monitor *mon);
620 mutable std::atomic<std::chrono::milliseconds> last_notification;
621 };
622}
623
624#endif /* FSW__MONITOR_H */
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