You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I supply multiple paths and then handle the resulting events, I don't know which watch those were for. In my use case, I want to count events by base path to measure how busy they are.
Right now I do this:
for base in base_paths {for event_path in paths.iter(){if event_path.starts_with(base){returnOk(base.to_string_lossy().to_string());}}}
If there is a lot of events and many monitored paths this could get quite expensive. I noticed that inotify returns a WatchDescriptor which is contained in an Event. A similar approach would be great here, where the watcher returns some form of handle or descriptor that can be attached to each event.
This would have to be a separate descriptor that tracks which recursively created watches belong to which "root watch" as the event.wd descriptor used at https://github.com/notify-rs/notify/blob/main/notify/src/inotify.rs#L216 is some leaf node. So in the recursive case the original path would have to be tracked here where the information is currently "lost".
I think another wrinkle is the fact that the closure has to be specified upon calling INotifyWatcher::new which would make it difficult to pass any subsequent descriptors created by watcher.watch back to that closure. It would be great to have a separate allocation e.g. via builder pattern where I specify all my watches first, get handles back and then pass in the closure which can track those handles. Of course, this could all abstracted away by passing through the root path as part of the event rather than dealing with generic descriptors.
Is this something worth implementing?
The text was updated successfully, but these errors were encountered:
Please note that you have to make an equal proposal for handling this on all other backends (fsevent,kqueue,windows,pollwatcher) before this could proceed to a MR.
When watching multiple directories recursively, I would like to know which base path an event belongs to. For example with this setup:
If I supply multiple paths and then handle the resulting events, I don't know which watch those were for. In my use case, I want to count events by base path to measure how busy they are.
Right now I do this:
If there is a lot of events and many monitored paths this could get quite expensive. I noticed that
inotify
returns a WatchDescriptor which is contained in an Event. A similar approach would be great here, where the watcher returns some form of handle or descriptor that can be attached to each event.This would have to be a separate descriptor that tracks which recursively created watches belong to which "root watch" as the
event.wd
descriptor used at https://github.com/notify-rs/notify/blob/main/notify/src/inotify.rs#L216 is some leaf node. So in the recursive case the original path would have to be tracked here where the information is currently "lost".I think another wrinkle is the fact that the closure has to be specified upon calling
INotifyWatcher::new
which would make it difficult to pass any subsequent descriptors created bywatcher.watch
back to that closure. It would be great to have a separate allocation e.g. via builder pattern where I specify all my watches first, get handles back and then pass in the closure which can track those handles. Of course, this could all abstracted away by passing through the root path as part of the event rather than dealing with generic descriptors.Is this something worth implementing?
The text was updated successfully, but these errors were encountered: