libinotifytools
inotifytools.h
Go to the documentation of this file.
1 #ifndef _inotifytools_H
2 #define _inotifytools_H
3 
4 #ifdef __FreeBSD__
5 #define stat64 stat
6 #define lstat64 lstat
7 #endif
8 
9 #ifdef __cplusplus
10 extern "C"
11 {
12 #endif
13 
14 #include <stdio.h>
15 
16 #define MAX_STRLEN 4096
17 
25 struct nstring {
26  char buf[MAX_STRLEN];
27  unsigned int len;
28 };
29 
30 int inotifytools_str_to_event(char const * event);
31 int inotifytools_str_to_event_sep(char const * event, char sep);
32 char * inotifytools_event_to_str(int events);
33 char * inotifytools_event_to_str_sep(int events, char sep);
34 void inotifytools_set_filename_by_wd( int wd, char const * filename );
35 void inotifytools_set_filename_by_filename( char const * oldname,
36  char const * newname );
37 void inotifytools_replace_filename( char const * oldname,
38  char const * newname );
39 struct inotify_event;
40 const char* inotifytools_dirname_from_event(struct inotify_event* event,
41  size_t* dirnamelen);
42 const char* inotifytools_filename_from_event(struct inotify_event* event,
43  char const** eventname,
44  size_t* dirnamelen);
45 char* inotifytools_dirpath_from_event(struct inotify_event* event);
46 struct watch;
47 const char* inotifytools_filename_from_watch(struct watch* w);
48 const char* inotifytools_filename_from_wd(int wd);
49 int inotifytools_wd_from_filename( char const * filename );
50 int inotifytools_remove_watch_by_filename( char const * filename );
52 int inotifytools_watch_file(char const* filename, int events);
53 int inotifytools_watch_files(char const* filenames[], int events);
54 int inotifytools_watch_recursively(char const* path, int events);
56  int events,
57  char const** exclude_list);
58 // [UH]
59 int inotifytools_ignore_events_by_regex( char const *pattern, int flags );
60 int inotifytools_ignore_events_by_inverted_regex( char const *pattern, int flags );
61 struct inotify_event * inotifytools_next_event( long int timeout );
62 struct inotify_event * inotifytools_next_events( long int timeout, int num_events );
63 int inotifytools_error();
64 int inotifytools_get_stat_by_wd( int wd, int event );
65 int inotifytools_get_stat_total( int event );
66 int inotifytools_get_stat_by_filename( char const * filename,
67  int event );
68 void inotifytools_initialize_stats();
69 int inotifytools_initialize();
70 int inotifytools_init(int fanotify, int watch_filesystem, int verbose);
73 
74 int inotifytools_printf( struct inotify_event* event, char* fmt );
75 int inotifytools_fprintf( FILE* file, struct inotify_event* event, char* fmt );
76 int inotifytools_sprintf( struct nstring * out, struct inotify_event* event, char* fmt );
77 int inotifytools_snprintf( struct nstring * out, int size, struct inotify_event* event,
78  char* fmt );
79 void inotifytools_set_printf_timefmt( char * fmt );
80 
84 
85 #ifdef __cplusplus
86 }
87 #endif
88 
89 #endif // _inotifytools_H
unsigned int len
Definition: inotifytools.h:27
int inotifytools_printf(struct inotify_event *event, char *fmt)
int inotifytools_remove_watch_by_wd(int wd)
void inotifytools_set_printf_timefmt(char *fmt)
int inotifytools_sprintf(struct nstring *out, struct inotify_event *event, char *fmt)
int inotifytools_get_max_user_watches()
int inotifytools_watch_recursively_with_exclude(char const *path, int events, char const **exclude_list)
struct inotify_event * inotifytools_next_events(long int timeout, int num_events)
const char * inotifytools_filename_from_wd(int wd)
Definition: inotifytools.c:877
const char * inotifytools_filename_from_event(struct inotify_event *event, char const **eventname, size_t *dirnamelen)
Definition: inotifytools.c:925
int inotifytools_fprintf(FILE *file, struct inotify_event *event, char *fmt)
char * inotifytools_event_to_str(int events)
Definition: inotifytools.c:628
void inotifytools_set_filename_by_filename(char const *oldname, char const *newname)
This structure holds string that can contain any character including NULL.
Definition: inotifytools.h:25
int inotifytools_wd_from_filename(char const *filename)
Definition: inotifytools.c:982
void inotifytools_set_filename_by_wd(int wd, char const *filename)
int inotifytools_watch_files(char const *filenames[], int events)
int inotifytools_get_num_watches()
char * inotifytools_dirpath_from_event(struct inotify_event *event)
Definition: inotifytools.c:951
int inotifytools_error()
int inotifytools_snprintf(struct nstring *out, int size, struct inotify_event *event, char *fmt)
char buf[MAX_STRLEN]
Definition: inotifytools.h:26
int inotifytools_init(int fanotify, int watch_filesystem, int verbose)
Definition: inotifytools.c:301
int inotifytools_remove_watch_by_filename(char const *filename)
int inotifytools_ignore_events_by_inverted_regex(char const *pattern, int flags)
int inotifytools_watch_file(char const *filename, int events)
const char * inotifytools_dirname_from_event(struct inotify_event *event, size_t *dirnamelen)
Definition: inotifytools.c:896
const char * inotifytools_filename_from_watch(struct watch *w)
Definition: inotifytools.c:848
int inotifytools_get_max_user_instances()
void inotifytools_cleanup()
Definition: inotifytools.c:368
int inotifytools_ignore_events_by_regex(char const *pattern, int flags)
void inotifytools_replace_filename(char const *oldname, char const *newname)
struct inotify_event * inotifytools_next_event(long int timeout)
int inotifytools_str_to_event(char const *event)
Definition: inotifytools.c:541
int inotifytools_str_to_event_sep(char const *event, char sep)
Definition: inotifytools.c:466
int inotifytools_get_max_queued_events()
char * inotifytools_event_to_str_sep(int events, char sep)
Definition: inotifytools.c:656
int inotifytools_watch_recursively(char const *path, int events)