mecha10-cli 0.1.47

Mecha10 CLI tool
Documentation
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
409
//! Topics List TUI with ratatui
//!
//! Provides a 3-panel interface for exploring Redis topics:
//! - Left: Topics list (selectable, scrollable)
//! - Right: Live messages from selected topic
//! - Footer: Instructions and links

use crossterm::event::{KeyCode, KeyEvent, KeyModifiers};
use ratatui::{
    layout::{Constraint, Direction, Layout},
    style::{Color, Modifier, Style},
    text::{Line, Span},
    widgets::{Block, Borders, List, ListItem, ListState, Paragraph, Wrap},
    Frame,
};
use serde_json::Value;
use std::sync::{Arc, Mutex};

/// Message from a topic
#[derive(Clone, Debug)]
pub struct TopicMessage {
    pub entry_id: String,  // Redis stream entry ID (e.g., "1234567890123-0")
    pub timestamp: String, // Formatted display time (e.g., "14:32:45")
    pub payload: Value,
}

/// Shared buffer for collecting messages from a topic
#[derive(Clone)]
pub struct MessageBuffer {
    messages: Arc<Mutex<Vec<TopicMessage>>>,
    max_size: usize,
}

impl MessageBuffer {
    /// Create a new message buffer
    pub fn new(max_size: usize) -> Self {
        Self {
            messages: Arc::new(Mutex::new(Vec::new())),
            max_size,
        }
    }

    /// Add a message
    pub fn push(&self, message: TopicMessage) {
        let mut messages = self.messages.lock().unwrap();
        messages.push(message);

        // Keep only last N messages
        if messages.len() > self.max_size {
            let excess = messages.len() - self.max_size;
            messages.drain(0..excess);
        }
    }

    /// Get all current messages
    pub fn get_messages(&self) -> Vec<TopicMessage> {
        self.messages.lock().unwrap().clone()
    }

    /// Clear all messages
    pub fn clear(&self) {
        self.messages.lock().unwrap().clear();
    }
}

/// TUI for topics list and monitoring
pub struct TopicsListTui {
    topics: Vec<String>,
    selected_index: usize,
    monitoring_topic: Option<String>,
    message_buffer: MessageBuffer,
    message_scroll_offset: usize,
    auto_scroll: bool, // True = show newest messages (scroll to bottom)
    should_quit: bool,
}

impl TopicsListTui {
    /// Create a new topics list TUI
    pub fn new(topics: Vec<String>) -> Self {
        Self {
            topics,
            selected_index: 0,
            monitoring_topic: None,
            message_buffer: MessageBuffer::new(1000),
            message_scroll_offset: 0,
            auto_scroll: true, // Start with auto-scroll enabled
            should_quit: false,
        }
    }

    /// Get the currently selected topic
    pub fn selected_topic(&self) -> Option<&str> {
        self.topics.get(self.selected_index).map(|s| s.as_str())
    }

    /// Get the currently monitored topic
    pub fn monitoring_topic(&self) -> Option<&str> {
        self.monitoring_topic.as_deref()
    }

    /// Start monitoring the selected topic
    pub fn start_monitoring(&mut self) {
        if let Some(topic) = self.selected_topic() {
            self.monitoring_topic = Some(topic.to_string());
            self.message_buffer.clear();
            self.message_scroll_offset = 0;
            self.auto_scroll = true; // Reset to auto-scroll for new topic
        }
    }

    /// Stop monitoring
    pub fn stop_monitoring(&mut self) {
        self.monitoring_topic = None;
    }

    /// Get message buffer for background monitoring
    pub fn message_buffer(&self) -> MessageBuffer {
        self.message_buffer.clone()
    }

    /// Check if should quit
    pub fn should_quit(&self) -> bool {
        self.should_quit
    }

    /// Update topics list with newly discovered topics
    pub fn update_topics(&mut self, new_topics: Vec<String>) {
        // Keep current selection if possible
        let currently_selected = self.selected_topic().map(|s| s.to_string());

        // Update topics list
        self.topics = new_topics;

        // Try to restore selection
        if let Some(selected) = currently_selected {
            if let Some(index) = self.topics.iter().position(|t| t == &selected) {
                self.selected_index = index;
            } else {
                // Selected topic no longer exists, reset to first
                self.selected_index = 0;
            }
        } else {
            // Ensure index is still valid
            if self.selected_index >= self.topics.len() {
                self.selected_index = self.topics.len().saturating_sub(1);
            }
        }
    }

    /// Draw the TUI (single frame)
    pub fn draw(&mut self, f: &mut Frame) {
        // Split terminal vertically: content area + footer
        let vertical_chunks = Layout::default()
            .direction(Direction::Vertical)
            .constraints([
                Constraint::Min(10),   // Main content area
                Constraint::Length(3), // Footer
            ])
            .split(f.area());

        // Split main content horizontally: topics list + messages
        let horizontal_chunks = Layout::default()
            .direction(Direction::Horizontal)
            .constraints([
                Constraint::Percentage(40), // Topics list
                Constraint::Percentage(60), // Messages
            ])
            .split(vertical_chunks[0]);

        // Draw panels
        self.draw_topics_panel(f, horizontal_chunks[0]);
        self.draw_messages_panel(f, horizontal_chunks[1]);
        self.draw_footer(f, vertical_chunks[1]);
    }

    /// Draw topics list panel
    fn draw_topics_panel(&mut self, f: &mut Frame, area: ratatui::layout::Rect) {
        let items: Vec<ListItem> = self
            .topics
            .iter()
            .enumerate()
            .map(|(i, topic)| {
                let is_selected = i == self.selected_index;
                let is_monitoring = self.monitoring_topic.as_ref().map(|t| t == topic).unwrap_or(false);

                let (icon, style) = if is_monitoring {
                    ("🔴", Style::default().fg(Color::Red).add_modifier(Modifier::BOLD))
                } else if is_selected {
                    ("", Style::default().fg(Color::Cyan).add_modifier(Modifier::BOLD))
                } else {
                    ("  ", Style::default().fg(Color::White))
                };

                let formatted = format!("{} {}", icon, topic);
                ListItem::new(formatted).style(style)
            })
            .collect();

        let title = format!(" Topics ({}) ", self.topics.len());
        let list = List::new(items).block(
            Block::default()
                .borders(Borders::ALL)
                .title(title)
                .border_style(Style::default().fg(Color::Cyan)),
        );

        // Create list state for highlighting
        let mut state = ListState::default();
        state.select(Some(self.selected_index));

        f.render_stateful_widget(list, area, &mut state);
    }

    /// Draw messages panel
    fn draw_messages_panel(&self, f: &mut Frame, area: ratatui::layout::Rect) {
        let messages = self.message_buffer.get_messages();

        if let Some(topic) = &self.monitoring_topic {
            // Calculate how many messages fit in the display area
            let available_height = area.height.saturating_sub(2) as usize; // Subtract borders

            // Determine which messages to show
            let messages_to_show: Vec<ListItem> = if self.auto_scroll {
                // Show the newest messages (from the end)
                messages
                    .iter()
                    .rev()
                    .take(available_height)
                    .rev()
                    .map(|msg| {
                        let payload_str =
                            serde_json::to_string_pretty(&msg.payload).unwrap_or_else(|_| msg.payload.to_string());

                        let formatted = format!("[{}] {}", msg.timestamp, payload_str);
                        ListItem::new(formatted).style(Style::default().fg(Color::White))
                    })
                    .collect()
            } else {
                // Manual scroll mode - show from offset
                messages
                    .iter()
                    .skip(self.message_scroll_offset)
                    .take(available_height)
                    .map(|msg| {
                        let payload_str =
                            serde_json::to_string_pretty(&msg.payload).unwrap_or_else(|_| msg.payload.to_string());

                        let formatted = format!("[{}] {}", msg.timestamp, payload_str);
                        ListItem::new(formatted).style(Style::default().fg(Color::White))
                    })
                    .collect()
            };

            let scroll_indicator = if self.auto_scroll {
                " [Auto-scroll] "
            } else {
                " [Manual] "
            };
            let title = format!(" Messages from {} ({}) {} ", topic, messages.len(), scroll_indicator);
            let list = List::new(messages_to_show).block(
                Block::default()
                    .borders(Borders::ALL)
                    .title(title)
                    .border_style(Style::default().fg(Color::Yellow)),
            );

            f.render_widget(list, area);
        } else {
            // Show instructions
            let text = vec![
                Line::from(vec![Span::styled(
                    "📋 TOPICS MONITOR",
                    Style::default().fg(Color::Cyan).add_modifier(Modifier::BOLD),
                )]),
                Line::from(""),
                Line::from("Select a topic from the list and press"),
                Line::from("Enter to start monitoring."),
                Line::from(""),
                Line::from("Messages will appear here in real-time."),
                Line::from(""),
                Line::from(vec![Span::styled(
                    "Instructions:",
                    Style::default().add_modifier(Modifier::BOLD),
                )]),
                Line::from("  ↑/↓       Navigate topics"),
                Line::from("  Enter     Start/stop monitoring"),
                Line::from("  j/k       Scroll messages"),
                Line::from("  g/G       Jump to top/bottom"),
                Line::from("  Q/ESC     Exit"),
            ];

            let paragraph = Paragraph::new(text)
                .block(
                    Block::default()
                        .borders(Borders::ALL)
                        .title(" Messages ")
                        .border_style(Style::default().fg(Color::Yellow)),
                )
                .wrap(Wrap { trim: true });

            f.render_widget(paragraph, area);
        }
    }

    /// Draw footer with links
    fn draw_footer(&self, f: &mut Frame, area: ratatui::layout::Rect) {
        let footer_text = vec![Line::from(vec![
            Span::raw("  "),
            Span::styled("↑/↓:", Style::default().fg(Color::Cyan).add_modifier(Modifier::BOLD)),
            Span::raw(" Navigate  "),
            Span::styled("j/k:", Style::default().fg(Color::Yellow).add_modifier(Modifier::BOLD)),
            Span::raw(" Scroll  "),
            Span::styled("g/G:", Style::default().fg(Color::Yellow).add_modifier(Modifier::BOLD)),
            Span::raw(" Top/Bottom  "),
            Span::styled("Enter:", Style::default().fg(Color::Green).add_modifier(Modifier::BOLD)),
            Span::raw(" Monitor  "),
            Span::styled("Q/ESC:", Style::default().fg(Color::Red).add_modifier(Modifier::BOLD)),
            Span::raw(" Exit"),
        ])];

        let footer = Paragraph::new(footer_text).block(
            Block::default()
                .borders(Borders::ALL)
                .border_style(Style::default().fg(Color::DarkGray)),
        );

        f.render_widget(footer, area);
    }

    /// Handle keyboard input
    pub fn handle_key(&mut self, key: KeyEvent) {
        match key.code {
            // Exit
            KeyCode::Char('q') | KeyCode::Esc => {
                self.should_quit = true;
            }
            KeyCode::Char('c') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                self.should_quit = true;
            }

            // Navigate topics
            KeyCode::Up => {
                if self.selected_index > 0 {
                    self.selected_index -= 1;
                }
            }
            KeyCode::Down => {
                if self.selected_index < self.topics.len().saturating_sub(1) {
                    self.selected_index += 1;
                }
            }

            // Start/stop monitoring
            KeyCode::Enter => {
                if self.monitoring_topic.is_some() {
                    self.stop_monitoring();
                } else {
                    self.start_monitoring();
                }
            }

            // Scroll messages (PgUp/PgDn, Ctrl+U/D, or j/k for laptops)
            KeyCode::PageUp | KeyCode::Char('u') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                self.auto_scroll = false; // Disable auto-scroll
                self.message_scroll_offset = self.message_scroll_offset.saturating_sub(10);
            }
            KeyCode::PageDown | KeyCode::Char('d') if key.modifiers.contains(KeyModifiers::CONTROL) => {
                let messages = self.message_buffer.get_messages();
                let new_offset = (self.message_scroll_offset + 10).min(messages.len().saturating_sub(1));

                // If we're at the end, re-enable auto-scroll
                if new_offset >= messages.len().saturating_sub(1) {
                    self.auto_scroll = true;
                } else {
                    self.auto_scroll = false;
                    self.message_scroll_offset = new_offset;
                }
            }
            KeyCode::Char('k') => {
                self.auto_scroll = false; // Disable auto-scroll
                self.message_scroll_offset = self.message_scroll_offset.saturating_sub(1);
            }
            KeyCode::Char('j') => {
                let messages = self.message_buffer.get_messages();
                let new_offset = (self.message_scroll_offset + 1).min(messages.len().saturating_sub(1));

                // If we're at the end, re-enable auto-scroll
                if new_offset >= messages.len().saturating_sub(1) {
                    self.auto_scroll = true;
                } else {
                    self.auto_scroll = false;
                    self.message_scroll_offset = new_offset;
                }
            }
            // 'G' to jump to end (newest messages) and enable auto-scroll
            KeyCode::Char('G') => {
                self.auto_scroll = true;
                self.message_scroll_offset = 0;
            }
            // 'g' to jump to beginning (oldest messages)
            KeyCode::Char('g') => {
                self.auto_scroll = false;
                self.message_scroll_offset = 0;
            }

            _ => {}
        }
    }
}