2016-10-20 20:27:11 +02:00
|
|
|
#![feature(process_exec)]
|
|
|
|
|
2016-10-24 02:12:48 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate clap;
|
2016-10-13 23:59:46 +02:00
|
|
|
extern crate env_logger;
|
2016-10-20 17:38:51 +02:00
|
|
|
extern crate libc;
|
2016-10-24 02:12:48 +02:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2016-09-18 22:42:11 +02:00
|
|
|
extern crate notify;
|
2016-09-14 15:30:59 +02:00
|
|
|
|
2016-10-24 02:12:48 +02:00
|
|
|
#[cfg(unix)]
|
|
|
|
extern crate nix;
|
|
|
|
#[cfg(windows)]
|
|
|
|
extern crate winapi;
|
|
|
|
#[cfg(windows)]
|
|
|
|
extern crate kernel32;
|
2016-10-22 21:37:03 +02:00
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
mod args;
|
2016-10-12 04:43:53 +02:00
|
|
|
mod gitignore;
|
2016-10-22 21:37:03 +02:00
|
|
|
mod interrupt_handler;
|
2016-09-23 21:52:50 +02:00
|
|
|
mod notification_filter;
|
2016-10-09 20:07:23 +02:00
|
|
|
mod runner;
|
2016-10-20 20:27:11 +02:00
|
|
|
mod watcher;
|
2016-09-21 23:02:20 +02:00
|
|
|
|
2016-09-14 21:43:58 +02:00
|
|
|
use std::sync::mpsc::{channel, Receiver, RecvError};
|
2016-10-09 20:07:23 +02:00
|
|
|
use std::{env, thread, time};
|
2016-10-20 00:54:20 +02:00
|
|
|
use std::path::{Path, PathBuf};
|
2016-09-18 22:42:11 +02:00
|
|
|
|
2016-09-23 21:52:50 +02:00
|
|
|
use notification_filter::NotificationFilter;
|
2016-10-09 20:07:23 +02:00
|
|
|
use runner::Runner;
|
2016-10-20 20:27:11 +02:00
|
|
|
use watcher::{Event, Watcher};
|
2016-09-14 15:30:59 +02:00
|
|
|
|
2016-10-20 00:54:20 +02:00
|
|
|
// Starting at the specified path, search for gitignore files,
|
|
|
|
// stopping at the first one found.
|
|
|
|
fn find_gitignore_file(path: &Path) -> Option<PathBuf> {
|
|
|
|
let mut gitignore_path = path.join(".gitignore");
|
|
|
|
if gitignore_path.exists() {
|
|
|
|
return Some(gitignore_path);
|
|
|
|
}
|
|
|
|
|
|
|
|
let p = path.to_owned();
|
|
|
|
|
|
|
|
while let Some(p) = p.parent() {
|
|
|
|
gitignore_path = p.join(".gitignore");
|
|
|
|
if gitignore_path.exists() {
|
|
|
|
return Some(gitignore_path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2016-10-14 02:21:29 +02:00
|
|
|
fn init_logger(debug: bool) {
|
2016-10-13 23:59:46 +02:00
|
|
|
let mut log_builder = env_logger::LogBuilder::new();
|
2016-10-18 15:39:40 +02:00
|
|
|
let level = if debug {
|
|
|
|
log::LogLevelFilter::Debug
|
|
|
|
} else {
|
2016-10-24 02:12:48 +02:00
|
|
|
log::LogLevelFilter::Warn
|
2016-10-18 15:39:40 +02:00
|
|
|
};
|
2016-10-13 23:59:46 +02:00
|
|
|
|
2016-10-24 02:12:48 +02:00
|
|
|
log_builder.format(|r| format!("*** {}", r.args()))
|
2016-10-13 23:59:46 +02:00
|
|
|
.filter(None, level);
|
|
|
|
log_builder.init().expect("unable to initialize logger");
|
|
|
|
}
|
|
|
|
|
2016-10-12 15:43:22 +02:00
|
|
|
fn main() {
|
2016-10-24 02:07:20 +02:00
|
|
|
let args = args::get_args();
|
2016-10-13 23:59:46 +02:00
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
init_logger(args.debug);
|
2016-09-21 23:02:20 +02:00
|
|
|
|
2016-10-12 15:43:22 +02:00
|
|
|
let cwd = env::current_dir()
|
|
|
|
.expect("unable to get cwd")
|
|
|
|
.canonicalize()
|
|
|
|
.expect("unable to canonicalize cwd");
|
2016-10-12 04:43:53 +02:00
|
|
|
|
|
|
|
let mut gitignore_file = None;
|
2016-10-24 02:07:20 +02:00
|
|
|
if !args.no_vcs_ignore {
|
2016-10-20 00:54:20 +02:00
|
|
|
if let Some(gitignore_path) = find_gitignore_file(&cwd) {
|
2016-10-14 01:47:04 +02:00
|
|
|
debug!("Found .gitignore file: {:?}", gitignore_path);
|
2016-10-12 04:43:53 +02:00
|
|
|
|
2016-10-12 15:43:22 +02:00
|
|
|
gitignore_file = gitignore::parse(&gitignore_path).ok();
|
|
|
|
}
|
2016-10-12 04:43:53 +02:00
|
|
|
}
|
|
|
|
|
2016-10-24 02:12:48 +02:00
|
|
|
let mut filter = NotificationFilter::new(&cwd, gitignore_file)
|
|
|
|
.expect("unable to create notification filter");
|
2016-09-21 23:02:20 +02:00
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
for f in args.filters {
|
|
|
|
filter.add_filter(&f).expect("bad filter");
|
2016-09-21 23:02:20 +02:00
|
|
|
}
|
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
for i in args.ignores {
|
|
|
|
filter.add_ignore(&i).expect("bad ignore pattern");
|
2016-09-21 23:02:20 +02:00
|
|
|
}
|
|
|
|
|
2016-09-14 15:30:59 +02:00
|
|
|
let (tx, rx) = channel();
|
2016-10-24 02:07:20 +02:00
|
|
|
let mut watcher = Watcher::new(tx, args.poll, args.poll_interval)
|
2016-10-20 20:27:11 +02:00
|
|
|
.expect("unable to create watcher");
|
2016-10-20 02:19:01 +02:00
|
|
|
|
2016-10-20 20:27:11 +02:00
|
|
|
if watcher.is_polling() {
|
2016-10-24 02:07:20 +02:00
|
|
|
warn!("Polling for changes every {} ms", args.poll_interval);
|
2016-10-20 20:27:11 +02:00
|
|
|
}
|
2016-09-18 22:42:11 +02:00
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
for path in args.paths {
|
|
|
|
match Path::new(&path).canonicalize() {
|
2016-10-24 02:12:48 +02:00
|
|
|
Ok(canonicalized) => watcher.watch(canonicalized).expect("unable to watch path"),
|
|
|
|
Err(_) => {
|
2016-09-27 15:43:28 +02:00
|
|
|
println!("invalid path: {}", path);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2016-09-18 22:42:11 +02:00
|
|
|
}
|
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
let cmd = args.cmd;
|
|
|
|
let mut runner = Runner::new(args.restart, args.clear_screen);
|
2016-09-14 15:30:59 +02:00
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
if args.run_initially {
|
2016-10-20 01:32:07 +02:00
|
|
|
runner.run_command(&cmd, vec![]);
|
2016-10-18 23:36:12 +02:00
|
|
|
}
|
|
|
|
|
2016-10-24 02:07:20 +02:00
|
|
|
while !interrupt_handler::interrupt_requested() {
|
2016-10-13 23:59:46 +02:00
|
|
|
let e = wait(&rx, &filter).expect("error when waiting for filesystem changes");
|
2016-09-24 19:52:54 +02:00
|
|
|
|
2016-10-13 23:59:46 +02:00
|
|
|
debug!("{:?}: {:?}", e.op, e.path);
|
2016-09-14 21:43:58 +02:00
|
|
|
|
2016-10-20 01:32:07 +02:00
|
|
|
// TODO: update wait to return all paths
|
|
|
|
let updated: Vec<&str> = e.path
|
|
|
|
.iter()
|
|
|
|
.map(|p| p.to_str().unwrap())
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
runner.run_command(&cmd, updated);
|
2016-09-14 15:30:59 +02:00
|
|
|
}
|
|
|
|
}
|
2016-10-12 15:43:22 +02:00
|
|
|
|
2016-10-13 23:59:46 +02:00
|
|
|
fn wait(rx: &Receiver<Event>, filter: &NotificationFilter) -> Result<Event, RecvError> {
|
2016-10-12 15:43:22 +02:00
|
|
|
loop {
|
|
|
|
// Block on initial notification
|
|
|
|
let e = try!(rx.recv());
|
|
|
|
if let Some(ref path) = e.path {
|
2016-10-18 15:39:40 +02:00
|
|
|
if filter.is_excluded(path) {
|
2016-10-12 15:43:22 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Accumulate subsequent events
|
|
|
|
thread::sleep(time::Duration::from_millis(250));
|
|
|
|
|
|
|
|
// Drain rx buffer and drop them
|
2016-10-18 15:39:40 +02:00
|
|
|
while let Ok(_) = rx.try_recv() {
|
2016-10-24 02:12:48 +02:00
|
|
|
// nothing to do here
|
2016-10-12 15:43:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return Ok(e);
|
|
|
|
}
|
|
|
|
}
|