| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  | ! Copyright (C) 2008 Slava Pestov. | 
					
						
							|  |  |  | ! See http://factorcode.org/license.txt for BSD license. | 
					
						
							| 
									
										
										
										
											2010-04-01 15:43:27 -04:00
										 |  |  | USING: alien.c-types alien.syntax math math.bitwise classes.struct | 
					
						
							|  |  |  | literals ;
 | 
					
						
							| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  | IN: unix.linux.inotify | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-09-08 15:15:25 -04:00
										 |  |  | STRUCT: inotify-event | 
					
						
							|  |  |  |     { wd int } | 
					
						
							|  |  |  |     { mask uint } | 
					
						
							|  |  |  |     { cookie uint } | 
					
						
							|  |  |  |     { len uint } | 
					
						
							|  |  |  |     { name char[0] } ;
 | 
					
						
							| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-23 21:49:33 -05:00
										 |  |  | CONSTANT: IN_ACCESS 0x1         ! File was accessed | 
					
						
							|  |  |  | CONSTANT: IN_MODIFY 0x2         ! File was modified | 
					
						
							|  |  |  | CONSTANT: IN_ATTRIB 0x4         ! Metadata changed | 
					
						
							|  |  |  | CONSTANT: IN_CLOSE_WRITE 0x8    ! Writtable file was closed | 
					
						
							|  |  |  | CONSTANT: IN_CLOSE_NOWRITE 0x10 ! Unwrittable file closed | 
					
						
							|  |  |  | CONSTANT: IN_OPEN 0x20          ! File was opened | 
					
						
							|  |  |  | CONSTANT: IN_MOVED_FROM 0x40    ! File was moved from X | 
					
						
							|  |  |  | CONSTANT: IN_MOVED_TO 0x80      ! File was moved to Y | 
					
						
							|  |  |  | CONSTANT: IN_CREATE 0x100       ! Subfile was created | 
					
						
							|  |  |  | CONSTANT: IN_DELETE 0x200       ! Subfile was deleted | 
					
						
							|  |  |  | CONSTANT: IN_DELETE_SELF 0x400  ! Self was deleted | 
					
						
							|  |  |  | CONSTANT: IN_MOVE_SELF 0x800    ! Self was moved | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | CONSTANT: IN_UNMOUNT 0x2000     ! Backing fs was unmounted | 
					
						
							|  |  |  | CONSTANT: IN_Q_OVERFLOW 0x4000  ! Event queued overflowed | 
					
						
							|  |  |  | CONSTANT: IN_IGNORED 0x8000     ! File was ignored | 
					
						
							| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-01 15:43:27 -04:00
										 |  |  | CONSTANT: IN_CLOSE flags{ IN_CLOSE_WRITE IN_CLOSE_NOWRITE } | 
					
						
							|  |  |  | CONSTANT: IN_MOVE flags{ IN_MOVED_FROM IN_MOVED_TO } | 
					
						
							| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-23 21:49:33 -05:00
										 |  |  | CONSTANT: IN_ONLYDIR 0x1000000     ! only watch the path if it is a directory | 
					
						
							|  |  |  | CONSTANT: IN_DONT_FOLLOW 0x2000000 ! don't follow a sym link | 
					
						
							|  |  |  | CONSTANT: IN_MASK_ADD 0x20000000   ! add to the mask of an already existing watch | 
					
						
							|  |  |  | CONSTANT: IN_ISDIR 0x40000000      ! event occurred against dir | 
					
						
							|  |  |  | CONSTANT: IN_ONESHOT 0x80000000    ! only send event once | 
					
						
							| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-01 15:43:27 -04:00
										 |  |  | CONSTANT: IN_CHANGE_EVENTS  | 
					
						
							|  |  |  |     flags{ | 
					
						
							| 
									
										
										
										
											2008-02-02 12:51:16 -05:00
										 |  |  |         IN_MODIFY IN_ATTRIB IN_MOVED_FROM | 
					
						
							|  |  |  |         IN_MOVED_TO IN_DELETE IN_CREATE IN_DELETE_SELF | 
					
						
							|  |  |  |         IN_MOVE_SELF | 
					
						
							| 
									
										
										
										
											2010-04-01 15:43:27 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-02 12:51:16 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-04-01 15:43:27 -04:00
										 |  |  | CONSTANT: IN_ALL_EVENTS | 
					
						
							|  |  |  |     flags{ | 
					
						
							| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  |         IN_ACCESS IN_MODIFY IN_ATTRIB IN_CLOSE_WRITE | 
					
						
							|  |  |  |         IN_CLOSE_NOWRITE IN_OPEN IN_MOVED_FROM | 
					
						
							|  |  |  |         IN_MOVED_TO IN_DELETE IN_CREATE IN_DELETE_SELF | 
					
						
							|  |  |  |         IN_MOVE_SELF | 
					
						
							| 
									
										
										
										
											2010-04-01 15:43:27 -04:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-02-02 08:02:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-02-02 12:51:16 -05:00
										 |  |  | FUNCTION: int inotify_init ( ) ;
 | 
					
						
							| 
									
										
										
										
											2010-02-23 14:42:02 -05:00
										 |  |  | FUNCTION: int inotify_add_watch ( int fd, c-string name, uint mask  ) ;
 | 
					
						
							| 
									
										
										
										
											2008-02-02 12:51:16 -05:00
										 |  |  | FUNCTION: int inotify_rm_watch ( int fd, uint wd ) ;
 |