#api #initialization #session #path #libfswatch #fswatch-sys #fsw

nightly bin+lib fswatch

Rust wrapper for fswatch-sys

1 unstable release

Uses old Rust 2015

0.1.10 Dec 22, 2016

#89 in #initialization

MPL-2.0 license

44KB
851 lines

fswatch

Travis Codecov Crates.io Docs.rs

This is a Rust crate to integrate with the C API of libfswatch, via fswatch-sys.

extern crate fswatch;

use fswatch::{Fsw, FswSession};

fn main() {
  // Initialize the library. This must be called before anything else can be done.
  Fsw::init_library().expect("Could not start fswatch");

  // Create a new session.
  let session = FswSession::default().unwrap();
  // Add a monitoring path, unwrapping any possible error.
  session.add_path("./").unwrap();
  // Set the callback for when events are fired, unwrapping any possible error.
  session.set_callback(|events| {
    // Prettily print out the vector of events.
    println!("{:#?}", events);
  }).unwrap();
  // Start the monitor, unwrapping any possible error. This will most likely be a blocking call.
  // See the libfswatch documentation for more information.
  session.start_monitor().unwrap();
}
extern crate fswatch;

use fswatch::{Fsw, FswSessionBuilder};

fn main() {
  Fsw::init_library().expect("Could not start fswatch");

  FswSessionBuilder::new(vec!["./"])
    .build_callback(|events| println!("{:#?}", events))
    .unwrap()
    .start_monitor()
    .unwrap();
}
extern crate fswatch;

use fswatch::{Fsw, FswSession};

fn main() {
  Fsw::init_library().expect("Could not start fswatch");

  let session = FswSession::builder().add_path("./").build().unwrap();
  for event in session {
    println!("{:#?}", event);
  }
}

Dependencies

~8–500KB