ggen-core 26.5.19

Core graph-aware code generation engine
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
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
//! Alert Helpers
//!
//! Provides macros and functions for emitting visual alerts (problem indicators)
//! similar to chicago-tdd-tools alert macros. Alerts make problems immediately visible
//! and provide actionable guidance for resolution.
//!
//! ## Usage
//!
//! ```rust
//! use crate::alert_critical;
//! use crate::alert_warning;
//! use crate::alert_info;
//!
//! // Critical alert - must stop immediately
//! alert_critical!("Docker daemon is not running", "Start Docker Desktop");
//!
//! // Warning alert - should stop
//! alert_warning!("Container operation failed", "Check container state");
//!
//! // Info alert - informational
//! alert_info!("Container started successfully");
//! ```
//!
//! ## Alert Levels
//!
//! - **Critical** (🚨): Must stop immediately - cannot proceed
//! - **Warning** (âš ī¸): Should stop - investigate before proceeding
//! - **Info** (â„šī¸): Informational - no action required
//! - **Success** (✅): Success indicator - operation completed
//! - **Debug** (🔍): Debug information - detailed diagnostics
//!
//! ## Integration with Slog
//!
//! When slog logger is initialized, alerts use structured logging.
//! When slog is not available, alerts fall back to eprintln! with emoji formatting.

use std::io::{self, Write};

/// Emit a critical alert (🚨)
///
/// Critical alerts indicate problems that must stop work immediately.
/// Use for errors that prevent further execution.
///
/// # Arguments
///
/// * `message` - The error message
/// * `fix` - Suggested fix (optional)
///
/// # Example
///
/// ```rust
/// use crate::alert_critical;
///
/// alert_critical!("Docker daemon is not running", "Start Docker Desktop");
/// ```
#[macro_export]
macro_rules! alert_critical {
    ($message:expr, $fix:expr, $($action:expr),+) => {
        {
            let actions: Vec<String> = vec![$($action.to_string()),+];
            let action_str = actions.join("\n   📋 ");
            $crate::utils::alert::_alert_critical_impl($message, Some(&format!("{}\n   📋 {}", $fix, action_str)));
        }
    };
    ($message:expr, $fix:expr) => {
        $crate::utils::alert::_alert_critical_impl($message, Some($fix));
    };
    ($format_str:expr, $($arg:expr),+ $(,)?) => {
        {
            let msg = format!($format_str, $($arg),+);
            $crate::utils::alert::_alert_critical_impl(&msg, None::<&str>);
        }
    };
    ($message:expr) => {
        $crate::utils::alert::_alert_critical_impl($message, None::<&str>);
    };
}

/// Emit a warning alert (âš ī¸)
///
/// Warning alerts indicate problems that should stop work.
/// Use for errors that may cause issues but don't prevent execution.
///
/// # Arguments
///
/// * `message` - The warning message
/// * `fix` - Suggested fix (optional)
///
/// # Example
///
/// ```rust
/// use crate::alert_warning;
///
/// alert_warning!("Container operation failed", "Check container state");
/// ```
#[macro_export]
macro_rules! alert_warning {
    ($message:expr, $fix:expr) => {
        $crate::utils::alert::_alert_warning_impl($message, Some($fix));
    };
    ($format_str:expr, $($arg:expr),+ $(,)?) => {
        {
            let msg = format!($format_str, $($arg),+);
            $crate::utils::alert::_alert_warning_impl(&msg, None::<&str>);
        }
    };
    ($message:expr) => {
        $crate::utils::alert::_alert_warning_impl($message, None::<&str>);
    };
}

/// Emit an info alert (â„šī¸)
///
/// Info alerts provide informational messages.
/// Use for status updates and non-critical information.
///
/// # Arguments
///
/// * `message` - The info message
///
/// # Example
///
/// ```rust
/// use crate::alert_info;
///
/// alert_info!("Container started successfully");
/// ```
#[macro_export]
macro_rules! alert_info {
    ($message:expr) => {
        $crate::utils::alert::_alert_info_impl($message);
    };
    ($($arg:tt)*) => {
        {
            let msg = format!($($arg)*);
            $crate::utils::alert::_alert_info_impl(&msg);
        }
    };
}

/// Emit a success alert (✅)
///
/// Success alerts indicate successful operations.
/// Use to confirm operations completed successfully.
///
/// # Arguments
///
/// * `message` - The success message
///
/// # Example
///
/// ```rust
/// use crate::alert_success;
///
/// alert_success!("Container started successfully");
/// ```
#[macro_export]
macro_rules! alert_success {
    ($message:expr) => {
        $crate::utils::alert::_alert_success_impl($message);
    };
    ($($arg:tt)*) => {
        {
            let msg = format!($($arg)*);
            $crate::utils::alert::_alert_success_impl(&msg);
        }
    };
}

/// Emit a debug alert (🔍)
///
/// Debug alerts provide detailed debugging information.
/// Use for detailed diagnostic information during development.
///
/// # Arguments
///
/// * `message` - The debug message
///
/// # Example
///
/// ```rust
/// use crate::alert_debug;
///
/// alert_debug!("Container state: {:?}", container_state);
/// ```
#[macro_export]
macro_rules! alert_debug {
    ($message:expr) => {
        $crate::utils::alert::_alert_debug_impl($message);
    };
    ($($arg:tt)*) => {
        {
            let msg = format!($($arg)*);
            $crate::utils::alert::_alert_debug_impl(&msg);
        }
    };
}

/// Emit an alert with custom severity
///
/// Allows emitting custom alerts with user-defined severity levels.
///
/// # Arguments
///
/// * `severity` - Severity emoji (🚨, âš ī¸, â„šī¸, ✅, 🔍)
/// * `message` - The message
/// * `stop` - Stop message (optional)
/// * `fix` - Fix suggestion (optional)
///
/// # Example
///
/// ```rust
/// use crate::utils::alert;
///
/// alert!("🚨", "Custom critical error", "STOP: Cannot proceed", "FIX: Resolve issue");
/// ```
#[macro_export]
macro_rules! alert {
    ($severity:expr, $message:expr) => {
        $crate::utils::alert::_alert_custom_impl($severity, $message, None::<&str>, None::<&str>);
    };
    ($severity:expr, $message:expr, $stop:expr, $fix:expr) => {
        $crate::utils::alert::_alert_custom_impl($severity, $message, Some($stop), Some($fix));
    };
    ($severity:expr, $message:expr, $stop:expr, $fix:expr, $($action:expr),+) => {
        {
            let actions: Vec<String> = vec![$($action.to_string()),+];
            let action_str = actions.join("\n   📋 ");
            $crate::utils::alert::_alert_custom_impl($severity, $message, Some($stop), Some(&format!("{}\n   📋 {}", $fix, action_str)));
        }
    };
}

// Implementation functions that check for slog availability

/// Internal implementation for critical alerts
#[allow(clippy::module_name_repetitions)]
pub fn _alert_critical_impl(message: &str, fix: Option<&str>) {
    if let Some(fix_msg) = fix {
        _try_slog_error(&format!(
            "{}\n   âš ī¸  STOP: Cannot proceed\n   💡 FIX: {}",
            message, fix_msg
        ));
        eprintln!(
            "🚨 {}\n   âš ī¸  STOP: Cannot proceed\n   💡 FIX: {}",
            message, fix_msg
        );
    } else {
        _try_slog_error(&format!(
            "{}\n   âš ī¸  STOP: Cannot proceed\n   💡 FIX: Investigate and resolve",
            message
        ));
        eprintln!(
            "🚨 {}\n   âš ī¸  STOP: Cannot proceed\n   💡 FIX: Investigate and resolve",
            message
        );
    }
}

/// Internal implementation for warning alerts
#[allow(clippy::module_name_repetitions)]
pub fn _alert_warning_impl(message: &str, fix: Option<&str>) {
    if let Some(fix_msg) = fix {
        _try_slog_warn(&format!(
            "{}\n   âš ī¸  WARNING: Investigate before proceeding\n   💡 FIX: {}",
            message, fix_msg
        ));
        eprintln!(
            "âš ī¸  {}\n   âš ī¸  WARNING: Investigate before proceeding\n   💡 FIX: {}",
            message, fix_msg
        );
    } else {
        _try_slog_warn(&format!(
            "{}\n   âš ī¸  WARNING: Investigate before proceeding\n   💡 FIX: Check and resolve",
            message
        ));
        eprintln!(
            "âš ī¸  {}\n   âš ī¸  WARNING: Investigate before proceeding\n   💡 FIX: Check and resolve",
            message
        );
    }
}

/// Internal implementation for info alerts
#[allow(clippy::module_name_repetitions)]
pub fn _alert_info_impl(message: &str) {
    _try_slog_info(message);
    eprintln!("â„šī¸  {}", message);
}

/// Internal implementation for success alerts
#[allow(clippy::module_name_repetitions)]
pub fn _alert_success_impl(message: &str) {
    _try_slog_info(&format!("✅ {}", message));
    eprintln!("✅ {}", message);
}

/// Internal implementation for debug alerts
#[allow(clippy::module_name_repetitions)]
pub fn _alert_debug_impl(message: &str) {
    _try_slog_debug(message);
    eprintln!("🔍 {}", message);
}

/// Internal implementation for custom alerts
#[allow(clippy::module_name_repetitions)]
pub fn _alert_custom_impl(severity: &str, message: &str, stop: Option<&str>, fix: Option<&str>) {
    if let (Some(stop_msg), Some(fix_msg)) = (stop, fix) {
        _try_slog_warn(&format!(
            "{} {}\n   {} {}\n   💡 FIX: {}",
            severity, message, severity, stop_msg, fix_msg
        ));
        eprintln!(
            "{} {}\n   {} {}\n   💡 FIX: {}",
            severity, message, severity, stop_msg, fix_msg
        );
    } else {
        _try_slog_info(&format!("{} {}", severity, message));
        eprintln!("{} {}", severity, message);
    }
}

// Try to use slog if available, otherwise fall back to eprintln!

// Try to use slog if available via slog_scope
// Note: slog_scope may not be initialized, so we always fall back to eprintln!
// This ensures alerts are always visible even if slog isn't initialized
fn _try_slog_error(msg: &str) {
    // Try to use slog if available, but always output to stderr as well
    // slog_scope::logger() may panic if not initialized, so we catch that
    let _ = std::panic::catch_unwind(|| {
        let logger = slog_scope::logger();
        slog::error!(logger, "{}", msg);
    });
}

fn _try_slog_warn(msg: &str) {
    let _ = std::panic::catch_unwind(|| {
        let logger = slog_scope::logger();
        slog::warn!(logger, "{}", msg);
    });
}

fn _try_slog_info(msg: &str) {
    let _ = std::panic::catch_unwind(|| {
        let logger = slog_scope::logger();
        slog::info!(logger, "{}", msg);
    });
}

fn _try_slog_debug(msg: &str) {
    let _ = std::panic::catch_unwind(|| {
        let logger = slog_scope::logger();
        slog::debug!(logger, "{}", msg);
    });
}

/// Write alert to a writer
///
/// Allows writing alerts to custom writers (e.g., files, buffers).
///
/// # Arguments
///
/// * `writer` - Writer to write to
/// * `severity` - Severity emoji
/// * `message` - The message
/// * `stop` - Stop message (optional)
/// * `fix` - Fix suggestion (optional)
///
/// # Example
///
/// ```rust
/// use crate::utils::alert::write_alert;
/// use std::io::BufWriter;
/// use std::fs::File;
///
/// let file = File::create("alert.log").unwrap();
/// let mut writer = BufWriter::new(file);
/// write_alert(&mut writer, "🚨", "Critical error", "STOP: Cannot proceed", "FIX: Resolve issue").unwrap();
/// ```
///
/// # Errors
///
/// Returns an error if writing to the writer fails.
pub fn write_alert<W: Write>(
    writer: &mut W, severity: &str, message: &str, stop: Option<&str>, fix: Option<&str>,
) -> io::Result<()> {
    if let (Some(stop_msg), Some(fix_msg)) = (stop, fix) {
        writeln!(
            writer,
            "{severity} {message}\n   {severity} {stop_msg}\n   💡 FIX: {fix_msg}"
        )?;
    } else if let Some(stop_msg) = stop {
        writeln!(writer, "{severity} {message}\n   {severity} {stop_msg}")?;
    } else {
        writeln!(writer, "{severity} {message}")?;
    }
    Ok(())
}

#[cfg(test)]
#[allow(clippy::panic)] // Test code - panic is appropriate for test failures
mod tests {
    use super::*;

    #[test]
    fn test_alert_critical() {
        // Test critical alert without fix
        alert_critical!("Test critical error");

        // Test critical alert with fix
        alert_critical!("Test critical error", "Test fix");

        // Test critical alert with fix and actions
        alert_critical!("Test critical error", "Test fix", "Action 1", "Action 2");
    }

    #[test]
    fn test_alert_warning() {
        // Test warning alert without fix
        alert_warning!("Test warning");

        // Test warning alert with fix
        alert_warning!("Test warning", "Test fix");

        // Test warning alert with fix and actions
        alert_warning!(
            "Test warning: {} - Actions: {}, {}",
            "Test fix",
            "Action 1",
            "Action 2"
        );
    }

    #[test]
    fn test_alert_info() {
        // Test info alert
        alert_info!("Test info");

        // Test info alert with details
        alert_info!("Test info: {}, {}", "Detail 1", "Detail 2");
    }

    #[test]
    fn test_alert_success() {
        // Test success alert
        alert_success!("Test success");

        // Test success alert with details
        alert_success!("Test success: {}, {}", "Detail 1", "Detail 2");
    }

    #[test]
    fn test_alert_debug() {
        // Test debug alert
        alert_debug!("Test debug");

        // Test debug alert with format
        alert_debug!("Test debug: {}", "value");
    }

    #[test]
    fn test_alert_custom() {
        // Test custom alert
        alert!("🚨", "Custom critical");

        // Test custom alert with stop and fix
        alert!(
            "🚨",
            "Custom critical",
            "STOP: Cannot proceed",
            "FIX: Resolve issue"
        );

        // Test custom alert with stop, fix, and actions
        alert!(
            "🚨",
            "Custom critical",
            "STOP: Cannot proceed",
            "FIX: Resolve issue",
            "Action 1",
            "Action 2"
        );
    }

    #[test]
    fn test_write_alert() {
        let mut buffer = Vec::new();

        // Test write alert without stop/fix
        write_alert(&mut buffer, "🚨", "Test error", None, None).unwrap();
        let output = String::from_utf8_lossy(&buffer);
        assert!(output.contains("🚨 Test error"));

        // Test write alert with stop
        buffer.clear();
        write_alert(
            &mut buffer,
            "🚨",
            "Test error",
            Some("STOP: Cannot proceed"),
            None,
        )
        .unwrap();
        let output = String::from_utf8_lossy(&buffer);
        assert!(output.contains("🚨 Test error"));
        assert!(output.contains("STOP: Cannot proceed"));

        // Test write alert with stop and fix
        buffer.clear();
        write_alert(
            &mut buffer,
            "🚨",
            "Test error",
            Some("STOP: Cannot proceed"),
            Some("FIX: Resolve issue"),
        )
        .unwrap();
        let output = String::from_utf8_lossy(&buffer);
        assert!(output.contains("🚨 Test error"));
        assert!(output.contains("STOP: Cannot proceed"));
        assert!(output.contains("FIX: Resolve issue"));
    }
}