vm-curator 0.4.2

A TUI application to manage QEMU VM library
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
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
use ratatui::{
    layout::{Alignment, Constraint, Direction, Layout, Rect},
    prelude::*,
    widgets::{Block, Borders, Clear, Paragraph, Wrap},
};

use crate::app::App;
use crate::vm::QemuConfig;

/// Render the configuration view
pub fn render(app: &App, frame: &mut Frame) {
    let area = frame.area();
    let dialog_width = 70.min(area.width.saturating_sub(4));
    let dialog_height = 30.min(area.height.saturating_sub(4));

    let dialog_area = centered_rect(dialog_width, dialog_height, area);
    frame.render_widget(Clear, dialog_area);

    let vm_name = app.selected_vm()
        .map(|vm| vm.display_name())
        .unwrap_or_else(|| "Unknown".to_string());

    let block = Block::default()
        .title(format!(" {} - Configuration ", vm_name))
        .borders(Borders::ALL)
        .border_style(Style::default().fg(Color::Cyan))
        .style(Style::default().bg(Color::Black));

    let inner = block.inner(dialog_area);
    frame.render_widget(block, dialog_area);

    // Add horizontal margins
    let h_chunks = Layout::default()
        .direction(Direction::Horizontal)
        .constraints([
            Constraint::Length(2),  // Left margin
            Constraint::Min(1),     // Content
            Constraint::Length(2),  // Right margin
        ])
        .split(inner);

    // Split into padding, config, bottom padding, and help
    let chunks = Layout::default()
        .direction(Direction::Vertical)
        .constraints([
            Constraint::Length(1),   // Top padding
            Constraint::Min(10),     // Config content
            Constraint::Length(1),   // Bottom padding
            Constraint::Length(2),   // Help text
        ])
        .split(h_chunks[1]);

    if let Some(vm) = app.selected_vm() {
        render_config(&vm.config, chunks[1], frame);
    } else {
        let msg = Paragraph::new("No VM selected")
            .style(Style::default().fg(Color::DarkGray))
            .alignment(Alignment::Center);
        frame.render_widget(msg, chunks[1]);
    }

    // Help text
    let help = Paragraph::new("[r] View raw script  [Esc] Back")
        .style(Style::default().fg(Color::DarkGray))
        .alignment(Alignment::Center);
    frame.render_widget(help, chunks[3]);
}

fn render_config(config: &QemuConfig, area: Rect, frame: &mut Frame) {
    let mut lines = Vec::new();

    // Emulator
    lines.push(Line::from(vec![
        Span::styled("Emulator: ", Style::default().fg(Color::Yellow)),
        Span::raw(config.emulator.command()),
    ]));

    // Architecture
    lines.push(Line::from(vec![
        Span::styled("Architecture: ", Style::default().fg(Color::Yellow)),
        Span::raw(config.emulator.architecture()),
    ]));

    // Memory
    lines.push(Line::from(vec![
        Span::styled("Memory: ", Style::default().fg(Color::Yellow)),
        Span::raw(format!("{} MB", config.memory_mb)),
    ]));

    // CPU
    lines.push(Line::from(vec![
        Span::styled("CPU Cores: ", Style::default().fg(Color::Yellow)),
        Span::raw(format!("{}", config.cpu_cores)),
    ]));

    if let Some(ref model) = config.cpu_model {
        lines.push(Line::from(vec![
            Span::styled("CPU Model: ", Style::default().fg(Color::Yellow)),
            Span::raw(model.clone()),
        ]));
    }

    // Machine type
    if let Some(ref machine) = config.machine {
        lines.push(Line::from(vec![
            Span::styled("Machine: ", Style::default().fg(Color::Yellow)),
            Span::raw(machine.clone()),
        ]));
    }

    lines.push(Line::from(""));

    // Graphics
    lines.push(Line::from(vec![
        Span::styled("VGA: ", Style::default().fg(Color::Yellow)),
        Span::raw(format!("{:?}", config.vga)),
    ]));

    // Audio
    if !config.audio_devices.is_empty() {
        let audio_str = config.audio_devices
            .iter()
            .map(|a| format!("{:?}", a))
            .collect::<Vec<_>>()
            .join(", ");
        lines.push(Line::from(vec![
            Span::styled("Audio: ", Style::default().fg(Color::Yellow)),
            Span::raw(audio_str),
        ]));
    }

    // Network
    if let Some(ref net) = config.network {
        let backend_str = match &net.backend {
            crate::vm::qemu_config::NetworkBackend::User => "user/SLIRP (NAT)".to_string(),
            crate::vm::qemu_config::NetworkBackend::Passt => "passt".to_string(),
            crate::vm::qemu_config::NetworkBackend::Bridge(name) => format!("bridge: {}", name),
            crate::vm::qemu_config::NetworkBackend::None => "none".to_string(),
        };
        lines.push(Line::from(vec![
            Span::styled("Network: ", Style::default().fg(Color::Yellow)),
            Span::raw(format!("{} ({})", net.model, backend_str)),
        ]));
        if !net.port_forwards.is_empty() {
            lines.push(Line::from(Span::styled(
                "  Forwarded ports:",
                Style::default().fg(Color::DarkGray),
            )));
            for pf in &net.port_forwards {
                lines.push(Line::from(format!("    {} {} -> {}", pf.protocol, pf.host_port, pf.guest_port)));
            }
        }
    }

    lines.push(Line::from(""));

    // Disks
    lines.push(Line::from(Span::styled(
        "Disks:",
        Style::default().fg(Color::Yellow).add_modifier(Modifier::BOLD),
    )));

    for disk in &config.disks {
        let path = disk.path.file_name()
            .and_then(|n| n.to_str())
            .unwrap_or("unknown");
        lines.push(Line::from(format!(
            "  {} ({:?}, {})",
            path, disk.format, disk.interface
        )));
    }

    lines.push(Line::from(""));

    // Features
    let mut features = Vec::new();
    if config.enable_kvm {
        features.push("KVM");
    }
    if config.uefi {
        features.push("UEFI");
    }
    if config.tpm {
        features.push("TPM");
    }

    if !features.is_empty() {
        lines.push(Line::from(vec![
            Span::styled("Features: ", Style::default().fg(Color::Yellow)),
            Span::raw(features.join(", ")),
        ]));
    }

    // Snapshot support
    let snapshot_support = if config.supports_snapshots() {
        Span::styled("Yes", Style::default().fg(Color::Green))
    } else {
        Span::styled("No (raw disk)", Style::default().fg(Color::Red))
    };
    lines.push(Line::from(vec![
        Span::styled("Snapshots: ", Style::default().fg(Color::Yellow)),
        snapshot_support,
    ]));

    let para = Paragraph::new(lines)
        .wrap(Wrap { trim: false });
    frame.render_widget(para, area);
}

/// Render raw script editor
pub fn render_raw_script(app: &App, frame: &mut Frame) {
    let area = frame.area();
    let dialog_width = 90.min(area.width.saturating_sub(4));
    let dialog_height = 40.min(area.height.saturating_sub(4));

    let dialog_area = centered_rect(dialog_width, dialog_height, area);
    frame.render_widget(Clear, dialog_area);

    let vm_name = app.selected_vm()
        .map(|vm| vm.display_name())
        .unwrap_or_else(|| "Unknown".to_string());

    let modified_indicator = if app.script_editor_modified { " [modified]" } else { "" };

    let block = Block::default()
        .title(format!(" {} - launch.sh{} ", vm_name, modified_indicator))
        .borders(Borders::ALL)
        .border_style(if app.script_editor_modified {
            Style::default().fg(Color::Yellow)
        } else {
            Style::default().fg(Color::Cyan)
        })
        .style(Style::default().bg(Color::Black));

    let inner = block.inner(dialog_area);
    frame.render_widget(block, dialog_area);

    // Split into line numbers, content, and help text
    let v_chunks = Layout::default()
        .direction(Direction::Vertical)
        .constraints([
            Constraint::Min(1),     // Editor content
            Constraint::Length(1),  // Help text
        ])
        .split(inner);

    let editor_area = v_chunks[0];
    let help_area = v_chunks[1];

    // Split editor area into line numbers and text
    let h_chunks = Layout::default()
        .direction(Direction::Horizontal)
        .constraints([
            Constraint::Length(5),  // Line numbers
            Constraint::Min(1),     // Text content
        ])
        .split(editor_area);

    let line_num_area = h_chunks[0];
    let text_area = h_chunks[1];

    let visible_height = text_area.height as usize;
    let total_lines = app.script_editor_lines.len();
    let scroll_offset = app.raw_script_scroll as usize;

    // Calculate visible line range
    let start_line = scroll_offset;
    let end_line = (scroll_offset + visible_height).min(total_lines);

    // Render line numbers
    let line_numbers: Vec<Line> = (start_line..end_line)
        .map(|i| {
            let style = if i == app.script_editor_cursor.0 {
                Style::default().fg(Color::Yellow)
            } else {
                Style::default().fg(Color::DarkGray)
            };
            Line::styled(format!("{:4} ", i + 1), style)
        })
        .collect();
    let line_nums_widget = Paragraph::new(line_numbers);
    frame.render_widget(line_nums_widget, line_num_area);

    // Render text content with cursor
    let text_width = text_area.width as usize;
    let h_scroll = app.script_editor_h_scroll;

    let text_lines: Vec<Line> = (start_line..end_line)
        .map(|i| {
            let line = app.script_editor_lines.get(i).map(|s| s.as_str()).unwrap_or("");

            // Apply horizontal scroll
            let visible_line = if h_scroll < line.len() {
                &line[h_scroll..]
            } else {
                ""
            };

            // Truncate to visible width
            let display_line: String = visible_line.chars().take(text_width).collect();

            if i == app.script_editor_cursor.0 {
                // This is the cursor line - highlight it slightly
                Line::styled(display_line, Style::default().fg(Color::White))
            } else {
                Line::styled(display_line, Style::default().fg(Color::Gray))
            }
        })
        .collect();

    let text_widget = Paragraph::new(text_lines);
    frame.render_widget(text_widget, text_area);

    // Draw cursor
    let cursor_line = app.script_editor_cursor.0;
    let cursor_col = app.script_editor_cursor.1;

    if cursor_line >= scroll_offset && cursor_line < scroll_offset + visible_height {
        let screen_y = text_area.y + (cursor_line - scroll_offset) as u16;
        let screen_x = if cursor_col >= h_scroll {
            let col_in_view = cursor_col - h_scroll;
            if col_in_view < text_width {
                text_area.x + col_in_view as u16
            } else {
                text_area.x + text_area.width - 1
            }
        } else {
            text_area.x
        };

        // Set cursor position
        frame.set_cursor_position((screen_x, screen_y));
    }

    // Help text
    let help_text = if app.script_editor_modified {
        "[Ctrl+S] Save  [Esc] Cancel  [↑/↓/←/→] Navigate  [PgUp/PgDn] Scroll"
    } else {
        "[Esc] Back  [↑/↓/←/→] Navigate  [PgUp/PgDn] Scroll"
    };
    let help = Paragraph::new(help_text)
        .style(Style::default().fg(Color::DarkGray))
        .alignment(Alignment::Center);
    frame.render_widget(help, help_area);
}

/// Render notes editor (reuses the raw script editor pattern)
pub fn render_edit_notes(app: &App, frame: &mut Frame) {
    let area = frame.area();
    let dialog_width = 90.min(area.width.saturating_sub(4));
    let dialog_height = 40.min(area.height.saturating_sub(4));

    let dialog_area = centered_rect(dialog_width, dialog_height, area);
    frame.render_widget(Clear, dialog_area);

    let vm_name = app.selected_vm()
        .map(|vm| vm.display_name())
        .unwrap_or_else(|| "Unknown".to_string());

    let modified_indicator = if app.script_editor_modified { " [modified]" } else { "" };

    let block = Block::default()
        .title(format!(" {} - Notes{} ", vm_name, modified_indicator))
        .borders(Borders::ALL)
        .border_style(if app.script_editor_modified {
            Style::default().fg(Color::Yellow)
        } else {
            Style::default().fg(Color::Cyan)
        })
        .style(Style::default().bg(Color::Black));

    let inner = block.inner(dialog_area);
    frame.render_widget(block, dialog_area);

    // Split into line numbers, content, and help text
    let v_chunks = Layout::default()
        .direction(Direction::Vertical)
        .constraints([
            Constraint::Min(1),     // Editor content
            Constraint::Length(1),  // Help text
        ])
        .split(inner);

    let editor_area = v_chunks[0];
    let help_area = v_chunks[1];

    // Split editor area into line numbers and text
    let h_chunks = Layout::default()
        .direction(Direction::Horizontal)
        .constraints([
            Constraint::Length(5),  // Line numbers
            Constraint::Min(1),     // Text content
        ])
        .split(editor_area);

    let line_num_area = h_chunks[0];
    let text_area = h_chunks[1];

    let visible_height = text_area.height as usize;
    let total_lines = app.script_editor_lines.len();
    let scroll_offset = app.raw_script_scroll as usize;

    let start_line = scroll_offset;
    let end_line = (scroll_offset + visible_height).min(total_lines);

    // Render line numbers
    let line_numbers: Vec<Line> = (start_line..end_line)
        .map(|i| {
            let style = if i == app.script_editor_cursor.0 {
                Style::default().fg(Color::Yellow)
            } else {
                Style::default().fg(Color::DarkGray)
            };
            Line::styled(format!("{:4} ", i + 1), style)
        })
        .collect();
    let line_nums_widget = Paragraph::new(line_numbers);
    frame.render_widget(line_nums_widget, line_num_area);

    // Render text content with cursor
    let text_width = text_area.width as usize;
    let h_scroll = app.script_editor_h_scroll;

    let text_lines: Vec<Line> = (start_line..end_line)
        .map(|i| {
            let line = app.script_editor_lines.get(i).map(|s| s.as_str()).unwrap_or("");

            let visible_line = if h_scroll < line.len() {
                &line[h_scroll..]
            } else {
                ""
            };

            let display_line: String = visible_line.chars().take(text_width).collect();

            if i == app.script_editor_cursor.0 {
                Line::styled(display_line, Style::default().fg(Color::White))
            } else {
                Line::styled(display_line, Style::default().fg(Color::Gray))
            }
        })
        .collect();

    let text_widget = Paragraph::new(text_lines);
    frame.render_widget(text_widget, text_area);

    // Draw cursor
    let cursor_line = app.script_editor_cursor.0;
    let cursor_col = app.script_editor_cursor.1;

    if cursor_line >= scroll_offset && cursor_line < scroll_offset + visible_height {
        let screen_y = text_area.y + (cursor_line - scroll_offset) as u16;
        let screen_x = if cursor_col >= h_scroll {
            let col_in_view = cursor_col - h_scroll;
            if col_in_view < text_width {
                text_area.x + col_in_view as u16
            } else {
                text_area.x + text_area.width - 1
            }
        } else {
            text_area.x
        };

        frame.set_cursor_position((screen_x, screen_y));
    }

    // Help text
    let help_text = if app.script_editor_modified {
        "[Ctrl+S] Save  [Esc] Cancel  [↑/↓/←/→] Navigate  [PgUp/PgDn] Scroll"
    } else {
        "[Esc] Back  [↑/↓/←/→] Navigate  [PgUp/PgDn] Scroll"
    };
    let help = Paragraph::new(help_text)
        .style(Style::default().fg(Color::DarkGray))
        .alignment(Alignment::Center);
    frame.render_widget(help, help_area);
}

fn centered_rect(width: u16, height: u16, area: Rect) -> Rect {
    let x = area.x + (area.width.saturating_sub(width)) / 2;
    let y = area.y + (area.height.saturating_sub(height)) / 2;
    Rect::new(x, y, width, height)
}