Skip to main content

EventWatcher

Struct EventWatcher 

Source
pub struct EventWatcher { /* private fields */ }
Expand description

Event-driven watcher built on top of notify.

Owns the recommended backend (FSEvents/inotify/RDCW), a debounce thread, and the receiver end of the batched-event channel. Dropping the watcher tears down the backend and the debounce thread.

Implementations§

Source§

impl EventWatcher

Source

pub fn new(dir: &Path) -> Result<Self, SsgError>

Builds a watcher rooted at dir, watching recursively, with a 100 ms debounce window.

§Errors

Returns SsgError::Io wrapping the underlying notify::Error when the backend cannot subscribe (missing directory, permission denied, kernel resource exhaustion).

§Examples
use ssg::event_watch::{EventWatcher, DEFAULT_DEBOUNCE};
let tmp = tempfile::tempdir().unwrap();
let w = EventWatcher::new(tmp.path()).unwrap();
assert_eq!(w.debounce(), DEFAULT_DEBOUNCE);
Source

pub fn with_debounce(dir: &Path, debounce: Duration) -> Result<Self, SsgError>

Same as Self::new but with a caller-supplied debounce window (used by tests to keep latency low).

§Errors

See Self::new.

§Examples
use std::time::Duration;
use ssg::event_watch::EventWatcher;
let tmp = tempfile::tempdir().unwrap();
let w = EventWatcher::with_debounce(tmp.path(), Duration::from_millis(50)).unwrap();
assert_eq!(w.debounce(), Duration::from_millis(50));
Source

pub fn recv(&self) -> Option<ChangeBatch>

Blocks until the next debounced batch is available.

Returns None if the watcher is being torn down.

§Examples
use ssg::event_watch::EventWatcher;
let tmp = tempfile::tempdir().unwrap();
let w = EventWatcher::new(tmp.path()).unwrap();
// Blocks until a change arrives — would hang in a doctest sandbox.
if let Some(batch) = w.recv() {
    assert!(!batch.paths.is_empty());
}
Source

pub fn recv_timeout(&self, timeout: Duration) -> RecvOutcome

Like Self::recv but with a timeout.

Returns:

§Examples
use std::time::Duration;
use ssg::event_watch::{EventWatcher, RecvOutcome};
let tmp = tempfile::tempdir().unwrap();
let w = EventWatcher::with_debounce(tmp.path(), Duration::from_millis(20)).unwrap();
let out = w.recv_timeout(Duration::from_millis(30));
assert!(!out.is_closed());
Source

pub const fn debounce(&self) -> Duration

Debounce window in effect for this watcher.

§Examples
use std::time::Duration;
use ssg::event_watch::EventWatcher;
let tmp = tempfile::tempdir().unwrap();
let w = EventWatcher::with_debounce(tmp.path(), Duration::from_millis(75)).unwrap();
assert_eq!(w.debounce(), Duration::from_millis(75));

Trait Implementations§

Source§

impl Debug for EventWatcher

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Drop for EventWatcher

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<S, T> Upcast<T> for S
where T: UpcastFrom<S> + ?Sized, S: ?Sized,

Source§

fn upcast(&self) -> &T
where Self: ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider ref type within the Wasm bindgen generics type system. Read more
Source§

fn upcast_into(self) -> T
where Self: Sized + ErasableGeneric, T: Sized + ErasableGeneric<Repr = Self::Repr>,

Perform a zero-cost type-safe upcast to a wider type within the Wasm bindgen generics type system. Read more
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more