]>
git.saurik.com Git - apple/xnu.git/blob - bsd/sys/fsevents.h
4 // Event types that you can ask to listen for
6 #define FSE_CREATE_FILE 0
8 #define FSE_STAT_CHANGED 2
10 #define FSE_CONTENT_MODIFIED 4
11 #define FSE_EXCHANGE 5
12 #define FSE_FINDER_INFO_CHANGED 6
13 #define FSE_CREATE_DIR 7
16 #define FSE_MAX_EVENTS 9
17 #define FSE_ALL_EVENTS 998
19 #define FSE_EVENTS_DROPPED 999
21 // Actions for each event type
24 #define FSE_ASK 2 // Not implemented yet
26 // The types of each of the arguments for an event
27 // Each type is followed by the size and then the
28 // data. FSE_ARG_VNODE is just a path string
29 #define FSE_ARG_VNODE 0x0001 // next arg is a vnode pointer
30 #define FSE_ARG_STRING 0x0002 // next arg is length followed by string ptr
31 #define FSE_ARG_PATH 0x0003 // next arg is a full path
32 #define FSE_ARG_INT32 0x0004 // next arg is a 32-bit int
33 #define FSE_ARG_INT64 0x0005 // next arg is a 64-bit int
34 #define FSE_ARG_RAW 0x0006 // next arg is a length followed by a void ptr
35 #define FSE_ARG_INO 0x0007 // next arg is the inode number (ino_t)
36 #define FSE_ARG_UID 0x0008 // next arg is the file's uid (uid_t)
37 #define FSE_ARG_DEV 0x0009 // next arg is the file's dev_t
38 #define FSE_ARG_MODE 0x000a // next arg is the file's mode (as an int32, file type only)
39 #define FSE_ARG_GID 0x000b // next arg is the file's gid (gid_t)
40 #define FSE_ARG_FINFO 0x000c // kernel internal only
41 #define FSE_ARG_DONE 0xb33f // no more arguments
43 #define FSE_MAX_ARGS 12
46 // ioctl's on /dev/fsevents
47 typedef struct fsevent_clone_args
{
50 int32_t event_queue_depth
;
54 #define FSEVENTS_CLONE _IOW('s', 1, fsevent_clone_args)
57 // ioctl's on the cloned fd
58 typedef struct fsevent_dev_filter_args
{
61 } fsevent_dev_filter_args
;
63 #define FSEVENTS_DEVICE_FILTER _IOW('s', 100, fsevent_dev_filter_args)
68 int need_fsevent(int type
, vnode_t vp
);
69 int add_fsevent(int type
, vfs_context_t
, ...);
70 void fsevent_unmount(struct mount
*mp
);
72 // misc utility functions for fsevent info and pathbuffers...
73 typedef struct fse_info
{
76 int32_t mode
; // note: this is not a mode_t (it's 32-bits, not 16)
81 int get_fse_info(struct vnode
*vp
, fse_info
*fse
, vfs_context_t ctx
);
83 char *get_pathbuff(void);
84 void release_pathbuff(char *path
);
88 #endif /* FSEVENT_H */