1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
//! Sync component.
//!
//! Handles periodic synchronization with the Atuin cloud server.
use std::time::Duration;
use eyre::Result;
use rand::Rng;
use tokio::sync::mpsc;
use tokio::time::{self, MissedTickBehavior};
use atuin_client::{history::store::HistoryStore, record::sync, settings::Settings};
use atuin_dotfiles::store::{AliasStore, var::VarStore};
use crate::{
daemon::{Component, DaemonHandle},
events::DaemonEvent,
};
/// Commands that can be sent to the sync task.
enum SyncCommand {
/// Trigger an immediate sync.
ForceSync,
/// Stop the sync loop.
Stop,
}
/// Sync state - tracks whether we're in normal operation or retrying after failure.
#[derive(Clone, Copy, PartialEq, Eq)]
enum SyncState {
/// Normal operation. Periodic syncs only run if auto_sync is enabled.
Idle,
/// Retrying after a sync failure. Retries continue regardless of auto_sync
/// until the sync succeeds.
Retrying,
}
/// Sync component - handles periodic cloud synchronization.
///
/// This component:
/// - Runs a background sync loop on a configurable interval
/// - Implements exponential backoff on sync failures
/// - Responds to ForceSync events for immediate sync
/// - Emits SyncCompleted/SyncFailed events
pub struct SyncComponent {
task_handle: Option<tokio::task::JoinHandle<()>>,
command_tx: Option<mpsc::Sender<SyncCommand>>,
}
impl SyncComponent {
/// Create a new sync component.
pub fn new() -> Self {
Self {
task_handle: None,
command_tx: None,
}
}
}
impl Default for SyncComponent {
fn default() -> Self {
Self::new()
}
}
#[tonic::async_trait]
impl Component for SyncComponent {
fn name(&self) -> &'static str {
"sync"
}
async fn start(&mut self, handle: DaemonHandle) -> Result<()> {
let (cmd_tx, cmd_rx) = mpsc::channel(16);
self.command_tx = Some(cmd_tx);
// Spawn the sync loop with its own copy of the handle
self.task_handle = Some(tokio::spawn(sync_loop(handle, cmd_rx)));
tracing::info!("sync component started");
Ok(())
}
async fn handle_event(&mut self, event: &DaemonEvent) -> Result<()> {
if let DaemonEvent::ForceSync = event {
tracing::info!("force sync requested");
if let Some(tx) = &self.command_tx {
let _ = tx.send(SyncCommand::ForceSync).await;
}
}
Ok(())
}
async fn stop(&mut self) -> Result<()> {
if let Some(tx) = &self.command_tx {
let _ = tx.send(SyncCommand::Stop).await;
}
if let Some(handle) = self.task_handle.take() {
// Give the task a moment to shut down gracefully
let _ = tokio::time::timeout(std::time::Duration::from_secs(5), handle).await;
}
tracing::info!("sync component stopped");
Ok(())
}
}
/// The main sync loop.
///
/// This runs in a spawned task and handles periodic sync as well as
/// force sync requests.
async fn sync_loop(handle: DaemonHandle, mut cmd_rx: mpsc::Receiver<SyncCommand>) {
tracing::info!("sync loop starting");
// Clone settings since we need them across await points
let settings = handle.settings().await.clone();
let host_id = match Settings::host_id().await {
Ok(id) => id,
Err(e) => {
tracing::error!("failed to get host id, sync disabled: {e}");
return;
}
};
// Create the stores we need
let encryption_key = *handle.encryption_key();
let history_store = HistoryStore::new(handle.store().clone(), host_id, encryption_key);
let alias_store = AliasStore::new(handle.store().clone(), host_id, encryption_key);
let var_store = VarStore::new(handle.store().clone(), host_id, encryption_key);
// Don't backoff by more than 30 mins (with a random jitter of up to 1 min)
let max_interval: f64 = 60.0 * 30.0 + rand::thread_rng().gen_range(0.0..60.0);
let mut ticker = time::interval(time::Duration::from_secs(settings.daemon.sync_frequency));
// IMPORTANT: without this, if we miss ticks because a sync takes ages or is otherwise delayed,
// we may end up running a lot of syncs in a hot loop.
ticker.set_missed_tick_behavior(MissedTickBehavior::Skip);
let mut sync_state = SyncState::Idle;
loop {
tokio::select! {
_ = ticker.tick() => {
let settings = handle.settings().await;
// Skip periodic ticks if auto_sync is disabled AND we're not retrying
// a previous failure. Retries must continue regardless of auto_sync.
if !settings.auto_sync && sync_state == SyncState::Idle {
tracing::debug!("auto_sync disabled, skipping periodic sync tick");
continue;
}
sync_state = do_sync_tick(
&handle,
&history_store,
&alias_store,
&var_store,
&mut ticker,
max_interval,
&settings,
).await;
}
cmd = cmd_rx.recv() => {
match cmd {
Some(SyncCommand::ForceSync) => {
tracing::info!("executing force sync");
let settings = handle.settings().await;
sync_state = do_sync_tick(
&handle,
&history_store,
&alias_store,
&var_store,
&mut ticker,
max_interval,
&settings,
).await;
}
Some(SyncCommand::Stop) | None => {
tracing::info!("sync loop stopping");
break;
}
}
}
}
}
}
/// Execute a single sync tick.
///
/// Returns the new sync state: `Idle` on success, `Retrying` on failure.
async fn do_sync_tick(
handle: &DaemonHandle,
history_store: &HistoryStore,
alias_store: &AliasStore,
var_store: &VarStore,
ticker: &mut time::Interval,
max_interval: f64,
settings: &Settings,
) -> SyncState {
tracing::info!("sync tick");
// Check if logged in
let logged_in = match settings.logged_in().await {
Ok(v) => v,
Err(e) => {
tracing::warn!("failed to check login status, skipping sync tick: {e}");
return SyncState::Idle;
}
};
if !logged_in {
tracing::debug!("not logged in, skipping sync tick");
return SyncState::Idle;
}
// Perform the sync
let res = sync::sync(settings, handle.store(), handle.encryption_key()).await;
match res {
Err(e) => {
tracing::error!("sync tick failed with {e}");
// Emit failure event
handle.emit(DaemonEvent::SyncFailed {
error: e.to_string(),
});
// Exponential backoff
let mut rng = rand::thread_rng();
let mut new_interval = ticker.period().as_secs_f64() * rng.gen_range(2.0..2.2);
if new_interval > max_interval {
new_interval = max_interval;
}
*ticker = time::interval_at(
tokio::time::Instant::now() + Duration::from_secs(new_interval as u64),
time::Duration::from_secs(new_interval as u64),
);
ticker.reset_after(time::Duration::from_secs(new_interval as u64));
ticker.set_missed_tick_behavior(MissedTickBehavior::Skip);
tracing::error!("backing off, next sync tick in {new_interval}");
SyncState::Retrying
}
Ok((uploaded_count, downloaded_records)) => {
tracing::info!(
uploaded = uploaded_count,
downloaded = downloaded_records.len(),
"sync complete"
);
// Build history from downloaded records
if let Err(e) = history_store
.incremental_build(handle.history_db(), &downloaded_records)
.await
{
tracing::error!("failed to build history from downloaded records: {e}");
}
// Emit the records added event (for search indexing)
handle.emit(DaemonEvent::RecordsAdded(downloaded_records.clone()));
// Emit sync completed event
handle.emit(DaemonEvent::SyncCompleted {
uploaded: uploaded_count as usize,
downloaded: downloaded_records.len(),
});
// Rebuild alias and var stores
if let Err(e) = alias_store.build().await {
tracing::error!("failed to rebuild alias store: {e}");
}
if let Err(e) = var_store.build().await {
tracing::error!("failed to rebuild var store: {e}");
}
// Reset backoff on success
if ticker.period().as_secs() != settings.daemon.sync_frequency {
*ticker = time::interval_at(
tokio::time::Instant::now()
+ Duration::from_secs(settings.daemon.sync_frequency),
time::Duration::from_secs(settings.daemon.sync_frequency),
);
ticker.set_missed_tick_behavior(MissedTickBehavior::Skip);
}
// Store sync time
if let Err(e) = Settings::save_sync_time().await {
tracing::error!("failed to save sync time: {e}");
}
SyncState::Idle
}
}
}
|