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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
//! Interactive TUI — one tab per enabled vendor, plus one extra tab per
//! configured Anthropic account (`[[anthropic.accounts]]`, issues #14/#17).
//!
//! Controls:
//! Tab / l / → next tab
//! Shift+Tab / h / ← prev tab
//! r refresh active tab
//! R refresh all tabs
//! c local Claude Code context sessions (when enabled)
//! q / Esc / Ctrl-C quit
use std::io;
use std::time::Duration;
use ai_usagebar::config::Config;
use ai_usagebar::tui::app::{
ANTHROPIC_REFRESH_STAGGER, App, REFRESH_INTERVAL, TabId, TabState, refresh_one,
refresh_stagger, tabs_from_config,
};
use ai_usagebar::tui::view::draw;
use ai_usagebar::vendor::HTTP_CLIENT_TIMEOUT;
use ratatui::Terminal;
use ratatui::backend::CrosstermBackend;
use ratatui::crossterm::event::{
self, DisableMouseCapture, EnableMouseCapture, Event, KeyCode, KeyEventKind, KeyModifiers,
};
use ratatui::crossterm::execute;
use ratatui::crossterm::terminal::{
EnterAlternateScreen, LeaveAlternateScreen, disable_raw_mode, enable_raw_mode,
};
use ratatui::layout::Rect;
use reqwest::Client;
use tokio::sync::mpsc;
#[tokio::main(flavor = "current_thread")]
async fn main() {
if let Err(e) = run().await {
eprintln!("ai-usagebar-tui: {e}");
std::process::exit(1);
}
}
async fn run() -> io::Result<()> {
// Report a broken config instead of silently starting on defaults, and do
// it before raw mode so the message is actually readable.
let mut config = Config::load().map_err(|e| {
io::Error::other(format!(
"{} could not be loaded: {e}\n\
Fix the file (or move it aside) and try again.",
ai_usagebar::config::config_path_hint()
))
})?;
let tabs = tabs_from_config(&config);
if tabs.is_empty() {
eprintln!(
"No vendors are enabled in {}. Exiting.",
ai_usagebar::config::config_path_hint()
);
return Ok(());
}
let client = Client::builder()
.timeout(HTTP_CLIENT_TIMEOUT)
.build()
.map_err(io::Error::other)?;
let mut app = App::new_with_primary(tabs, config.ui.primary);
app.context_enabled = config.context.enabled;
app.overview_vendors = config.ui.overview_vendors.clone();
// RAII: restoring the terminal must survive an error or a panic in the
// loop below. Doing it inline left the user in raw mode on the alternate
// screen with no cursor whenever anything went wrong.
let _guard = TerminalGuard::enter()?;
let backend = CrosstermBackend::new(io::stdout());
let mut terminal = Terminal::new(backend)?;
event_loop(&mut terminal, &mut app, &client, &mut config).await
}
/// Owns the terminal mode changes and undoes them on drop, in reverse order.
struct TerminalGuard;
impl TerminalGuard {
fn enter() -> io::Result<Self> {
enable_raw_mode()?;
let mut stdout = io::stdout();
if let Err(e) = execute!(stdout, EnterAlternateScreen, EnableMouseCapture) {
// Do not leave raw mode enabled if only half the setup succeeded.
let _ = disable_raw_mode();
return Err(e);
}
Ok(Self)
}
}
impl Drop for TerminalGuard {
fn drop(&mut self) {
// Best-effort: we are often unwinding, so there is nowhere to report.
let mut stdout = io::stdout();
let _ = execute!(
stdout,
LeaveAlternateScreen,
DisableMouseCapture,
ratatui::crossterm::cursor::Show
);
let _ = disable_raw_mode();
}
}
async fn event_loop<B: ratatui::backend::Backend>(
terminal: &mut Terminal<B>,
app: &mut App,
client: &Client,
config: &mut Config,
) -> io::Result<()>
where
io::Error: From<B::Error>,
{
// Kick off initial fetches for every vendor in parallel.
let (tx, mut rx) = mpsc::unbounded_channel::<(u64, TabId, TabState)>();
let (context_tx, mut context_rx) = mpsc::unbounded_channel::<(
u64,
std::result::Result<ai_usagebar::context::ContextScan, String>,
)>();
spawn_all(app, client, config, &tx);
// ONE reader thread for the whole session. Spawning a fresh
// `spawn_blocking(event::poll)` on every `select!` iteration leaked a
// blocking task each time another branch won: those tasks kept running and
// raced each other on `event::read()`, so keypresses could be consumed by
// an orphan and lost. A dedicated thread also means a slow branch can never
// delay input.
//
// Resize must wake the loop too: discarding `Event::Resize` left the
// alternate screen at the previous paint size (UI stuck in a corner after
// maximize, or ghost cells after shrink) until a keypress forced a draw.
let (input_tx, mut input_rx) = mpsc::unbounded_channel::<InputEvent>();
std::thread::spawn(move || {
loop {
// A blocking read is fine here: this thread does nothing else, and
// the channel send wakes the runtime.
match event::read() {
Ok(Event::Key(k)) => {
if input_tx.send(InputEvent::Key(k)).is_err() {
return; // receiver gone: the TUI is shutting down.
}
}
Ok(Event::Resize(cols, rows)) => {
if input_tx.send(InputEvent::Resize { cols, rows }).is_err() {
return;
}
}
Ok(_) => {}
Err(_) => return,
}
}
});
let mut tick = tokio::time::interval(REFRESH_INTERVAL);
tick.tick().await; // consume the immediate tick.
loop {
terminal.draw(|f| draw(f, app))?;
tokio::select! {
biased;
// Snapshot results from background tasks.
Some((generation, tab, state)) = rx.recv() => {
app.apply_refresh(generation, &tab, state);
}
// Local transcript scans carry their own generation so a slow
// pre-`r` result cannot replace a newer scan.
Some((generation, result)) = context_rx.recv() => {
if let Some(context) = app.context.as_mut() {
context.apply_scan(generation, result);
}
}
// Periodic auto-refresh of all tabs.
_ = tick.tick() => {
spawn_all(app, client, config, &tx);
}
// Keyboard + resize, delivered by the single reader thread.
maybe_input = input_rx.recv() => {
let Some(input) = maybe_input else {
return Ok(()); // reader thread ended: stdin closed.
};
let k = match input {
InputEvent::Resize { cols, rows } => {
// Prefer resize() over clear(): clear() snapshots the
// cursor via DSR (\x1b[6n) and can hang/fail when the
// terminal doesn't answer. resize() for Fullscreen
// clears the viewport + resets the diff buffer without
// that round-trip; the next draw fills the new area.
// Ignore the result: a failed resize (e.g. a transient
// ioctl error) must not tear down the whole TUI — the
// next successful resize or redraw recovers.
let _ = terminal.resize(Rect::new(0, 0, cols, rows));
continue;
}
InputEvent::Key(k) => k,
};
{
// On Windows Terminal (and terminals advertising the
// Kitty keyboard protocol) crossterm reports key Repeat
// (auto-repeat while held) and Release events in addition
// to Press. Acting on anything but Press makes one tap
// move several tabs and holding a key fly through them.
// Treat each *press* as exactly one action; ignore
// Repeat and Release entirely.
if k.kind != KeyEventKind::Press {
continue;
}
// Context overlay consumes all keys while open.
if app.context.is_some() {
use ai_usagebar::tui::context::{Action as CAction, handle_key as chandle};
let action = {
let context = app.context.as_mut().expect("checked above");
chandle(context, k.code, k.modifiers)
};
match action {
CAction::Continue => {}
CAction::Close => app.context = None,
CAction::Refresh => {
spawn_context_scan(app, config, &context_tx);
}
CAction::Quit => return Ok(()),
}
continue;
}
// Settings overlay consumes all keys when open.
if let Some(s) = app.settings.as_mut() {
use ai_usagebar::tui::settings::{Action as SAction, handle_key as shandle};
match shandle(s, k.code, k.modifiers) {
SAction::Continue => {}
SAction::Close => app.settings = None,
SAction::SavedAndClose => {
app.settings = None;
// Re-load config so the new primary takes effect
// on the next render, rebuild the tab set so
// account/vendor changes made to config.toml
// while the TUI was open appear without a
// restart, and queue an immediate refresh of
// every tab so newly-set API keys are picked up.
// Keep the config we already have if the reload
// fails — reverting to defaults would silently
// drop the user's real settings mid-session.
if let Ok(reloaded) = ai_usagebar::config::Config::load() {
*config = reloaded;
}
app.context_enabled = config.context.enabled;
app.set_tabs(tabs_from_config(config));
app.select_primary(config.ui.primary);
spawn_all(app, client, config, &tx);
}
SAction::Quit => return Ok(()),
}
continue;
}
// Normal key handling (settings closed).
if matches!(k.code, KeyCode::Char('s')) {
// Prefer the file (it may have changed on disk), but fall
// back to the config in memory rather than to defaults.
let cfg = ai_usagebar::config::Config::load()
.unwrap_or_else(|_| config.clone());
app.settings = Some(
ai_usagebar::tui::settings::SettingsState::from_config(&cfg),
);
continue;
}
if matches!(k.code, KeyCode::Char('c'))
&& !k.modifiers.intersects(
KeyModifiers::CONTROL
| KeyModifiers::ALT
| KeyModifiers::SUPER
| KeyModifiers::HYPER
| KeyModifiers::META,
)
&& app.context_enabled
{
app.context = Some(ai_usagebar::tui::context::ContextState::new(
config.context.layout,
));
spawn_context_scan(app, config, &context_tx);
continue;
}
if handle_key(app, k.code, k.modifiers) {
return Ok(());
}
// Refresh-on-key handling.
if matches!(k.code, KeyCode::Char('r')) {
if app.overview {
// No single active tab on the Overview — refresh all.
spawn_all(app, client, config, &tx);
} else if let Some(tab) = app.active_tab_id().cloned() {
// A manual single-tab refresh isn't a burst — no stagger.
spawn_one(app, tab, client, config, &tx, Duration::ZERO);
}
}
if matches!(k.code, KeyCode::Char('R')) {
spawn_all(app, client, config, &tx);
}
}
}
}
if app.quit {
return Ok(());
}
}
}
/// Crossterm events the dedicated reader thread forwards into the async loop.
enum InputEvent {
Key(event::KeyEvent),
Resize { cols: u16, rows: u16 },
}
fn spawn_context_scan(
app: &mut App,
config: &Config,
tx: &mpsc::UnboundedSender<(
u64,
std::result::Result<ai_usagebar::context::ContextScan, String>,
)>,
) {
let Some(context) = app.context.as_mut() else {
return;
};
app.context_generation = app.context_generation.wrapping_add(1);
let generation = app.context_generation;
context.begin_refresh(generation);
let context_config = config.context.clone();
let tx = tx.clone();
tokio::task::spawn_blocking(move || {
let result = (|| {
let path = match context_config.projects_path.as_deref() {
Some(path) => path.to_path_buf(),
None => ai_usagebar::context::default_projects_path()?,
};
ai_usagebar::context::scan_dir(&path, &context_config)
})()
.map_err(|error| error.to_string());
let _ = tx.send((generation, result));
});
}
fn spawn_all(
app: &mut App,
client: &Client,
config: &Config,
tx: &mpsc::UnboundedSender<(u64, TabId, TabState)>,
) {
let tabs = app.tabs_meta.clone();
// Space out the Anthropic tabs so several accounts don't burst the shared
// usage/token endpoint and trip its rate limit (429).
let delays = refresh_stagger(&tabs, ANTHROPIC_REFRESH_STAGGER);
for (tab, delay) in tabs.into_iter().zip(delays) {
spawn_one(app, tab, client, config, tx, delay);
}
}
fn spawn_one(
app: &mut App,
tab: TabId,
client: &Client,
config: &Config,
tx: &mpsc::UnboundedSender<(u64, TabId, TabState)>,
delay: Duration,
) {
let tx = tx.clone();
let client = client.clone();
let cfg = config.clone();
let generation = app.tab_generation;
if let Some(index) = app.tabs_meta.iter().position(|current| current == &tab) {
app.tabs[index] = TabState::Loading;
}
tokio::spawn(async move {
if !delay.is_zero() {
tokio::time::sleep(delay).await;
}
let state = refresh_one(&client, &cfg, &tab).await;
let _ = tx.send((generation, tab, state));
});
}
fn handle_key(app: &mut App, code: KeyCode, mods: KeyModifiers) -> bool {
match code {
KeyCode::Char('q') | KeyCode::Esc => {
app.quit = true;
true
}
KeyCode::Char('c') if mods.contains(KeyModifiers::CONTROL) => {
app.quit = true;
true
}
KeyCode::Tab | KeyCode::Char('l') | KeyCode::Right => {
app.next_tab();
false
}
KeyCode::BackTab | KeyCode::Char('h') | KeyCode::Left => {
app.prev_tab();
false
}
_ => false,
}
}