2016-09-18 22:42:11 +02:00
|
|
|
extern crate clap;
|
2016-09-14 15:30:59 +02:00
|
|
|
extern crate libc;
|
2016-09-18 22:42:11 +02:00
|
|
|
extern crate notify;
|
2016-09-14 15:30:59 +02:00
|
|
|
|
2016-09-21 23:02:20 +02:00
|
|
|
mod filter;
|
|
|
|
|
2016-09-14 15:30:59 +02:00
|
|
|
use std::ffi::CString;
|
2016-09-14 21:43:58 +02:00
|
|
|
use std::sync::mpsc::{channel, Receiver, RecvError};
|
2016-09-21 23:02:20 +02:00
|
|
|
use std::{env, thread, time};
|
2016-09-18 22:42:11 +02:00
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
use clap::{App, Arg};
|
2016-09-21 23:02:20 +02:00
|
|
|
use libc::system;
|
2016-09-18 22:42:11 +02:00
|
|
|
use notify::{Event, RecommendedWatcher, Watcher};
|
2016-09-14 21:43:58 +02:00
|
|
|
|
2016-09-21 23:02:20 +02:00
|
|
|
use filter::Filter;
|
|
|
|
|
2016-09-14 21:43:58 +02:00
|
|
|
fn clear() {
|
2016-09-18 22:42:11 +02:00
|
|
|
// TODO: determine better way to do this
|
|
|
|
let clear_cmd;
|
|
|
|
if cfg!(target_os = "windows") {
|
|
|
|
clear_cmd = "cls";
|
2016-09-14 21:43:58 +02:00
|
|
|
}
|
2016-09-18 22:42:11 +02:00
|
|
|
else {
|
|
|
|
clear_cmd = "clear";
|
2016-09-14 22:11:35 +02:00
|
|
|
}
|
|
|
|
|
2016-09-18 22:42:11 +02:00
|
|
|
let _ = Command::new(clear_cmd).status();
|
2016-09-14 22:11:35 +02:00
|
|
|
}
|
|
|
|
|
2016-09-18 22:42:11 +02:00
|
|
|
fn invoke(cmd: &str) {
|
|
|
|
// TODO: determine a better way to get at system()
|
2016-09-14 15:30:59 +02:00
|
|
|
let s = CString::new(cmd.clone()).unwrap();
|
|
|
|
unsafe {
|
|
|
|
system(s.as_ptr());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-23 21:38:26 +02:00
|
|
|
fn wait(rx: &Receiver<Event>, filter: &Filter, verbose: bool) -> Result<Event, RecvError> {
|
2016-09-14 22:11:35 +02:00
|
|
|
loop {
|
2016-09-18 22:42:11 +02:00
|
|
|
// Block on initial notification
|
2016-09-14 22:11:35 +02:00
|
|
|
let e = try!(rx.recv());
|
2016-09-18 22:42:11 +02:00
|
|
|
if let Some(ref path) = e.path {
|
2016-09-21 23:02:20 +02:00
|
|
|
if filter.is_excluded(&path) {
|
2016-09-23 21:38:26 +02:00
|
|
|
if verbose {
|
2016-09-21 23:02:20 +02:00
|
|
|
println!("*** Ignoring {} due to filter", path.to_str().unwrap());
|
|
|
|
}
|
2016-09-18 22:42:11 +02:00
|
|
|
continue;
|
|
|
|
}
|
2016-09-14 22:11:35 +02:00
|
|
|
}
|
2016-09-14 21:43:58 +02:00
|
|
|
|
2016-09-18 22:42:11 +02:00
|
|
|
// Accumulate subsequent events
|
2016-09-14 22:11:35 +02:00
|
|
|
thread::sleep(time::Duration::from_millis(250));
|
2016-09-18 22:42:11 +02:00
|
|
|
|
|
|
|
// Drain rx buffer and drop them
|
2016-09-14 22:11:35 +02:00
|
|
|
loop {
|
|
|
|
match rx.try_recv() {
|
|
|
|
Ok(_) => continue,
|
|
|
|
Err(_) => break,
|
|
|
|
}
|
2016-09-14 21:43:58 +02:00
|
|
|
}
|
|
|
|
|
2016-09-14 22:11:35 +02:00
|
|
|
return Ok(e);
|
|
|
|
}
|
2016-09-14 21:43:58 +02:00
|
|
|
}
|
|
|
|
|
2016-09-14 15:30:59 +02:00
|
|
|
fn main() {
|
2016-09-18 22:42:11 +02:00
|
|
|
let args = App::new("watchexec")
|
2016-09-23 19:59:57 +02:00
|
|
|
.version("0.9")
|
2016-09-18 22:42:11 +02:00
|
|
|
.about("Runs a command when any of the specified files/directories are modified")
|
|
|
|
.arg(Arg::with_name("path")
|
2016-09-23 21:38:26 +02:00
|
|
|
.help("Path to watch for changes")
|
2016-09-23 19:59:57 +02:00
|
|
|
.short("w")
|
|
|
|
.long("watch")
|
2016-09-23 21:38:26 +02:00
|
|
|
.number_of_values(1)
|
|
|
|
.multiple(true)
|
2016-09-23 19:59:57 +02:00
|
|
|
.takes_value(true)
|
|
|
|
.default_value("."))
|
2016-09-18 22:42:11 +02:00
|
|
|
.arg(Arg::with_name("command")
|
|
|
|
.help("Command to run")
|
2016-09-21 23:02:20 +02:00
|
|
|
.multiple(true)
|
2016-09-18 22:42:11 +02:00
|
|
|
.required(true))
|
2016-09-23 19:59:57 +02:00
|
|
|
.arg(Arg::with_name("extensions")
|
|
|
|
.help("Comma-separated list of file extensions to watch (js,css,html)")
|
|
|
|
.short("e")
|
|
|
|
.long("exts")
|
|
|
|
.takes_value(true))
|
2016-09-18 22:42:11 +02:00
|
|
|
.arg(Arg::with_name("clear")
|
|
|
|
.help("Clear screen before running command")
|
|
|
|
.short("c")
|
|
|
|
.long("clear"))
|
2016-09-23 21:38:26 +02:00
|
|
|
.arg(Arg::with_name("verbose")
|
|
|
|
.help("Print diagnostic messages")
|
|
|
|
.short("v")
|
|
|
|
.long("verbose"))
|
2016-09-21 23:02:20 +02:00
|
|
|
.arg(Arg::with_name("filter")
|
|
|
|
.help("Ignore paths that do not match the pattern")
|
|
|
|
.short("f")
|
|
|
|
.long("filter")
|
|
|
|
.number_of_values(1)
|
|
|
|
.multiple(true)
|
2016-09-23 19:59:57 +02:00
|
|
|
.takes_value(true)
|
|
|
|
.value_name("pattern"))
|
2016-09-21 23:02:20 +02:00
|
|
|
.arg(Arg::with_name("ignore")
|
|
|
|
.help("Ignore events from paths matching a pattern")
|
|
|
|
.short("i")
|
|
|
|
.long("ignore")
|
|
|
|
.number_of_values(1)
|
|
|
|
.multiple(true)
|
2016-09-23 19:59:57 +02:00
|
|
|
.takes_value(true)
|
|
|
|
.value_name("pattern"))
|
2016-09-18 22:42:11 +02:00
|
|
|
.get_matches();
|
2016-09-14 22:50:14 +02:00
|
|
|
|
2016-09-23 21:38:26 +02:00
|
|
|
let verbose = args.is_present("verbose");
|
2016-09-21 23:02:20 +02:00
|
|
|
|
|
|
|
let cwd = env::current_dir().unwrap();
|
|
|
|
let mut filter = Filter::new(&cwd);
|
|
|
|
|
|
|
|
// Ignore python bytecode and dotted directories by default
|
2016-09-23 17:59:54 +02:00
|
|
|
let default_filters = vec!["*.pyc", ".*/*"];
|
2016-09-21 23:02:20 +02:00
|
|
|
for p in default_filters {
|
|
|
|
filter.add_ignore(p).expect("bad default filter");
|
|
|
|
}
|
|
|
|
|
2016-09-23 19:59:57 +02:00
|
|
|
if let Some(extensions) = args.values_of("extensions") {
|
|
|
|
for ext in extensions {
|
|
|
|
filter.add_extension(ext).expect("bad extension");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-21 23:02:20 +02:00
|
|
|
if let Some(filters) = args.values_of("filter") {
|
|
|
|
for p in filters {
|
|
|
|
filter.add_filter(p).expect("bad filter");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(ignores) = args.values_of("ignore") {
|
|
|
|
for i in ignores {
|
|
|
|
filter.add_ignore(i).expect("bad ignore pattern");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-14 15:30:59 +02:00
|
|
|
let (tx, rx) = channel();
|
2016-09-18 22:42:11 +02:00
|
|
|
let mut watcher: RecommendedWatcher = Watcher::new(tx).expect("unable to create watcher");
|
|
|
|
|
|
|
|
let paths = args.values_of("path").unwrap();
|
|
|
|
for path in paths {
|
|
|
|
watcher.watch(path).expect("unable to watch path");
|
|
|
|
}
|
|
|
|
|
2016-09-21 23:02:20 +02:00
|
|
|
let cmd_parts: Vec<&str> = args.values_of("command").unwrap().collect();
|
|
|
|
let cmd = cmd_parts.join(" ");
|
2016-09-14 15:30:59 +02:00
|
|
|
|
|
|
|
loop {
|
2016-09-23 21:38:26 +02:00
|
|
|
let e = wait(&rx, &filter, verbose).expect("error when waiting for filesystem changes");
|
2016-09-21 23:02:20 +02:00
|
|
|
if args.is_present("clear") {
|
2016-09-18 22:42:11 +02:00
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
2016-09-23 21:38:26 +02:00
|
|
|
if verbose {
|
2016-09-18 22:42:11 +02:00
|
|
|
println!("*** {:?}: {:?}", e.op, e.path);
|
|
|
|
}
|
2016-09-14 21:43:58 +02:00
|
|
|
|
2016-09-23 21:38:26 +02:00
|
|
|
if verbose {
|
2016-09-21 23:02:20 +02:00
|
|
|
println!("*** Running: {}", cmd);
|
|
|
|
}
|
|
|
|
|
|
|
|
invoke(&cmd);
|
2016-09-14 15:30:59 +02:00
|
|
|
}
|
|
|
|
}
|