aboutsummaryrefslogtreecommitdiffstats
path: root/crates/atuin-daemon/src/events.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-11 00:54:30 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2026-06-11 00:54:30 +0200
commit5c39e7cf284a1f6e9a1657f2deb44e359fc47eb8 (patch)
treec64baa8d5866c8e339eaf660dd3f94f30a3f7d8a /crates/atuin-daemon/src/events.rs
parentchore: Somewhat simplify sync code (diff)
downloadatuin-5c39e7cf284a1f6e9a1657f2deb44e359fc47eb8.zip
chore: Move everything into one big crate
That helps remove duplicated code and rustc/cargo will now also show dead code correctly.
Diffstat (limited to 'crates/atuin-daemon/src/events.rs')
-rw-r--r--crates/atuin-daemon/src/events.rs74
1 files changed, 0 insertions, 74 deletions
diff --git a/crates/atuin-daemon/src/events.rs b/crates/atuin-daemon/src/events.rs
deleted file mode 100644
index 4e6c6ff3..00000000
--- a/crates/atuin-daemon/src/events.rs
+++ /dev/null
@@ -1,74 +0,0 @@
-//! Daemon events.
-//!
-//! Events are the primary communication mechanism within the daemon.
-//! Components emit events to notify others of state changes, and handle
-//! events to react to changes elsewhere in the system.
-//!
-//! External processes (like CLI commands) can also inject events via the
-//! Control gRPC service.
-
-use atuin_client::history::{History, HistoryId};
-use atuin_common::record::RecordId;
-
-/// Events that flow through the daemon's event bus.
-///
-/// Events are broadcast to all components. Each component decides which
-/// events it cares about in its `handle_event` implementation.
-#[derive(Debug, Clone)]
-pub enum DaemonEvent {
- // ---- History lifecycle ----
- /// A command has started running.
- HistoryStarted(History),
-
- /// A command has finished running.
- HistoryEnded(History),
-
- // ---- Sync ----
- /// Records were synced from the server.
- ///
- /// The search component uses this to update its index with new history.
- RecordsAdded(Vec<RecordId>),
-
- /// Sync completed successfully.
- SyncCompleted {
- /// Number of records uploaded.
- uploaded: usize,
- /// Number of records downloaded.
- downloaded: usize,
- },
-
- /// Sync failed.
- SyncFailed {
- /// Error message describing what went wrong.
- error: String,
- },
-
- /// Request an immediate sync (external trigger).
- ForceSync,
-
- // ---- External commands ----
- /// History was pruned - search index needs a full rebuild.
- ///
- /// Emitted when the user runs `atuin history prune` or similar.
- HistoryPruned,
-
- /// History was rebuilt - search index needs a full rebuild.
- ///
- /// Emitted when the user runs `atuin store rebuild history` or similar.
- HistoryRebuilt,
-
- /// Specific history items were deleted.
- ///
- /// The search component should remove these from its index.
- HistoryDeleted {
- /// IDs of the deleted history entries.
- ids: Vec<HistoryId>,
- },
-
- /// Settings have changed, components should reload if needed.
- SettingsReloaded,
-
- // ---- Lifecycle ----
- /// Request graceful shutdown of the daemon.
- ShutdownRequested,
-}