mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 17:18:30 +01:00
68 lines
1.5 KiB
Rust
68 lines
1.5 KiB
Rust
use std::env::var;
|
|
|
|
use miette::{IntoDiagnostic, Result};
|
|
use watchexec::{event::Event, Watchexec};
|
|
|
|
mod args;
|
|
mod config;
|
|
mod filterer;
|
|
|
|
#[cfg(target_env = "musl")]
|
|
#[global_allocator]
|
|
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
#[tokio::main]
|
|
async fn main() -> Result<()> {
|
|
#[cfg(feature = "dev-console")]
|
|
console_subscriber::init();
|
|
|
|
if var("RUST_LOG").is_ok() && cfg!(not(feature = "dev-console")) {
|
|
tracing_subscriber::fmt::init();
|
|
}
|
|
|
|
let tagged_filterer = var("WATCHEXEC_FILTERER")
|
|
.map(|v| v == "tagged")
|
|
.unwrap_or(false);
|
|
|
|
let args = args::get_args(tagged_filterer)?;
|
|
|
|
{
|
|
let verbosity = args.occurrences_of("verbose");
|
|
let mut builder = tracing_subscriber::fmt().with_env_filter(match verbosity {
|
|
0 => "watchexec-cli=warn",
|
|
1 => "watchexec=debug,watchexec-cli=debug",
|
|
2 => "watchexec=trace,watchexec-cli=trace",
|
|
_ => "trace",
|
|
});
|
|
|
|
if verbosity > 2 {
|
|
use tracing_subscriber::fmt::format::FmtSpan;
|
|
builder = builder.with_span_events(FmtSpan::NEW | FmtSpan::CLOSE);
|
|
}
|
|
|
|
if verbosity > 3 {
|
|
builder.pretty().try_init().ok();
|
|
} else {
|
|
builder.try_init().ok();
|
|
}
|
|
}
|
|
|
|
let init = config::init(&args)?;
|
|
let mut runtime = config::runtime(&args)?;
|
|
runtime.filterer(if tagged_filterer {
|
|
eprintln!("!!! EXPERIMENTAL: using tagged filterer !!!");
|
|
filterer::tagged(&args).await?
|
|
} else {
|
|
filterer::globset(&args).await?
|
|
});
|
|
|
|
let wx = Watchexec::new(init, runtime)?;
|
|
|
|
if !args.is_present("postpone") {
|
|
wx.send_event(Event::default()).await?;
|
|
}
|
|
|
|
wx.main().await.into_diagnostic()??;
|
|
|
|
Ok(())
|
|
}
|