2020-05-17 03:18:30 +00:00
|
|
|
use crossbeam_channel::Receiver;
|
2022-09-02 15:54:54 +00:00
|
|
|
use notify::{Config, Event, RecommendedWatcher, RecursiveMode, Result, Watcher};
|
2020-05-17 03:18:30 +00:00
|
|
|
use std::path::Path;
|
|
|
|
|
2022-07-12 15:44:09 +00:00
|
|
|
/// Watches for changes to files on the local filesystem.
|
|
|
|
///
|
|
|
|
/// When hot-reloading is enabled, the [`AssetServer`](crate::AssetServer) uses this to reload
|
|
|
|
/// assets when their source files are modified.
|
2020-05-17 03:18:30 +00:00
|
|
|
pub struct FilesystemWatcher {
|
|
|
|
pub watcher: RecommendedWatcher,
|
|
|
|
pub receiver: Receiver<Result<Event>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for FilesystemWatcher {
|
|
|
|
fn default() -> Self {
|
|
|
|
let (sender, receiver) = crossbeam_channel::unbounded();
|
2022-09-02 15:54:54 +00:00
|
|
|
let watcher: RecommendedWatcher = RecommendedWatcher::new(
|
|
|
|
move |res| {
|
|
|
|
sender.send(res).expect("Watch event send failure.");
|
|
|
|
},
|
|
|
|
Config::default(),
|
|
|
|
)
|
2020-12-02 19:31:16 +00:00
|
|
|
.expect("Failed to create filesystem watcher.");
|
2020-05-17 03:18:30 +00:00
|
|
|
FilesystemWatcher { watcher, receiver }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FilesystemWatcher {
|
2022-07-12 15:44:09 +00:00
|
|
|
/// Watch for changes recursively at the provided path.
|
2020-05-29 19:56:32 +00:00
|
|
|
pub fn watch<P: AsRef<Path>>(&mut self, path: P) -> Result<()> {
|
2021-07-29 23:56:16 +00:00
|
|
|
self.watcher.watch(path.as_ref(), RecursiveMode::Recursive)
|
2020-05-17 03:18:30 +00:00
|
|
|
}
|
|
|
|
}
|