mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-17 01:28:30 +01:00
35 lines
941 B
Rust
35 lines
941 B
Rust
//! Fundamentally, events in watchexec have three purposes:
|
|
//!
|
|
//! 1. To trigger the launch, restart, or other interruption of a process;
|
|
//! 2. To be filtered upon according to whatever set of criteria is desired;
|
|
//! 3. To carry information about what caused the event, which may be provided to the process.
|
|
|
|
use chrono::{DateTime, Local};
|
|
use std::{collections::HashMap, path::PathBuf};
|
|
|
|
/// An event, as far as watchexec cares about.
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
pub struct Event {
|
|
pub particulars: Vec<Particle>,
|
|
pub metadata: HashMap<String, Vec<String>>,
|
|
}
|
|
|
|
/// Something which can be used to filter an event.
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
#[non_exhaustive]
|
|
pub enum Particle {
|
|
Time(DateTime<Local>),
|
|
Path(PathBuf),
|
|
Source(Source),
|
|
Process(u32),
|
|
}
|
|
|
|
/// The general origin of the event.
|
|
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
|
|
#[non_exhaustive]
|
|
pub enum Source {
|
|
Filesystem,
|
|
Keyboard,
|
|
Mouse,
|
|
Time,
|
|
}
|