mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-11-04 01:58:54 +01:00 
			
		
		
		
	Written by Dmitry Matveev as part of GSoC 2011: http://netbsd-soc.sourceforge.net/projects/kqueue4gio/ This brings native file monitoring support on systems supporting kqueue(3) (all BSDs) and remove the need to rely on the unmaintained gamin software. The backend adds GKqueueDirectoryMonitor and GKqueueFileMonitor. Some parts rewritten by myself (to prevent needing a configuration file). Helpful inputs from Colin Walters and Simon McVittie. https://bugzilla.gnome.org/show_bug.cgi?id=679793
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*******************************************************************************
 | 
						|
  Copyright (c) 2011, 2012 Dmitry Matveev <me@dmitrymatveev.co.uk>
 | 
						|
 | 
						|
  Permission is hereby granted, free of charge, to any person obtaining a copy
 | 
						|
  of this software and associated documentation files (the "Software"), to deal
 | 
						|
  in the Software without restriction, including without limitation the rights
 | 
						|
  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 | 
						|
  copies of the Software, and to permit persons to whom the Software is
 | 
						|
  furnished to do so, subject to the following conditions:
 | 
						|
 | 
						|
  The above copyright notice and this permission notice shall be included in
 | 
						|
  all copies or substantial portions of the Software.
 | 
						|
 | 
						|
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 | 
						|
  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 | 
						|
  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 | 
						|
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 | 
						|
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 | 
						|
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 | 
						|
  THE SOFTWARE.
 | 
						|
*******************************************************************************/
 | 
						|
 | 
						|
#ifndef __DEP_LIST_H__
 | 
						|
#define __DEP_LIST_H__
 | 
						|
 | 
						|
#include <sys/types.h> /* ino_t */
 | 
						|
 | 
						|
typedef struct dep_list {
 | 
						|
    struct dep_list *next;
 | 
						|
 | 
						|
    char *path;
 | 
						|
    ino_t inode;
 | 
						|
} dep_list;
 | 
						|
 | 
						|
typedef void (* no_entry_cb)     (void *udata);
 | 
						|
typedef void (* single_entry_cb) (void *udata, const char *path, ino_t inode);
 | 
						|
typedef void (* dual_entry_cb)   (void *udata,
 | 
						|
                                  const char *from_path, ino_t from_inode,
 | 
						|
                                  const char *to_path,   ino_t to_inode);
 | 
						|
typedef void (* list_cb)         (void *udata, const dep_list *list);
 | 
						|
 | 
						|
 | 
						|
typedef struct traverse_cbs {
 | 
						|
    single_entry_cb  added;
 | 
						|
    single_entry_cb  removed;
 | 
						|
    dual_entry_cb    replaced;
 | 
						|
    single_entry_cb  overwritten;
 | 
						|
    dual_entry_cb    moved;
 | 
						|
    list_cb          many_added;
 | 
						|
    list_cb          many_removed;
 | 
						|
    no_entry_cb      names_updated;
 | 
						|
} traverse_cbs;
 | 
						|
 | 
						|
dep_list* dl_create       (char *path, ino_t inode);
 | 
						|
void      dl_print        (const dep_list *dl);
 | 
						|
dep_list* dl_shallow_copy (const dep_list *dl);
 | 
						|
void      dl_shallow_free (dep_list *dl);
 | 
						|
void      dl_free         (dep_list *dl);
 | 
						|
dep_list* dl_listing      (const char *path);
 | 
						|
void      dl_diff         (dep_list **before, dep_list **after);
 | 
						|
 | 
						|
void
 | 
						|
dl_calculate (dep_list            *before,
 | 
						|
              dep_list            *after,
 | 
						|
              const traverse_cbs  *cbs,
 | 
						|
              void                *udata);
 | 
						|
 | 
						|
 | 
						|
#endif /* __DEP_LIST_H__ */
 |