rolldown_fs_watcher 1.2.6

Filesystem watching implementation for Rolldown
Documentation
use std::time::Duration;

#[derive(Debug, Clone)]
#[expect(clippy::struct_excessive_bools)] // Raw booleans make this configuration easier to read.
pub struct FsWatcherConfig {
  /// Whether filesystem watching is enabled.
  /// Default: true.
  pub enabled: bool,

  /// Debounce delay for debounced watchers (in milliseconds).
  /// Default to 10ms.
  ///
  /// ⚠️Only take effect for debounced watchers.
  pub debounce_delay: u64,

  /// Poll interval for poll-based watchers (in milliseconds).
  /// Default to 100ms.
  ///
  /// ⚠️Only take effect for poll-based watchers.
  pub poll_interval: u64,

  /// Whether to compare file contents for poll-based watchers.
  /// When enabled, poll watchers will check file contents to determine if they actually changed.
  /// Default to false.
  ///
  /// ⚠️Only take effect for poll-based watchers.
  pub compare_contents_for_polling: bool,

  /// Tick rate for debounced watchers (in milliseconds).
  /// Controls how frequently the debouncer checks for events to process.
  /// When None, the debouncer will auto-select an appropriate tick rate (1/4 of the debounce duration).
  ///
  /// ⚠️Only take effect for debounced watchers.
  pub debounce_tick_rate: Option<u64>,

  /// Whether to use polling-based file watching instead of native OS events.
  /// Default: false (use native OS events).
  ///
  /// ⚠️Only used by `FsWatcher::new` for backend selection.
  pub use_polling: bool,

  /// Whether to use debounced event delivery.
  /// Default: false.
  ///
  /// ⚠️Only used by `FsWatcher::new` for backend selection.
  pub use_debounce: bool,
}

impl Default for FsWatcherConfig {
  fn default() -> Self {
    Self {
      enabled: true,
      debounce_delay: 10,
      // Chokidar's default poll interval is 100ms
      poll_interval: 100,
      compare_contents_for_polling: false,
      debounce_tick_rate: None,
      use_polling: false,
      use_debounce: false,
    }
  }
}

impl FsWatcherConfig {
  pub fn debounce_delay_duration(&self) -> Duration {
    Duration::from_millis(self.debounce_delay)
  }

  pub fn poll_interval_duration(&self) -> Duration {
    Duration::from_millis(self.poll_interval)
  }

  pub fn debounce_tick_rate(&self) -> Option<Duration> {
    self.debounce_tick_rate.map(Duration::from_millis)
  }

  pub fn to_notify_config(&self) -> notify::Config {
    notify::Config::default()
      .with_poll_interval(self.poll_interval_duration())
      .with_compare_contents(self.compare_contents_for_polling)
  }
}