mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-16 17:18:30 +01:00
a13bc429eb
Co-authored-by: emilHof <95590295+emilHof@users.noreply.github.com>
89 lines
2.8 KiB
Rust
89 lines
2.8 KiB
Rust
//! Watchexec: a library for utilities and programs which respond to (file, signal, etc) events
|
|
//! primarily by launching or managing other programs.
|
|
//!
|
|
//! Also see the CLI tool: <https://watchexec.github.io/>
|
|
//!
|
|
//! This library is powered by [Tokio](https://tokio.rs).
|
|
//!
|
|
//! The main way to use this crate involves constructing a [`Watchexec`] around a [`Config`], then
|
|
//! running it. [`Handler`][handler::Handler]s are used to hook into Watchexec at various points.
|
|
//! The config can be changed at any time with the [`Watchexec::reconfigure()`] method.
|
|
//!
|
|
//! It's recommended to use the [miette] erroring library in applications, but all errors implement
|
|
//! [`std::error::Error`] so your favourite error handling library can of course be used.
|
|
//!
|
|
//! ```no_run
|
|
//! use miette::{IntoDiagnostic, Result};
|
|
//! use watchexec_signals::Signal;
|
|
//! use watchexec::Watchexec;
|
|
//!
|
|
//! #[tokio::main]
|
|
//! async fn main() -> Result<()> {
|
|
//! let wx = Watchexec::new(|mut action| {
|
|
//! // print any events
|
|
//! for event in action.events.iter() {
|
|
//! eprintln!("EVENT: {event:?}");
|
|
//! }
|
|
//!
|
|
//! // if Ctrl-C is received, quit
|
|
//! if action.signals().any(|sig| sig == Signal::Interrupt) {
|
|
//! action.quit();
|
|
//! }
|
|
//!
|
|
//! action
|
|
//! })?;
|
|
//!
|
|
//! // watch the current directory
|
|
//! wx.config.pathset(["."]);
|
|
//!
|
|
//! wx.main().await.into_diagnostic()?;
|
|
//! Ok(())
|
|
//! }
|
|
//! ```
|
|
//!
|
|
//! Alternatively, you can use the modules exposed by the crate and the external crates such as
|
|
//! [ClearScreen][clearscreen] and [Command Group][command_group] to build something more advanced,
|
|
//! at the cost of reimplementing the glue code.
|
|
//!
|
|
//! Note that the library generates a _lot_ of debug messaging with [tracing]. **You should not
|
|
//! enable printing even `error`-level log messages for this crate unless it's for debugging.**
|
|
//! Instead, make use of the [`Config::on_error()`] method to define a handler for errors
|
|
//! occurring at runtime that are _meant_ for you to handle (by printing out or otherwise).
|
|
|
|
#![doc(html_favicon_url = "https://watchexec.github.io/logo:watchexec.svg")]
|
|
#![doc(html_logo_url = "https://watchexec.github.io/logo:watchexec.svg")]
|
|
#![warn(clippy::unwrap_used, missing_docs)]
|
|
#![deny(rust_2018_idioms)]
|
|
|
|
// the toolkit to make your own
|
|
pub mod action;
|
|
pub mod error;
|
|
pub mod filter;
|
|
pub mod paths;
|
|
pub mod sources;
|
|
|
|
// the core experience
|
|
pub mod changeable;
|
|
pub mod config;
|
|
|
|
mod id;
|
|
mod late_join_set;
|
|
mod watchexec;
|
|
|
|
#[doc(inline)]
|
|
pub use crate::{
|
|
id::Id,
|
|
watchexec::{ErrorHook, Watchexec},
|
|
};
|
|
|
|
#[doc(no_inline)]
|
|
pub use crate::config::Config;
|
|
#[doc(no_inline)]
|
|
pub use watchexec_supervisor::{command, job};
|
|
|
|
#[cfg(debug_assertions)]
|
|
#[doc(hidden)]
|
|
pub mod readme_doc_check {
|
|
#[doc = include_str!("../README.md")]
|
|
pub struct Readme;
|
|
}
|