Documentation
¶
Overview ¶
Package fsevents provides file system notifications on macOS.
Index ¶
Constants ¶
const ( // NoDefer sends events on the leading edge (for interactive applications). // By default events are delivered after latency seconds (for background tasks). // // Affects the meaning of the EventStream.Latency parameter. If you specify // this flag and more than latency seconds have elapsed since // the last event, your app will receive the event immediately. // The delivery of the event resets the latency timer and any // further events will be delivered after latency seconds have // elapsed. This flag is useful for apps that are interactive // and want to react immediately to changes but avoid getting // swamped by notifications when changes are occurring in rapid // succession. If you do not specify this flag, then when an // event occurs after a period of no events, the latency timer // is started. Any events that occur during the next latency // seconds will be delivered as one group (including that first // event). The delivery of the group of events resets the // latency timer and any further events will be delivered after // latency seconds. This is the default behavior and is more // appropriate for background, daemon or batch processing apps. NoDefer = CreateFlags(C.kFSEventStreamCreateFlagNoDefer) // WatchRoot requests notifications of changes along the path to // the path(s) you're watching. For example, with this flag, if // you watch "/foo/bar" and it is renamed to "/foo/bar.old", you // would receive a RootChanged event. The same is true if the // directory "/foo" were renamed. The event you receive is a // special event: the path for the event is the original path // you specified, the flag RootChanged is set and event ID is // zero. RootChanged events are useful to indicate that you // should rescan a particular hierarchy because it changed // completely (as opposed to the things inside of it changing). // If you want to track the current location of a directory, it // is best to open the directory before creating the stream so // that you have a file descriptor for it and can issue an // F_GETPATH fcntl() to find the current path. WatchRoot = CreateFlags(C.kFSEventStreamCreateFlagWatchRoot) // IgnoreSelf doesn't send events triggered by the current process (macOS 10.6+). // // Don't send events that were triggered by the current process. // This is useful for reducing the volume of events that are // sent. It is only useful if your process might modify the file // system hierarchy beneath the path(s) being monitored. Note: // this has no effect on historical events, i.e., those // delivered before the HistoryDone sentinel event. IgnoreSelf = CreateFlags(C.kFSEventStreamCreateFlagIgnoreSelf) // FileEvents sends events about individual files, generating significantly // more events (macOS 10.7+) than directory level notifications. FileEvents = CreateFlags(C.kFSEventStreamCreateFlagFileEvents) )
const ( // MustScanSubDirs indicates that events were coalesced hierarchically. // // Your application must rescan not just the directory given in // the event, but all its children, recursively. This can happen // if there was a problem whereby events were coalesced // hierarchically. For example, an event in /Users/jsmith/Music // and an event in /Users/jsmith/Pictures might be coalesced // into an event with this flag set and path=/Users/jsmith. If // this flag is set you may be able to get an idea of whether // the bottleneck happened in the kernel (less likely) or in // your client (more likely) by checking for the presence of the // informational flags UserDropped or KernelDropped. MustScanSubDirs EventFlags = EventFlags(C.kFSEventStreamEventFlagMustScanSubDirs) // KernelDropped or UserDropped may be set in addition // to the MustScanSubDirs flag to indicate that a problem // occurred in buffering the events (the particular flag set // indicates where the problem occurred) and that the client // must do a full scan of any directories (and their // subdirectories, recursively) being monitored by this stream. // If you asked to monitor multiple paths with this stream then // you will be notified about all of them. Your code need only // check for the MustScanSubDirs flag; these flags (if present) // only provide information to help you diagnose the problem. KernelDropped = EventFlags(C.kFSEventStreamEventFlagKernelDropped) // UserDropped is related to UserDropped above. UserDropped = EventFlags(C.kFSEventStreamEventFlagUserDropped) // EventIDsWrapped indicates the 64-bit event ID counter wrapped around. // // If EventIdsWrapped is set, it means // the 64-bit event ID counter wrapped around. As a result, // previously-issued event ID's are no longer valid // for the EventID field when using EventStream.Resume. EventIDsWrapped = EventFlags(C.kFSEventStreamEventFlagEventIdsWrapped) // HistoryDone is a sentinel event when retrieving events with EventStream.Resume. // // Denotes a sentinel event sent to mark the end of the // "historical" events sent as a result of specifying // EventStream.Resume. // // After sending all the "historical" events that occurred before now, // an event will be sent with the HistoryDone flag set. The client // should ignore the path supplied in that event. HistoryDone = EventFlags(C.kFSEventStreamEventFlagHistoryDone) // RootChanged indicates a change to a directory along the path being watched. // // Denotes a special event sent when there is a change to one of // the directories along the path to one of the directories you // asked to watch. When this flag is set, the event ID is zero // and the path corresponds to one of the paths you asked to // watch (specifically, the one that changed). The path may no // longer exist because it or one of its parents was deleted or // renamed. Events with this flag set will only be sent if you // passed the flag WatchRoot when you created the stream. RootChanged = EventFlags(C.kFSEventStreamEventFlagRootChanged) // Mount for a volume mounted underneath the path being monitored. // // Denotes a special event sent when a volume is mounted // underneath one of the paths being monitored. The path in the // event is the path to the newly-mounted volume. You will // receive one of these notifications for every volume mount // event inside the kernel (independent of DiskArbitration). // Beware that a newly-mounted volume could contain an // arbitrarily large directory hierarchy. Avoid pitfalls like // triggering a recursive scan of a non-local filesystem, which // you can detect by checking for the absence of the MNT_LOCAL // flag in the f_flags returned by statfs(). Also be aware of // the MNT_DONTBROWSE flag that is set for volumes which should // not be displayed by user interface elements. Mount = EventFlags(C.kFSEventStreamEventFlagMount) // Unmount event occurs after a volume is unmounted. // // Denotes a special event sent when a volume is unmounted // underneath one of the paths being monitored. The path in the // event is the path to the directory from which the volume was // unmounted. You will receive one of these notifications for // every volume unmount event inside the kernel. This is not a // substitute for the notifications provided by the // DiskArbitration framework; you only get notified after the // unmount has occurred. Beware that unmounting a volume could // uncover an arbitrarily large directory hierarchy, although // macOS never does that. Unmount = EventFlags(C.kFSEventStreamEventFlagUnmount) // ItemCreated indicates that a file or directory has been created. ItemCreated = EventFlags(C.kFSEventStreamEventFlagItemCreated) // ItemRemoved indicates that a file or directory has been removed. ItemRemoved = EventFlags(C.kFSEventStreamEventFlagItemRemoved) // ItemInodeMetaMod indicates that a file or directory's metadata has has been modified. ItemInodeMetaMod = EventFlags(C.kFSEventStreamEventFlagItemInodeMetaMod) // ItemRenamed indicates that a file or directory has been renamed. // TODO is there any indication what it might have been renamed to? ItemRenamed = EventFlags(C.kFSEventStreamEventFlagItemRenamed) // ItemModified indicates that a file has been modified. ItemModified = EventFlags(C.kFSEventStreamEventFlagItemModified) // ItemFinderInfoMod indicates the the item's Finder information has been // modified. // TODO the above is just a guess. ItemFinderInfoMod = EventFlags(C.kFSEventStreamEventFlagItemFinderInfoMod) // ItemChangeOwner indicates that the file has changed ownership. ItemChangeOwner = EventFlags(C.kFSEventStreamEventFlagItemChangeOwner) // ItemXattrMod indicates that the files extended attributes have changed. ItemXattrMod = EventFlags(C.kFSEventStreamEventFlagItemXattrMod) // ItemIsFile indicates that the item is a file. ItemIsFile = EventFlags(C.kFSEventStreamEventFlagItemIsFile) // ItemIsDir indicates that the item is a directory. ItemIsDir = EventFlags(C.kFSEventStreamEventFlagItemIsDir) // ItemIsSymlink indicates that the item is a symbolic link. ItemIsSymlink = EventFlags(C.kFSEventStreamEventFlagItemIsSymlink) )
Variables ¶
This section is empty.
Functions ¶
func DeviceForPath ¶
DeviceForPath returns the device ID for the specified volume.
func EventIDForDeviceBeforeTime ¶
EventIDForDeviceBeforeTime returns an event ID before a given time.
func GetDeviceUUID ¶
GetDeviceUUID retrieves the UUID required to identify an EventID in the FSEvents database
func LatestEventID ¶
func LatestEventID() uint64
LatestEventID returns the most recently generated event ID, system-wide.
Types ¶
type CreateFlags ¶
type CreateFlags uint32
CreateFlags specifies what events will be seen in an event stream.
type Event ¶
type Event struct {
// Path holds the path to the item that's changed, relative
// to its device's root.
// Use DeviceForPath to determine the absolute path that's
// being referred to.
Path string
// Flags holds details what has happened.
Flags EventFlags
// ID holds the event ID.
//
// Each event ID comes from the most recent event being reported
// in the corresponding directory named in the EventStream.Paths field
// Event IDs all come from a single global source.
// They are guaranteed to always be increasing, usually in leaps
// and bounds, even across system reboots and moving drives from
// one machine to another. If you were to
// stop processing events from this stream after this event
// and resume processing them later from a newly-created
// EventStream, this is the value you would pass for the
// EventStream.EventID along with Resume=true.
ID uint64
}
Event represents a single file system notification.
type EventFlags ¶
type EventFlags uint32
EventFlags passed to the FSEventStreamCallback function. These correspond directly to the flags as described here: https://developer.apple.com/documentation/coreservices/1455361-fseventstreameventflags
type EventStream ¶
type EventStream struct {
// Events holds the channel on which events will be sent.
// It's initialized by EventStream.Start if nil.
Events chan []Event
// Paths holds the set of paths to watch, each
// specifying the root of a filesystem hierarchy to be
// watched for modifications.
Paths []string
// Flags specifies what events to receive on the stream.
Flags CreateFlags
// Resume specifies that watching should resume from the event
// specified by EventID.
Resume bool
// EventID holds the most recent event ID.
//
// NOTE: this is updated asynchronously by the
// watcher and should not be accessed while
// the stream has been started.
EventID uint64
// Latency holds the number of seconds the service should wait after hearing
// about an event from the kernel before passing it along to the
// client via its callback. Specifying a larger value may result
// in more effective temporal coalescing, resulting in fewer
// callbacks and greater overall efficiency.
Latency time.Duration
// When Device is non-zero, the watcher will watch events on the
// device with this ID, and the paths in the Paths field are
// interpreted relative to the device's root.
//
// The device ID is the same as the st_dev field from a stat
// structure of a file on that device or the f_fsid[0] field of
// a statfs structure.
Device int32
// contains filtered or unexported fields
}
EventStream is the primary interface to FSEvents You can provide your own event channel if you wish (or one will be created on Start).
es := &EventStream{Paths: []string{"/tmp"}, Flags: 0}
es.Start()
es.Stop()
...
func (*EventStream) Flush ¶
func (es *EventStream) Flush(sync bool)
Flush flushes events that have occurred but haven't been delivered. If sync is true, it will block until all the events have been delivered, otherwise it will return immediately.
func (*EventStream) Restart ¶
func (es *EventStream) Restart() error
Restart restarts the event listener. This can be used to change the current watch flags.
func (*EventStream) Start ¶
func (es *EventStream) Start() error
Start listening to an event stream. This creates es.Events if it's not already a valid channel.