magellan 3.3.1

Deterministic codebase mapping tool for local development
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
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
//! Thread-local parser pool for reusing tree-sitter Parser instances.
//!
//! Each file indexing operation currently creates a fresh Parser::new() instance.
//! Parser pooling reuses parser instances across files, significantly reducing
//! allocation overhead during indexing.
//!
//! # Design
//!
//! - Thread-local storage: Each thread has its own parser instances
//! - Lazy initialization: Parsers created on first use per thread
//! - No locks: RefCell provides single-threaded mutable access
//! - Language-specific: One parser per supported language
//!
//! # Usage
//!
//! ```ignore
//! use crate::ingest::pool::with_parser;
//! use crate::ingest::detect::Language;
//!
//! let facts = with_parser(Language::Rust, |parser| {
//!     let tree = parser.parse(source, None)?;
//!     // ... extract symbols
//! })?;
//! ```
//!
//! # Thread Safety Model
//!
//! **Thread-local storage: Each thread has its own parser instances**
//!
//! ## Design Principles
//!
//! - **Thread-local:** `thread_local!` macro creates separate storage per thread
//! - **No locks:** RefCell provides single-threaded mutable access
//! - **Lazy initialization:** Parsers created on first use per thread
//! - **Automatic cleanup:** Parser's Drop trait cleans up C resources on thread exit
//!
//! ## Safety Guarantees
//!
//! - Each thread gets its own parser instance → no lock contention
//! - RefCell ensures single-threaded borrow checking at runtime
//! - No shared mutable state across threads
//! - Safe to call `with_parser` from any thread
//!
//! ## Cleanup
//!
//! Thread-local parsers are automatically dropped when their thread exits.
//! See `cleanup_parsers()` for documentation (no-op function for API completeness).

use crate::ingest::detect::Language;
use anyhow::Result;
use std::cell::RefCell;

// Thread-local parser storage for each supported language.
// Each thread gets its own parser instance, avoiding lock contention.
thread_local! {
    static RUST_PARSER: RefCell<Option<tree_sitter::Parser>> = const { RefCell::new(None) };
    static PYTHON_PARSER: RefCell<Option<tree_sitter::Parser>> = const { RefCell::new(None) };
    static C_PARSER: RefCell<Option<tree_sitter::Parser>> = const { RefCell::new(None) };
    static CPP_PARSER: RefCell<Option<tree_sitter::Parser>> = const { RefCell::new(None) };
    static JAVA_PARSER: RefCell<Option<tree_sitter::Parser>> = const { RefCell::new(None) };
    static JAVASCRIPT_PARSER: RefCell<Option<tree_sitter::Parser>> = const { RefCell::new(None) };
    static TYPESCRIPT_PARSER: RefCell<Option<tree_sitter::Parser>> = const { RefCell::new(None) };
}

/// Initialize or get the thread-local Rust parser
fn with_rust_parser<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    RUST_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_rust::language())?;
            *parser_ref = Some(parser);
        } // M-UNWRAP: initialized to Some() above
        let parser = parser_ref.as_mut().expect(
            "Parser invariant violated: Option must be Some() after initialization (lines 49-52)",
        );
        Ok(f(parser))
    })
}

/// Initialize or get the thread-local Python parser
fn with_python_parser<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    PYTHON_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_python::language())?;
            *parser_ref = Some(parser);
        }
        let parser = parser_ref
            .as_mut()
            .expect("Python parser invariant violated: Option must be Some() after initialization"); // M-UNWRAP: initialized to Some() above
        Ok(f(parser))
    })
}

/// Initialize or get the thread-local C parser
fn with_c_parser<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    C_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_c::language())?;
            *parser_ref = Some(parser);
        }
        let parser = parser_ref
            .as_mut()
            .expect("C parser invariant violated: Option must be Some() after initialization"); // M-UNWRAP: initialized to Some() above
        Ok(f(parser))
    })
}

/// Initialize or get the thread-local C++ parser
fn with_cpp_parser<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    CPP_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_cpp::language())?;
            *parser_ref = Some(parser);
        }
        let parser = parser_ref
            .as_mut()
            .expect("C++ parser invariant violated: Option must be Some() after initialization"); // M-UNWRAP: initialized to Some() above
        Ok(f(parser))
    })
}

/// Initialize or get the thread-local Java parser
fn with_java_parser<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    JAVA_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_java::language())?;
            *parser_ref = Some(parser);
        }
        let parser = parser_ref
            .as_mut()
            .expect("Java parser invariant violated: Option must be Some() after initialization"); // M-UNWRAP: initialized to Some() above
        Ok(f(parser))
    })
}

/// Initialize or get the thread-local JavaScript parser
fn with_javascript_parser<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    JAVASCRIPT_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_javascript::language())?;
            *parser_ref = Some(parser);
        } // M-UNWRAP: initialized to Some() above
        let parser = parser_ref.as_mut().expect(
            "JavaScript parser invariant violated: Option must be Some() after initialization",
        );
        Ok(f(parser))
    })
}

/// Initialize or get the thread-local TypeScript parser
fn with_typescript_parser<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    TYPESCRIPT_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_typescript::language_typescript())?;
            *parser_ref = Some(parser);
        } // M-UNWRAP: initialized to Some() above
        let parser = parser_ref.as_mut().expect(
            "TypeScript parser invariant violated: Option must be Some() after initialization",
        );
        Ok(f(parser))
    })
}

// ---------------------------------------------------------------------------
// Option-based variants (no temporary Parser::new() on every file)
// ---------------------------------------------------------------------------

/// Initialize or get the thread-local Rust parser as Option
fn with_rust_parser_opt<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    RUST_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_rust::language())?;
            *parser_ref = Some(parser);
        }
        Ok(f(&mut parser_ref))
    })
}

/// Initialize or get the thread-local Python parser as Option
fn with_python_parser_opt<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    PYTHON_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_python::language())?;
            *parser_ref = Some(parser);
        }
        Ok(f(&mut parser_ref))
    })
}

/// Initialize or get the thread-local C parser as Option
fn with_c_parser_opt<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    C_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_c::language())?;
            *parser_ref = Some(parser);
        }
        Ok(f(&mut parser_ref))
    })
}

/// Initialize or get the thread-local C++ parser as Option
fn with_cpp_parser_opt<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    CPP_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_cpp::language())?;
            *parser_ref = Some(parser);
        }
        Ok(f(&mut parser_ref))
    })
}

/// Initialize or get the thread-local Java parser as Option
fn with_java_parser_opt<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    JAVA_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_java::language())?;
            *parser_ref = Some(parser);
        }
        Ok(f(&mut parser_ref))
    })
}

/// Initialize or get the thread-local JavaScript parser as Option
fn with_javascript_parser_opt<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    JAVASCRIPT_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_javascript::language())?;
            *parser_ref = Some(parser);
        }
        Ok(f(&mut parser_ref))
    })
}

/// Initialize or get the thread-local TypeScript parser as Option
fn with_typescript_parser_opt<F, R>(f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    TYPESCRIPT_PARSER.with(|parser_cell| {
        let mut parser_ref = parser_cell.borrow_mut();
        if parser_ref.is_none() {
            let mut parser = tree_sitter::Parser::new();
            parser.set_language(&tree_sitter_typescript::language_typescript())?;
            *parser_ref = Some(parser);
        }
        Ok(f(&mut parser_ref))
    })
}

/// Execute a function with a thread-local parser for the given language.
/// Passes &mut Option<tree_sitter::Parser> to allow take/replace patterns.
pub fn with_parser_opt<F, R>(language: Language, f: F) -> Result<R>
where
    F: FnOnce(&mut Option<tree_sitter::Parser>) -> R,
{
    match language {
        Language::Rust => with_rust_parser_opt(f),
        Language::Python => with_python_parser_opt(f),
        Language::C => with_c_parser_opt(f),
        Language::Cpp => with_cpp_parser_opt(f),
        Language::Java => with_java_parser_opt(f),
        Language::JavaScript => with_javascript_parser_opt(f),
        Language::TypeScript => with_typescript_parser_opt(f),
    }
}

/// Execute a function with a thread-local parser for the given language.
///
/// This function provides lazy-initialized, thread-local parser instances
/// for all supported languages. Each thread gets its own parser instances,
/// avoiding lock contention during parallel file indexing.
///
/// # Arguments
///
/// * `language` - The programming language to get a parser for
/// * `f` - A closure that takes `&mut tree_sitter::Parser` and returns a result
///
/// # Returns
///
/// The result of the closure, or an error if parser initialization fails.
///
/// # Example
///
/// ```ignore
/// use crate::ingest::pool::with_parser;
/// use crate::ingest::detect::Language;
///
/// let symbols = with_parser(Language::Rust, |parser| {
///     let tree = parser.parse(source, None)?;
///     // Extract symbols from tree
///     Ok(vec![])
/// })?;
/// ```
pub fn with_parser<F, R>(language: Language, f: F) -> Result<R>
where
    F: FnOnce(&mut tree_sitter::Parser) -> R,
{
    match language {
        Language::Rust => with_rust_parser(f),
        Language::Python => with_python_parser(f),
        Language::C => with_c_parser(f),
        Language::Cpp => with_cpp_parser(f),
        Language::Java => with_java_parser(f),
        Language::JavaScript => with_javascript_parser(f),
        Language::TypeScript => with_typescript_parser(f),
    }
}

/// Warmup all parsers to avoid first-parse latency.
///
/// This function initializes all thread-local parsers by parsing minimal
/// source code for each supported language. Call this during application
/// startup to ensure the first real parse doesn't pay the initialization cost.
///
/// # Note
///
/// This function only warms up parsers for the calling thread. Thread-local
/// parsers are initialized per-thread, so each thread needs to call this
/// function (or rely on lazy initialization during first parse).
///
/// # Returns
///
/// Ok(()) if all parsers were successfully warmed up, or an error if any
/// parser initialization failed.
///
/// # Example
///
/// ```ignore
/// use crate::ingest::pool::warmup_parsers;
///
/// // During application startup
/// warmup_parsers().expect("Failed to warmup parsers");
/// ```
pub fn warmup_parsers() -> Result<()> {
    // Minimal source code snippets for each language
    let test_cases: [(Language, &[u8]); 7] = [
        (Language::Rust, b"fn test() {}"),
        (Language::Python, b"def test(): pass"),
        (Language::C, b"int test() { return 0; }"),
        (Language::Cpp, b"void test() {}"),
        (Language::Java, b"class Test {}"),
        (Language::JavaScript, b"function test() {}"),
        (Language::TypeScript, b"function test(): void {}"),
    ];

    for (lang, source) in test_cases {
        let _ = with_parser(lang, |parser| {
            parser.parse(source, None);
            Ok::<(), anyhow::Error>(())
        })?;
    }

    Ok(())
}

/// Clean up thread-local parser resources.
///
/// This function explicitly drops all thread-local parser instances,
/// ensuring that C resources are cleaned up before the thread exits.
/// This prevents the `tcache_thread_shutdown` crash that can occur during
/// glibc's TLS cleanup if parsers are still allocated.
///
/// # Important
///
/// **Call this before thread exit** to ensure clean parser cleanup.
/// The tree-sitter Parser implements Drop, but relying on implicit Drop
/// during thread exit can cause glibc to crash with `tcache_thread_shutdown`.
///
/// # Note
///
/// After calling this function, parsers will be re-initialized on next use
/// via lazy initialization. This is safe but will incur re-initialization cost.
///
/// # Example
///
/// ```ignore
/// use crate::ingest::pool::cleanup_parsers;
///
/// // During graceful shutdown, before thread exit
/// cleanup_parsers();
/// ```
pub fn cleanup_parsers() {
    // Explicitly drop all thread-local parsers to ensure clean C cleanup
    // before glibc's TLS cleanup runs (which can crash with tcache_thread_shutdown)
    RUST_PARSER.with(|parser_cell| {
        parser_cell.borrow_mut().take();
    });
    PYTHON_PARSER.with(|parser_cell| {
        parser_cell.borrow_mut().take();
    });
    C_PARSER.with(|parser_cell| {
        parser_cell.borrow_mut().take();
    });
    CPP_PARSER.with(|parser_cell| {
        parser_cell.borrow_mut().take();
    });
    JAVA_PARSER.with(|parser_cell| {
        parser_cell.borrow_mut().take();
    });
    JAVASCRIPT_PARSER.with(|parser_cell| {
        parser_cell.borrow_mut().take();
    });
    TYPESCRIPT_PARSER.with(|parser_cell| {
        parser_cell.borrow_mut().take();
    });
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_parser_reuse() {
        // Verify that the same thread gets the same parser instance
        let addr1 = with_rust_parser(|p| p as *const _ as usize).unwrap();
        let addr2 = with_rust_parser(|p| p as *const _ as usize).unwrap();
        assert_eq!(addr1, addr2, "Parser should be reused in same thread");
    }

    #[test]
    fn test_all_languages_have_parsers() {
        // Verify each language can initialize its parser
        let languages = [
            Language::Rust,
            Language::Python,
            Language::C,
            Language::Cpp,
            Language::Java,
            Language::JavaScript,
            Language::TypeScript,
        ];

        for lang in languages {
            let result = with_parser(lang, |parser| {
                // Try to parse an empty source
                let tree = parser.parse(b"", None);
                tree.is_some()
            });
            assert!(
                result.is_ok(),
                "Language {:?} should have a working parser",
                lang
            );
            assert!(
                result.unwrap(),
                "Language {:?} should parse successfully",
                lang
            );
        }
    }

    #[test]
    fn test_parser_initialization() {
        // First call should initialize, subsequent calls should reuse
        let source = b"fn test() {}";

        let result1 = with_parser(Language::Rust, |parser| {
            parser.parse(source, None).is_some()
        })
        .unwrap();
        assert!(result1, "First parse should succeed");

        let result2 = with_parser(Language::Rust, |parser| {
            parser.parse(source, None).is_some()
        })
        .unwrap();
        assert!(result2, "Second parse should succeed with reused parser");
    }

    #[test]
    fn test_concurrent_access() {
        use std::sync::{Arc, Barrier};
        use std::thread;

        let source = b"fn test() {}";
        let barrier = Arc::new(Barrier::new(2));
        let barrier_clone = barrier.clone();

        // Spawn a thread that also uses the parser pool
        let handle = thread::spawn(move || {
            barrier_clone.wait();
            with_parser(Language::Rust, |parser| parser.parse(source, None))
                .unwrap()
                .is_some()
        });

        barrier.wait();
        let main_result = with_parser(Language::Rust, |parser| parser.parse(source, None))
            .unwrap()
            .is_some();

        let thread_result = handle.join().unwrap();

        assert!(main_result, "Main thread parse should succeed");
        assert!(thread_result, "Spawned thread parse should succeed");
    }

    #[test]
    fn test_multiple_languages_same_thread() {
        // Verify we can use multiple language parsers in the same thread
        let test_cases: [(Language, &[u8]); 7] = [
            (Language::Rust, b"fn test() {}"),
            (Language::Python, b"def test(): pass"),
            (Language::C, b"int test() { return 0; }"),
            (Language::Cpp, b"void test() {}"),
            (Language::Java, b"class Test {}"),
            (Language::JavaScript, b"function test() {}"),
            (Language::TypeScript, b"function test(): void {}"),
        ];

        for (lang, source) in test_cases {
            let result = with_parser(lang, |parser| parser.parse(source, None).is_some());
            assert!(
                result.is_ok() && result.unwrap(),
                "Language {:?} should parse successfully",
                lang
            );
        }
    }

    #[test]
    fn test_parse_simple_rust() {
        let source = b"pub fn hello() -> String { \"world\".to_string() }";
        let tree = with_parser(Language::Rust, |parser| parser.parse(source, None)).unwrap();

        assert!(
            tree.is_some(),
            "Simple Rust function should parse successfully"
        );
    }

    #[test]
    fn test_parse_simple_python() {
        let source = b"def hello():\n    return \"world\"";
        let tree = with_parser(Language::Python, |parser| parser.parse(source, None)).unwrap();

        assert!(
            tree.is_some(),
            "Simple Python function should parse successfully"
        );
    }

    #[test]
    fn test_with_parser_unified_api() {
        // Test the unified with_parser API
        let tree =
            with_parser(Language::Rust, |parser| parser.parse(b"struct Test;", None)).unwrap();

        assert!(tree.is_some(), "Parser should successfully parse");
        assert_eq!(tree.unwrap().root_node().kind(), "source_file");
    }

    #[test]
    fn test_warmup_parsers() {
        // Warmup should succeed without errors
        warmup_parsers().expect("Parser warmup should succeed");

        // After warmup, all parsers should be initialized
        let test_cases: [(Language, &[u8]); 7] = [
            (Language::Rust, b"fn test() {}"),
            (Language::Python, b"def test(): pass"),
            (Language::C, b"int test() { return 0; }"),
            (Language::Cpp, b"void test() {}"),
            (Language::Java, b"class Test {}"),
            (Language::JavaScript, b"function test() {}"),
            (Language::TypeScript, b"function test(): void {}"),
        ];

        for (lang, source) in test_cases {
            let result = with_parser(lang, |parser| parser.parse(source, None).is_some());
            assert!(
                result.is_ok() && result.unwrap(),
                "Language {:?} should parse successfully after warmup",
                lang
            );
        }
    }

    #[test]
    fn test_warmup_multiple_calls() {
        // Multiple warmup calls should be safe (parsers already initialized)
        warmup_parsers().expect("First warmup should succeed");
        warmup_parsers().expect("Second warmup should succeed");
        warmup_parsers().expect("Third warmup should succeed");
    }
}