waterui-cli 0.1.4

Cross-platform tooling for WaterUI applications
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
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
//! Shell output abstraction for the CLI.
//!
//! This module provides the `Shell` passed through CLI commands for output,
//! terminal detection, colors, verbosity, and JSON output mode.

use anstyle::{AnsiColor, Style};
use indicatif::{MultiProgress, ProgressBar, ProgressStyle};
use serde::Serialize;
use std::fmt::Display;
use std::io::{self, IsTerminal, Write};
use waterui_cli::utils::set_std_output;

/// ANSI styles for output.
mod styles {
    use super::{AnsiColor, Style};

    pub const HEADER: Style = Style::new()
        .bold()
        .fg_color(Some(anstyle::Color::Ansi(AnsiColor::Green)));
    pub const ERROR: Style = Style::new()
        .bold()
        .fg_color(Some(anstyle::Color::Ansi(AnsiColor::Red)));
    pub const WARN: Style = Style::new()
        .bold()
        .fg_color(Some(anstyle::Color::Ansi(AnsiColor::Yellow)));
    pub const NOTE: Style = Style::new()
        .bold()
        .fg_color(Some(anstyle::Color::Ansi(AnsiColor::Cyan)));
    pub const DEBUG: Style = Style::new().fg_color(Some(anstyle::Color::Ansi(AnsiColor::Magenta)));
    pub const TRACE: Style =
        Style::new().fg_color(Some(anstyle::Color::Ansi(AnsiColor::BrightBlack)));
    pub const TAG: Style = Style::new().bold();
}

/// Shell output abstraction.
pub struct Shell {
    output: ShellOut,
    multi_progress: MultiProgress,
}

enum ShellOut {
    Human,
    Json,
}

impl Shell {
    /// Creates the output context for one CLI invocation.
    #[must_use]
    pub fn new(json: bool) -> Self {
        Self {
            output: if json {
                ShellOut::Json
            } else {
                ShellOut::Human
            },
            multi_progress: MultiProgress::new(),
        }
    }

    /// Check if output is in JSON mode.
    #[must_use]
    pub const fn is_json(&self) -> bool {
        matches!(self.output, ShellOut::Json)
    }

    /// Check if stderr is a terminal.
    #[must_use]
    pub fn is_terminal(&self) -> bool {
        match &self.output {
            ShellOut::Human => io::stderr().is_terminal(),
            ShellOut::Json => false,
        }
    }

    /// Print a status message with a green header.
    pub fn status(&self, status: impl Display, message: impl Display) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => {
                let mut stderr = anstream::stderr().lock();
                writeln!(
                    stderr,
                    "{}{}{} {message}",
                    styles::HEADER,
                    status,
                    styles::HEADER.render_reset()
                )?;
                stderr.flush()
            }
            ShellOut::Json => {
                #[derive(Serialize)]
                struct Status<'a> {
                    status: &'a str,
                    message: &'a str,
                }
                let json = serde_json::to_string(&Status {
                    status: &status.to_string(),
                    message: &message.to_string(),
                })?;
                writeln!(io::stdout(), "{json}")?;
                io::stdout().flush()
            }
        }
    }

    /// Print an error message.
    pub fn error(&self, message: impl Display) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => {
                let mut stderr = anstream::stderr().lock();
                write!(
                    stderr,
                    "{}error{}: ",
                    styles::ERROR,
                    styles::ERROR.render_reset()
                )?;
                writeln!(stderr, "{message}")?;
                stderr.flush()
            }
            ShellOut::Json => {
                #[derive(Serialize)]
                struct Error<'a> {
                    level: &'static str,
                    message: &'a str,
                }
                let json = serde_json::to_string(&Error {
                    level: "error",
                    message: &message.to_string(),
                })?;
                writeln!(io::stdout(), "{json}")?;
                io::stdout().flush()
            }
        }
    }

    /// Print a warning message.
    pub fn warn(&self, message: impl Display) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => {
                let mut stderr = anstream::stderr().lock();
                write!(
                    stderr,
                    "{}warning{}: ",
                    styles::WARN,
                    styles::WARN.render_reset()
                )?;
                writeln!(stderr, "{message}")?;
                stderr.flush()
            }
            ShellOut::Json => {
                #[derive(Serialize)]
                struct Warning<'a> {
                    level: &'static str,
                    message: &'a str,
                }
                let json = serde_json::to_string(&Warning {
                    level: "warning",
                    message: &message.to_string(),
                })?;
                writeln!(io::stdout(), "{json}")?;
                io::stdout().flush()
            }
        }
    }

    /// Print an informational note.
    pub fn note(&self, message: impl Display) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => {
                let mut stderr = anstream::stderr().lock();
                write!(
                    stderr,
                    "{}note{}: ",
                    styles::NOTE,
                    styles::NOTE.render_reset()
                )?;
                writeln!(stderr, "{message}")?;
                stderr.flush()
            }
            ShellOut::Json => Ok(()),
        }
    }

    /// Print a plain line.
    pub fn println(&self, message: impl Display) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => {
                writeln!(anstream::stderr().lock(), "{message}")?;
                Ok(())
            }
            ShellOut::Json => Ok(()),
        }
    }

    /// Print a raw JSON line to stdout (JSON mode only).
    pub fn json_raw(&self, json: &str) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => Ok(()),
            ShellOut::Json => {
                let mut stdout = io::stdout().lock();
                writeln!(stdout, "{json}")?;
                stdout.flush()
            }
        }
    }

    /// Print a device log with level-appropriate styling.
    ///
    /// The message should be in format `"[TAG] message"` for best display.
    /// Platform is used as a prefix (e.g., "Android", "Apple").
    pub fn device_log(
        &self,
        platform: &str,
        level: tracing::Level,
        message: impl Display,
    ) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => {
                let mut stderr = anstream::stderr().lock();
                let msg = message.to_string();

                // Get level style and short name
                let (level_style, level_char) = match level {
                    tracing::Level::ERROR => (styles::ERROR, 'E'),
                    tracing::Level::WARN => (styles::WARN, 'W'),
                    tracing::Level::INFO => (styles::NOTE, 'I'),
                    tracing::Level::DEBUG => (styles::DEBUG, 'D'),
                    tracing::Level::TRACE => (styles::TRACE, 'V'),
                };
                let reset = Style::new().render_reset();

                // Try to extract [TAG] from message for styled output
                if let Some((tag, rest)) = parse_log_tag(&msg) {
                    writeln!(
                        stderr,
                        "{level_style}{platform}/{level_char}{reset} {tag_style}[{tag}]{reset} {rest}",
                        tag_style = styles::TAG,
                    )?;
                } else {
                    writeln!(stderr, "{level_style}{platform}/{level_char}{reset} {msg}")?;
                }
                stderr.flush()
            }
            ShellOut::Json => {
                #[derive(Serialize)]
                struct Log<'a> {
                    #[serde(rename = "type")]
                    ty: &'static str,
                    platform: &'a str,
                    level: &'a str,
                    message: &'a str,
                }
                let level_str = match level {
                    tracing::Level::ERROR => "error",
                    tracing::Level::WARN => "warn",
                    tracing::Level::INFO => "info",
                    tracing::Level::DEBUG => "debug",
                    tracing::Level::TRACE => "trace",
                };
                let json = serde_json::to_string(&Log {
                    ty: "log",
                    platform,
                    level: level_str,
                    message: &message.to_string(),
                })?;
                writeln!(io::stdout(), "{json}")?;
                io::stdout().flush()
            }
        }
    }

    /// Print a header/title.
    pub fn header(&self, message: impl Display) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => {
                writeln!(
                    anstream::stderr().lock(),
                    "{}{}{}",
                    styles::HEADER,
                    message,
                    styles::HEADER.render_reset()
                )?;
                Ok(())
            }
            ShellOut::Json => Ok(()),
        }
    }

    /// Create a progress spinner.
    ///
    /// Returns `None` in JSON mode or non-terminal.
    #[must_use]
    pub fn spinner(&self, message: impl Into<String>) -> Option<ProgressBar> {
        if !self.is_terminal() || self.is_json() {
            return None;
        }

        let pb = self.multi_progress.add(ProgressBar::new_spinner());
        pb.set_style(
            ProgressStyle::default_spinner()
                .template("{spinner:.cyan} {msg}")
                .expect("valid template"),
        );
        pb.set_message(message.into());
        pb.enable_steady_tick(std::time::Duration::from_millis(80));
        Some(pb)
    }

    /// Display a panic report from a platform crash message.
    pub fn panic_message(&self, crash_msg: &str) {
        let report = PanicReport::parse(crash_msg);
        let _ = self.panic_report(&report);
    }

    /// Temporarily forwards child output while running an interactive command.
    pub async fn display_output<Fut: Future>(&self, fut: Fut) -> Fut::Output {
        if self.is_interactive() {
            set_std_output(true);
            let result = fut.await;
            set_std_output(false);
            result
        } else {
            fut.await
        }
    }

    /// Clears all progress bars before the command exits.
    pub fn clear(&self) {
        self.multi_progress.clear().ok();
    }

    /// Returns whether prompts and progress output may be shown.
    #[must_use]
    pub fn is_interactive(&self) -> bool {
        self.is_terminal() && !self.is_json()
    }
}

/// Parse a log message to extract the `[TAG]` prefix.
/// Returns (tag, `rest_of_message`) if found.
fn parse_log_tag(msg: &str) -> Option<(&str, &str)> {
    let msg = msg.trim();
    if !msg.starts_with('[') {
        return None;
    }
    let end = msg.find(']')?;
    let tag = &msg[1..end];
    let rest = msg[end + 1..].trim_start();
    Some((tag, rest))
}

/// Find a file by walking up from cwd to find workspace root.
///
/// Tries to find the file relative to directories containing Cargo.toml.
fn find_file_in_workspace(relative_path: &std::path::Path) -> Option<std::path::PathBuf> {
    let cwd = std::env::current_dir().ok()?;

    // First try relative to cwd
    let direct = cwd.join(relative_path);
    if direct.exists() {
        return Some(direct);
    }

    // Walk up the directory tree looking for Cargo.toml (workspace root indicators)
    let mut current = cwd.as_path();
    while let Some(parent) = current.parent() {
        let candidate = parent.join(relative_path);
        if candidate.exists() {
            return Some(candidate);
        }

        // Stop at filesystem root or if we've gone too far up
        if parent.join("Cargo.toml").exists() || parent.components().count() <= 2 {
            // Keep going but check this level too
        }

        current = parent;
    }

    None
}

/// Parsed panic information for display.
pub struct PanicReport<'a> {
    /// The panic message (e.g., "Test panic: something failed")
    pub message: &'a str,
    /// Source file path
    pub file: Option<&'a str>,
    /// Line number (1-indexed)
    pub line: Option<usize>,
    /// Column number (1-indexed)
    pub column: Option<usize>,
    /// Additional crash info (exception, signal, etc.)
    pub extra: Option<&'a str>,
    /// Path to crash report file
    pub crash_report_path: Option<&'a str>,
}

impl<'a> PanicReport<'a> {
    /// Parse a crash message into a structured panic report.
    ///
    /// Expected format:
    /// ```text
    /// Panic: message
    ///   at file.rs:123:45
    ///
    /// Exception: EXC_CRASH, Signal: SIGABRT, Reason: ...
    ///
    /// Crash report: /path/to/crash.ips
    /// ```
    pub fn parse(crash_msg: &'a str) -> Self {
        let mut message = crash_msg;
        let mut file = None;
        let mut line = None;
        let mut column = None;
        let mut extra = None;
        let mut crash_report_path = None;

        // Split into lines for parsing
        let lines: Vec<&str> = crash_msg.lines().collect();

        for (i, ln) in lines.iter().enumerate() {
            let ln = ln.trim();

            // Parse "Panic: message"
            if ln.starts_with("Panic:") {
                message = ln.strip_prefix("Panic:").unwrap_or(ln).trim();
            }
            // Parse "  at file:line:col"
            else if ln.starts_with("at ") {
                if let Some(loc) = ln.strip_prefix("at ") {
                    let parts: Vec<&str> = loc.rsplitn(3, ':').collect();
                    match parts.as_slice() {
                        [col, ln_num, path] => {
                            file = Some(*path);
                            line = ln_num.parse().ok();
                            column = col.parse().ok();
                        }
                        [ln_num, path] => {
                            file = Some(*path);
                            line = ln_num.parse().ok();
                        }
                        _ => {}
                    }
                }
            }
            // Parse "Crash report: path"
            else if ln.starts_with("Crash report:") {
                crash_report_path = ln.strip_prefix("Crash report:").map(str::trim);
            }
            // Capture exception/signal info
            else if ln.starts_with("Exception:") || ln.starts_with("Signal:") {
                // Find the range of extra info (from this line to before "Crash report:")
                let extra_end = lines[i..]
                    .iter()
                    .position(|l| l.starts_with("Crash report:"))
                    .map_or(lines.len(), |pos| i + pos);
                if extra_end > i
                    && lines[i..extra_end]
                        .iter()
                        .map(|line| line.trim())
                        .any(|line| !line.is_empty())
                {
                    // We'll store the first line as extra
                    extra = Some(lines[i].trim());
                }
            }
        }

        Self {
            message,
            file,
            line,
            column,
            extra,
            crash_report_path,
        }
    }
}

impl Shell {
    /// Display a panic report with colored output and code context.
    pub fn panic_report(&self, report: &PanicReport<'_>) -> io::Result<()> {
        match &self.output {
            ShellOut::Human => Self::panic_report_human(report),
            ShellOut::Json => Self::panic_report_json(report),
        }
    }

    fn panic_report_human(report: &PanicReport<'_>) -> io::Result<()> {
        use std::fs::File;
        use std::io::BufRead;
        use std::path::Path;

        let mut stderr = anstream::stderr().lock();
        let reset = Style::new().render_reset();

        // Style definitions
        let error_style = styles::ERROR;
        let note_style = styles::NOTE;
        let line_num_style = Style::new().fg_color(Some(anstyle::Color::Ansi(AnsiColor::Blue)));
        let highlight_style = Style::new()
            .bold()
            .fg_color(Some(anstyle::Color::Ansi(AnsiColor::Red)));

        // Print "error: Panic: message"
        writeln!(
            stderr,
            "{error_style}error{reset}: {error_style}Panic{reset}: {}",
            report.message
        )?;

        // Print location if available
        if let (Some(file), Some(line)) = (report.file, report.line) {
            let col = report.column.unwrap_or(1);
            writeln!(stderr, "   {note_style}-->{reset} {file}:{line}:{col}")?;

            // Try to resolve the file path (may be relative to workspace root)
            let file_path = Path::new(file);
            let resolved_path = if file_path.is_absolute() {
                Some(file_path.to_path_buf())
            } else {
                // Try to find the file by walking up from cwd to find workspace root
                find_file_in_workspace(file_path)
            };

            // Try to read and display code context
            if let Some(ref resolved) = resolved_path
                && let Ok(source_file) = File::open(resolved)
            {
                let reader = io::BufReader::new(source_file);
                let lines: Vec<String> = reader.lines().map_while(Result::ok).collect();

                let line_idx = line.saturating_sub(1);
                let start = line_idx.saturating_sub(1);
                let end = (line_idx + 2).min(lines.len());

                // Calculate the width needed for line numbers
                let max_line_num = end;
                let line_num_width = max_line_num.to_string().len();

                writeln!(stderr, "    {line_num_style}|{reset}")?;

                for (idx, source_line) in lines[start..end].iter().enumerate() {
                    let current_line = start + idx + 1;
                    let is_panic_line = current_line == line;

                    if is_panic_line {
                        // Highlight the panic line
                        writeln!(
                            stderr,
                            "{error_style}{current_line:>line_num_width$}{reset} {line_num_style}|{reset} {highlight_style}{source_line}{reset}"
                        )?;

                        // Print the column indicator
                        let col_offset = col.saturating_sub(1);
                        let spaces = " ".repeat(col_offset);
                        let carets =
                            "^".repeat(source_line.len().saturating_sub(col_offset).clamp(1, 20));
                        writeln!(
                            stderr,
                            "{:>line_num_width$} {line_num_style}|{reset} {spaces}{error_style}{carets}{reset}",
                            ""
                        )?;
                    } else {
                        writeln!(
                            stderr,
                            "{line_num_style}{current_line:>line_num_width$}{reset} {line_num_style}|{reset} {source_line}"
                        )?;
                    }
                }

                writeln!(stderr, "    {line_num_style}|{reset}")?;
            }
        }

        // Print extra info (exception, signal, etc.)
        if let Some(extra) = report.extra {
            writeln!(stderr)?;
            writeln!(stderr, "{note_style}note{reset}: {extra}")?;
        }

        // Print crash report path
        if let Some(path) = report.crash_report_path {
            writeln!(stderr)?;
            writeln!(stderr, "{note_style}crash report{reset}: {path}")?;
        }

        stderr.flush()
    }

    fn panic_report_json(report: &PanicReport<'_>) -> io::Result<()> {
        #[derive(Serialize)]
        struct JsonPanic<'a> {
            #[serde(rename = "type")]
            ty: &'static str,
            message: &'a str,
            #[serde(skip_serializing_if = "Option::is_none")]
            file: Option<&'a str>,
            #[serde(skip_serializing_if = "Option::is_none")]
            line: Option<usize>,
            #[serde(skip_serializing_if = "Option::is_none")]
            column: Option<usize>,
            #[serde(skip_serializing_if = "Option::is_none")]
            extra: Option<&'a str>,
            #[serde(skip_serializing_if = "Option::is_none")]
            crash_report: Option<&'a str>,
        }

        let json = serde_json::to_string(&JsonPanic {
            ty: "panic",
            message: report.message,
            file: report.file,
            line: report.line,
            column: report.column,
            extra: report.extra,
            crash_report: report.crash_report_path,
        })?;
        writeln!(io::stdout(), "{json}")?;
        io::stdout().flush()
    }
}

// ============================================================================
// Convenience macros
// ============================================================================

/// Print a success message with a checkmark.
///
/// # Example
/// ```ignore
/// success!("Project created");
/// success!("Built {} files", count);
/// ```
#[macro_export]
macro_rules! success {
    ($shell:expr, $($arg:tt)*) => {{
        let _ = $shell.status("", format!($($arg)*));
    }};
}

/// Print a plain line (like println but through shell).
///
/// # Example
/// ```ignore
/// line!("Next steps:");
/// line!("  cd {}", path);
/// line!();  // empty line
/// ```
#[macro_export]
macro_rules! line {
    ($shell:expr) => {{
        let _ = $shell.println("");
    }};
    ($shell:expr, $($arg:tt)*) => {{
        let _ = $shell.println(format!($($arg)*));
    }};
}

/// Print a warning message.
///
/// # Example
/// ```ignore
/// warn!("File not found");
/// warn!("Missing {} dependencies", count);
/// ```
#[macro_export]
macro_rules! warn {
    ($shell:expr, $($arg:tt)*) => {{
        let _ = $shell.warn(format!($($arg)*));
    }};
}

/// Print an error message.
///
/// # Example
/// ```ignore
/// error!("Build failed");
/// error!("Cannot find {}", path);
/// ```
#[macro_export]
macro_rules! error {
    ($shell:expr, $($arg:tt)*) => {{
        let _ = $shell.error(format!($($arg)*));
    }};
}

/// Print a note/info message.
///
/// # Example
/// ```ignore
/// note!("Press Ctrl+C to stop");
/// note!("Using {} as default", value);
/// ```
#[macro_export]
macro_rules! note {
    ($shell:expr, $($arg:tt)*) => {{
        let _ = $shell.note(format!($($arg)*));
    }};
}

/// Print a header/title.
///
/// # Example
/// ```ignore
/// header!("Building project");
/// header!("Running on {}", device);
/// ```
#[macro_export]
macro_rules! header {
    ($shell:expr, $($arg:tt)*) => {{
        let _ = $shell.header(format!($($arg)*));
    }};
}