repotoire 0.5.3

Graph-powered code analysis CLI. 106 detectors for security, architecture, and code quality.
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
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
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
//! Rust parser using tree-sitter
//!
//! Extracts functions, structs, impls, traits, imports, and call relationships from Rust source code.

use crate::models::{Class, Function};
use crate::parsers::{ImportInfo, ParseResult};
use anyhow::{Context, Result};
use std::cell::RefCell;
use std::collections::HashMap;
use std::path::Path;
use std::sync::OnceLock;
use tree_sitter::{Node, Parser, Query, QueryCursor, StreamingIterator};

thread_local! {
    static RS_PARSER: RefCell<Parser> = RefCell::new({
        let mut p = Parser::new();
        p.set_language(&tree_sitter_rust::LANGUAGE.into()).expect("Rust language");
        p
    });
}

const FUNC_QUERY_STR: &str = r#"
    (function_item
        name: (identifier) @func_name
        parameters: (parameters) @params
        return_type: (_)? @return_type
    ) @func

    (function_signature_item
        name: (identifier) @func_name
        parameters: (parameters) @params
        return_type: (_)? @return_type
    ) @func
"#;

const IMPORT_QUERY_STR: &str = r#"
    (use_declaration
        argument: (_) @import_path
    )
"#;

static RS_FUNC_QUERY: OnceLock<Query> = OnceLock::new();
static RS_IMPORT_QUERY: OnceLock<Query> = OnceLock::new();

/// Parse a Rust file and extract all code entities
#[allow(dead_code)]
pub fn parse(path: &Path) -> Result<ParseResult> {
    let source = std::fs::read_to_string(path)
        .with_context(|| format!("Failed to read file: {}", path.display()))?;

    parse_source(&source, path)
}

/// Parse Rust source code directly (useful for testing)
pub fn parse_source(source: &str, path: &Path) -> Result<ParseResult> {
    parse_source_with_tree(source, path).map(|(r, _)| r)
}

/// Parse Rust source code and return both the ParseResult and the tree-sitter Tree.
/// Used by the pipeline to extract structural fingerprints without re-parsing.
pub fn parse_source_with_tree(source: &str, path: &Path) -> Result<(ParseResult, tree_sitter::Tree)> {
    let tree = RS_PARSER.with(|cell| {
        cell.borrow_mut().parse(source, None)
    }).context("Failed to parse Rust source")?;

    let root = tree.root_node();
    let source_bytes = source.as_bytes();

    let mut result = ParseResult::default();

    extract_functions(&root, source_bytes, path, &mut result)?;
    extract_structs_and_traits(&root, source_bytes, path, &mut result)?;
    extract_imports(&root, source_bytes, &mut result)?;
    extract_calls(&root, source_bytes, path, &mut result)?;

    Ok((result, tree))
}

/// Extract function definitions from the AST
fn extract_functions(
    root: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
) -> Result<()> {
    let query = RS_FUNC_QUERY.get_or_init(|| {
        Query::new(&tree_sitter_rust::LANGUAGE.into(), FUNC_QUERY_STR)
            .expect("valid function query")
    });

    let mut cursor = QueryCursor::new();
    let mut matches = cursor.matches(query, *root, source);

    while let Some(m) = matches.next() {
        let mut func_node = None;
        let mut name = String::new();
        let mut params_node = None;
        let mut return_type_node = None;

        for capture in m.captures.iter() {
            let capture_name = query.capture_names()[capture.index as usize];
            match capture_name {
                "func" => func_node = Some(capture.node),
                "func_name" => {
                    name = capture.node.utf8_text(source).unwrap_or("").to_string();
                }
                "params" => params_node = Some(capture.node),
                "return_type" => return_type_node = Some(capture.node),
                _ => {}
            }
        }

        if let Some(node) = func_node {
            // Skip if this is inside an impl block (handled separately)
            if is_inside_impl(&node) {
                continue;
            }

            let is_async = has_async_modifier(&node, source);
            let parameters = extract_parameters(params_node, source);
            let return_type =
                return_type_node.map(|n| n.utf8_text(source).unwrap_or("").to_string());

            let line_start = node.start_position().row as u32 + 1;
            let line_end = node.end_position().row as u32 + 1;
            let qualified_name = format!("{}::{}:{}", path.display(), name, line_start);

            let mut annotations = extract_rust_attributes(&node, source);
            if has_pub_visibility(&node) {
                annotations.push("exported".to_string());
            }

            result.functions.push(Function {
                name: name.clone(),
                qualified_name,
                file_path: path.to_path_buf(),
                line_start,
                line_end,
                parameters,
                return_type,
                is_async,
                complexity: Some(calculate_complexity(&node, source)),
                max_nesting: None,
                doc_comment: None,
                annotations,
            });
        }
    }

    Ok(())
}

/// Check if a node has async modifier
fn has_async_modifier(node: &Node, source: &[u8]) -> bool {
    for child in node.children(&mut node.walk()) {
        if child.kind() == "async" {
            return true;
        }
        // Also check the text representation
        if let Ok(text) = child.utf8_text(source) {
            if text == "async" {
                return true;
            }
        }
    }
    false
}

/// Check if a node is inside an impl block
fn is_inside_impl(node: &Node) -> bool {
    super::is_inside_ancestor(node, "impl_item")
}

/// Extract parameter names from a parameters node
fn extract_parameters(params_node: Option<Node>, source: &[u8]) -> Vec<String> {
    let Some(node) = params_node else {
        return vec![];
    };

    let mut params = Vec::new();
    let mut cursor = node.walk();

    for child in node.children(&mut cursor) {
        match child.kind() {
            "parameter" => {
                // Get pattern (name) from parameter
                if let Some(pattern) = child.child_by_field_name("pattern") {
                    if let Ok(text) = pattern.utf8_text(source) {
                        params.push(text.to_string());
                    }
                }
            }
            "self_parameter" => {
                if let Ok(text) = child.utf8_text(source) {
                    params.push(text.to_string());
                }
            }
            _ => {}
        }
    }

    params
}

/// Extract structs, enums, traits, and impl blocks from the AST
fn extract_structs_and_traits(
    root: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
) -> Result<()> {
    let mut cursor = root.walk();

    for node in root.children(&mut cursor) {
        match node.kind() {
            "struct_item" => {
                if let Some(class) = parse_struct_node(&node, source, path) {
                    result.classes.push(class);
                }
            }
            "enum_item" => {
                if let Some(class) = parse_enum_node(&node, source, path) {
                    result.classes.push(class);
                }
            }
            "trait_item" => {
                if let Some(class) = parse_trait_node(&node, source, path) {
                    result.classes.push(class);
                }
            }
            "impl_item" => {
                // Extract methods from impl blocks as functions
                extract_impl_methods(&node, source, path, result)?;
            }
            _ => {}
        }
    }

    Ok(())
}

/// Parse a struct into a Class struct
fn parse_struct_node(node: &Node, source: &[u8], path: &Path) -> Option<Class> {
    let name_node = node.child_by_field_name("name")?;
    let name = name_node.utf8_text(source).ok()?.to_string();

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;
    let qualified_name = format!("{}::{}:{}", path.display(), name, line_start);

    let mut annotations = extract_rust_attributes(node, source);
    if has_pub_visibility(node) {
        annotations.push("exported".to_string());
    }

    // Count struct fields: named fields (field_declaration) or tuple fields (ordered_field_declaration)
    let field_count = count_struct_fields(node);

    Some(Class {
        name,
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        methods: vec![],
        field_count,
        bases: vec![],
        doc_comment: None,
        annotations,
    })
}

/// Count fields in a struct node (named fields or tuple fields)
fn count_struct_fields(node: &Node) -> usize {
    if let Some(body) = node.child_by_field_name("body") {
        match body.kind() {
            // Named struct: struct Foo { field1: T, field2: T }
            "field_declaration_list" => {
                let mut count = 0;
                let mut cursor = body.walk();
                for child in body.children(&mut cursor) {
                    if child.kind() == "field_declaration" {
                        count += 1;
                    }
                }
                count
            }
            // Tuple struct: struct Foo(T1, T2)
            // Fields are named children (type nodes) directly inside the list
            "ordered_field_declaration_list" => body.named_child_count(),
            _ => 0,
        }
    } else {
        0 // Unit struct
    }
}

/// Parse an enum into a Class struct
fn parse_enum_node(node: &Node, source: &[u8], path: &Path) -> Option<Class> {
    let name_node = node.child_by_field_name("name")?;
    let name = name_node.utf8_text(source).ok()?.to_string();

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;
    let qualified_name = format!("{}::{}:{}", path.display(), name, line_start);

    let mut annotations = extract_rust_attributes(node, source);
    if has_pub_visibility(node) {
        annotations.push("exported".to_string());
    }

    // Count enum variants
    let field_count = node
        .child_by_field_name("body")
        .map(|body| {
            let mut count = 0;
            let mut cursor = body.walk();
            for child in body.children(&mut cursor) {
                if child.kind() == "enum_variant" {
                    count += 1;
                }
            }
            count
        })
        .unwrap_or(0);

    Some(Class {
        name,
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        methods: vec![],
        field_count,
        bases: vec![],
        doc_comment: None,
        annotations,
    })
}

/// Parse a trait into a Class struct
fn parse_trait_node(node: &Node, source: &[u8], path: &Path) -> Option<Class> {
    let name_node = node.child_by_field_name("name")?;
    let name = name_node.utf8_text(source).ok()?.to_string();

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;
    let qualified_name = format!("{}::trait::{}:{}", path.display(), name, line_start);

    // Extract method signatures from trait
    let methods = extract_trait_methods(node, source);

    // Extract supertraits (bounds)
    let bases = extract_trait_bounds(node, source);

    let mut annotations = extract_rust_attributes(node, source);
    if has_pub_visibility(node) {
        annotations.push("exported".to_string());
    }

    Some(Class {
        name,
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        methods,
        field_count: 0,
        bases,
        doc_comment: None,
        annotations,
    })
}

/// Extract method names from a trait
fn extract_trait_methods(trait_node: &Node, source: &[u8]) -> Vec<String> {
    let mut methods = Vec::new();

    if let Some(body) = trait_node.child_by_field_name("body") {
        for child in body.children(&mut body.walk()) {
            if child.kind() == "function_item" || child.kind() == "function_signature_item" {
                if let Some(name_node) = child.child_by_field_name("name") {
                    if let Ok(name) = name_node.utf8_text(source) {
                        methods.push(name.to_string());
                    }
                }
            }
        }
    }

    methods
}

/// Extract trait bounds (supertraits)
fn extract_trait_bounds(trait_node: &Node, source: &[u8]) -> Vec<String> {
    let mut bounds = Vec::new();

    if let Some(bounds_node) = trait_node.child_by_field_name("bounds") {
        for child in bounds_node.children(&mut bounds_node.walk()) {
            if child.kind() == "type_identifier" || child.kind() == "generic_type" {
                if let Ok(text) = child.utf8_text(source) {
                    bounds.push(text.to_string());
                }
            }
        }
    }

    bounds
}

/// Extract methods from impl blocks
fn extract_impl_methods(
    impl_node: &Node,
    source: &[u8],
    path: &Path,
    result: &mut ParseResult,
) -> Result<()> {
    // Get the type being implemented
    let type_name = impl_node
        .child_by_field_name("type")
        .and_then(|n| n.utf8_text(source).ok())
        .map(|s| s.to_string())
        .unwrap_or_else(|| "Unknown".to_string());

    // Get the trait being implemented (if any)
    let trait_name = impl_node
        .child_by_field_name("trait")
        .and_then(|n| n.utf8_text(source).ok())
        .map(|s| s.to_string());

    let impl_line = impl_node.start_position().row as u32 + 1;

    // Record trait implementation relationship
    if let Some(ref trait_n) = trait_name {
        result.trait_impls.push((type_name.clone(), trait_n.clone()));
    }

    // Extract methods from the impl body
    if let Some(body) = impl_node.child_by_field_name("body") {
        for child in body.children(&mut body.walk()) {
            if child.kind() == "function_item" {
                if let Some(func) = parse_impl_method(
                    &child,
                    source,
                    path,
                    &type_name,
                    trait_name.as_deref(),
                    impl_line,
                ) {
                    result.functions.push(func);
                }
            }
        }
    }

    Ok(())
}

/// Parse a method inside an impl block
fn parse_impl_method(
    node: &Node,
    source: &[u8],
    path: &Path,
    type_name: &str,
    trait_name: Option<&str>,
    _impl_line: u32,
) -> Option<Function> {
    let name_node = node.child_by_field_name("name")?;
    let name = name_node.utf8_text(source).ok()?.to_string();

    let params_node = node.child_by_field_name("parameters");
    let parameters = extract_parameters(params_node, source);

    let return_type = node
        .child_by_field_name("return_type")
        .and_then(|n| n.utf8_text(source).ok())
        .map(|s| s.to_string());

    let is_async = has_async_modifier(node, source);

    let line_start = node.start_position().row as u32 + 1;
    let line_end = node.end_position().row as u32 + 1;

    // Build qualified name including impl context
    let qualified_name = if let Some(trait_n) = trait_name {
        format!(
            "{}::impl<{} for {}>::{}:{}",
            path.display(),
            trait_n,
            type_name,
            name,
            line_start
        )
    } else {
        format!(
            "{}::impl<{}>::{}:{}",
            path.display(),
            type_name,
            name,
            line_start
        )
    };

    let mut annotations = extract_rust_attributes(node, source);
    if has_pub_visibility(node) {
        annotations.push("exported".to_string());
    }

    Some(Function {
        name,
        qualified_name,
        file_path: path.to_path_buf(),
        line_start,
        line_end,
        parameters,
        return_type,
        is_async,
        complexity: Some(calculate_complexity(node, source)),
        max_nesting: None,
        doc_comment: None,
        annotations,
    })
}

/// Extract use statements from the AST
fn extract_imports(root: &Node, source: &[u8], result: &mut ParseResult) -> Result<()> {
    let query = RS_IMPORT_QUERY.get_or_init(|| {
        Query::new(&tree_sitter_rust::LANGUAGE.into(), IMPORT_QUERY_STR)
            .expect("valid import query")
    });

    let mut cursor = QueryCursor::new();
    let mut matches = cursor.matches(query, *root, source);

    while let Some(m) = matches.next() {
        for capture in m.captures.iter() {
            if let Ok(text) = capture.node.utf8_text(source) {
                // Clean up the import path
                let import = text.trim().to_string();
                if !import.is_empty() {
                    result.imports.push(ImportInfo::runtime(import));
                }
            }
        }
    }

    Ok(())
}

/// Extract function calls from the AST
fn extract_calls(root: &Node, source: &[u8], path: &Path, result: &mut ParseResult) -> Result<()> {
    // Build a map of function locations for call extraction
    let mut scope_map: HashMap<(u32, u32), String> = HashMap::new();

    for func in &result.functions {
        scope_map.insert(
            (func.line_start, func.line_end),
            func.qualified_name.clone(),
        );
    }

    extract_calls_recursive(root, source, path, &scope_map, result);

    Ok(())
}

/// Recursively extract calls from the AST
fn extract_calls_recursive(
    node: &Node,
    source: &[u8],
    path: &Path,
    scope_map: &HashMap<(u32, u32), String>,
    result: &mut ParseResult,
) {
    if node.kind() == "call_expression" {
        let call_line = node.start_position().row as u32 + 1;
        // For top-level calls (outside any function), use the file path as the caller
        let caller = find_containing_scope(call_line, scope_map)
            .unwrap_or_else(|| path.display().to_string());

        if let Some(func_node) = node.child_by_field_name("function") {
            if let Some(callee) = extract_call_target(&func_node, source) {
                result.calls.push((caller, callee));
            }
        }
    }

    // Also handle method calls
    if node.kind() == "method_call_expression" {
        let call_line = node.start_position().row as u32 + 1;
        // For top-level calls (outside any function), use the file path as the caller
        let caller = find_containing_scope(call_line, scope_map)
            .unwrap_or_else(|| path.display().to_string());

        if let Some(name_node) = node.child_by_field_name("name") {
            if let Ok(callee) = name_node.utf8_text(source) {
                result.calls.push((caller, callee.to_string()));
            }
        }
    }

    for child in node.children(&mut node.walk()) {
        extract_calls_recursive(&child, source, path, scope_map, result);
    }
}

/// Find which scope contains a given line
fn find_containing_scope(line: u32, scope_map: &HashMap<(u32, u32), String>) -> Option<String> {
    super::find_containing_scope(line, scope_map)
}

/// Extract the target of a function call
fn extract_call_target(node: &Node, source: &[u8]) -> Option<String> {
    match node.kind() {
        "identifier" => node.utf8_text(source).ok().map(|s| s.to_string()),
        "scoped_identifier" => node.utf8_text(source).ok().map(|s| s.to_string()),
        "field_expression" => node.utf8_text(source).ok().map(|s| s.to_string()),
        "generic_function" => {
            // func::<T>() - get the function name
            node.child_by_field_name("function")
                .and_then(|n| extract_call_target(&n, source))
        }
        _ => node.utf8_text(source).ok().map(|s| s.to_string()),
    }
}

/// Check if a node has a `pub` visibility modifier (pub, pub(crate), pub(super), etc.)
fn has_pub_visibility(node: &Node) -> bool {
    for child in node.children(&mut node.walk()) {
        if child.kind() == "visibility_modifier" {
            return true;
        }
    }
    false
}

/// Extract attributes from preceding sibling `attribute_item` nodes.
fn extract_rust_attributes(node: &Node, source: &[u8]) -> Vec<String> {
    let mut attrs = Vec::new();
    let mut sibling = node.prev_sibling();
    while let Some(sib) = sibling {
        if sib.kind() == "attribute_item" {
            let text = sib.utf8_text(source).unwrap_or("");
            let inner = text.trim_start_matches("#[").trim_end_matches(']').trim();
            if !inner.is_empty() {
                attrs.push(inner.to_string());
            }
        } else if sib.kind() == "line_comment" || sib.kind() == "block_comment" {
            // Skip comments between attributes and definition
        } else {
            break;
        }
        sibling = sib.prev_sibling();
    }
    attrs.reverse(); // Preserve declaration order
    attrs
}

/// Calculate cyclomatic complexity of a function
fn calculate_complexity(node: &Node, _source: &[u8]) -> u32 {
    let mut complexity = 1;

    fn count_branches(node: &Node, complexity: &mut u32) {
        match node.kind() {
            "if_expression" | "else_clause" | "while_expression" | "for_expression"
            | "loop_expression" => {
                *complexity += 1;
            }
            "match_arm" => {
                *complexity += 1;
            }
            "binary_expression" => {
                // Check for && or ||
                for child in node.children(&mut node.walk()) {
                    if child.kind() == "&&" || child.kind() == "||" {
                        *complexity += 1;
                    }
                }
            }
            "?" => {
                // ? operator for error handling
                *complexity += 1;
            }
            _ => {}
        }

        for child in node.children(&mut node.walk()) {
            count_branches(&child, complexity);
        }
    }

    count_branches(node, &mut complexity);
    complexity
}

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

    #[test]
    fn test_parse_simple_function() {
        let source = r#"
fn hello(name: &str) -> String {
    format!("Hello, {}!", name)
}
"#;
        let path = PathBuf::from("test.rs");
        let result = parse_source(source, &path).expect("should parse Rust source");

        assert_eq!(result.functions.len(), 1);
        let func = &result.functions[0];
        assert_eq!(func.name, "hello");
        assert!(!func.is_async);
    }

    #[test]
    fn test_parse_async_function() {
        let source = r#"
async fn fetch_data(url: &str) -> Result<String, Error> {
    Ok(String::new())
}
"#;
        let path = PathBuf::from("test.rs");
        let result = parse_source(source, &path).expect("should parse Rust source");

        assert_eq!(result.functions.len(), 1);
        let func = &result.functions[0];
        assert_eq!(func.name, "fetch_data");
        assert!(func.is_async);
    }

    #[test]
    fn test_parse_struct() {
        let source = r#"
struct MyStruct {
    field: i32,
}
"#;
        let path = PathBuf::from("test.rs");
        let result = parse_source(source, &path).expect("should parse Rust source");

        assert_eq!(result.classes.len(), 1);
        let class = &result.classes[0];
        assert_eq!(class.name, "MyStruct");
    }

    #[test]
    fn test_parse_impl_methods() {
        let source = r#"
struct MyStruct;

impl MyStruct {
    fn new() -> Self {
        MyStruct
    }

    fn method(&self, x: i32) -> i32 {
        x * 2
    }
}
"#;
        let path = PathBuf::from("test.rs");
        let result = parse_source(source, &path).expect("should parse Rust source");

        assert_eq!(result.functions.len(), 2);
        assert!(result.functions.iter().any(|f| f.name == "new"));
        assert!(result.functions.iter().any(|f| f.name == "method"));
    }

    #[test]
    fn test_parse_imports() {
        let source = r#"
use std::collections::HashMap;
use crate::models::Function;
use super::{ImportInfo, ParseResult};
"#;
        let path = PathBuf::from("test.rs");
        let result = parse_source(source, &path).expect("should parse Rust source");

        assert!(result.imports.len() >= 3);
    }

    #[test]
    fn test_parse_trait() {
        let source = r#"
trait MyTrait: Clone + Send {
    fn required_method(&self);
    fn provided_method(&self) -> i32 {
        42
    }
}
"#;
        let path = PathBuf::from("test.rs");
        let result = parse_source(source, &path).expect("should parse Rust source");

        assert_eq!(result.classes.len(), 1);
        let trait_def = &result.classes[0];
        assert_eq!(trait_def.name, "MyTrait");
        assert!(trait_def.methods.contains(&"required_method".to_string()));
        assert!(trait_def.methods.contains(&"provided_method".to_string()));
    }

    #[test]
    fn test_export_detection_rust() {
        let code = r#"
pub fn public_func() {}

fn private_func() {}

pub struct PublicStruct {}

struct PrivateStruct {}

pub enum PublicEnum { A, B }

pub trait PublicTrait {}
"#;
        let path = PathBuf::from("test.rs");
        let result = parse_source(code, &path).expect("should parse Rust exports");

        let public = result
            .functions
            .iter()
            .find(|f| f.name == "public_func")
            .unwrap();
        assert!(
            public.annotations.iter().any(|a| a == "exported"),
            "pub fn should be exported, annotations: {:?}",
            public.annotations
        );

        let private = result
            .functions
            .iter()
            .find(|f| f.name == "private_func")
            .unwrap();
        assert!(
            !private.annotations.iter().any(|a| a == "exported"),
            "private fn should NOT be exported"
        );

        let pub_struct = result
            .classes
            .iter()
            .find(|c| c.name == "PublicStruct")
            .unwrap();
        assert!(
            pub_struct.annotations.iter().any(|a| a == "exported"),
            "pub struct should be exported, annotations: {:?}",
            pub_struct.annotations
        );

        let priv_struct = result
            .classes
            .iter()
            .find(|c| c.name == "PrivateStruct")
            .unwrap();
        assert!(
            !priv_struct.annotations.iter().any(|a| a == "exported"),
            "private struct should NOT be exported"
        );

        let pub_enum = result
            .classes
            .iter()
            .find(|c| c.name == "PublicEnum")
            .unwrap();
        assert!(
            pub_enum.annotations.iter().any(|a| a == "exported"),
            "pub enum should be exported, annotations: {:?}",
            pub_enum.annotations
        );

        let pub_trait = result
            .classes
            .iter()
            .find(|c| c.name == "PublicTrait")
            .unwrap();
        assert!(
            pub_trait.annotations.iter().any(|a| a == "exported"),
            "pub trait should be exported, annotations: {:?}",
            pub_trait.annotations
        );
    }

    #[test]
    fn test_attribute_extraction() {
        let code = r#"
#[test]
fn test_something() {
    assert!(true);
}

#[derive(Debug, Clone)]
struct MyStruct {
    field: i32,
}

#[tokio::main]
async fn main() {
    println!("hello");
}

pub fn no_attrs() {}
"#;
        let result = parse_source(code, Path::new("test.rs")).expect("should parse");

        let test_fn = result
            .functions
            .iter()
            .find(|f| f.name == "test_something")
            .unwrap();
        assert!(
            test_fn.annotations.iter().any(|a| a.contains("test")),
            "test_something should have #[test] annotation, got: {:?}",
            test_fn.annotations
        );

        let main_fn = result.functions.iter().find(|f| f.name == "main").unwrap();
        assert!(
            main_fn.annotations.iter().any(|a| a.contains("tokio::main")),
            "main should have #[tokio::main] annotation, got: {:?}",
            main_fn.annotations
        );

        let my_struct = result
            .classes
            .iter()
            .find(|c| c.name == "MyStruct")
            .unwrap();
        assert!(
            my_struct.annotations.iter().any(|a| a.contains("derive")),
            "MyStruct should have #[derive] annotation, got: {:?}",
            my_struct.annotations
        );

        let no_attrs_fn = result
            .functions
            .iter()
            .find(|f| f.name == "no_attrs")
            .unwrap();
        // no_attrs has no #[attribute] annotations, but it is `pub` so it has "exported"
        assert!(
            no_attrs_fn
                .annotations
                .iter()
                .all(|a| a == "exported"),
            "no_attrs should only have 'exported' (no #[attr]), got: {:?}",
            no_attrs_fn.annotations
        );
    }

    #[test]
    fn test_attribute_extraction_inside_cfg_test_module() {
        let code = r#"
pub fn production_code() {}

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

    #[test]
    fn test_something() {
        assert!(true);
    }

    #[test]
    fn test_another() {
        assert_eq!(1, 1);
    }
}
"#;
        let result = parse_source(code, Path::new("test.rs")).expect("should parse");

        // Check that test functions inside #[cfg(test)] mod tests are found
        let test_fn = result.functions.iter().find(|f| f.name == "test_something");
        assert!(
            test_fn.is_some(),
            "test_something inside mod tests should be found. Functions: {:?}",
            result.functions.iter().map(|f| (&f.name, &f.annotations)).collect::<Vec<_>>()
        );

        if let Some(tf) = test_fn {
            assert!(
                tf.annotations.iter().any(|a| a == "test"),
                "test_something should have #[test] annotation, got: {:?}",
                tf.annotations
            );
        }

        let test_fn2 = result.functions.iter().find(|f| f.name == "test_another");
        assert!(
            test_fn2.is_some(),
            "test_another inside mod tests should be found"
        );
        if let Some(tf) = test_fn2 {
            assert!(
                tf.annotations.iter().any(|a| a == "test"),
                "test_another should have #[test] annotation, got: {:?}",
                tf.annotations
            );
        }
    }

    #[test]
    fn test_impl_method_export_detection() {
        let code = r#"
struct MyStruct;

impl MyStruct {
    pub fn public_method(&self) -> i32 {
        42
    }

    fn private_method(&self) -> i32 {
        0
    }
}
"#;
        let result = parse_source(code, Path::new("test.rs")).expect("should parse");

        let public = result
            .functions
            .iter()
            .find(|f| f.name == "public_method")
            .unwrap();
        assert!(
            public.annotations.iter().any(|a| a == "exported"),
            "pub impl method should be exported, got: {:?}",
            public.annotations
        );

        let private = result
            .functions
            .iter()
            .find(|f| f.name == "private_method")
            .unwrap();
        assert!(
            !private.annotations.iter().any(|a| a == "exported"),
            "private impl method should NOT be exported, got: {:?}",
            private.annotations
        );
    }

    #[test]
    fn test_struct_field_count() {
        let source = r#"
pub struct Config {
    pub name: String,
    pub value: i32,
    pub enabled: bool,
}

struct Pair(i32, String);

struct Unit;

pub enum Color {
    Red,
    Green,
    Blue,
    Custom(u8, u8, u8),
}
"#;
        let result = parse_source(source, Path::new("test.rs")).unwrap();

        let config = result.classes.iter().find(|c| c.name == "Config").unwrap();
        assert_eq!(config.field_count, 3, "Config has 3 named fields");

        let pair = result.classes.iter().find(|c| c.name == "Pair").unwrap();
        assert_eq!(pair.field_count, 2, "Pair tuple struct has 2 fields");

        let unit = result.classes.iter().find(|c| c.name == "Unit").unwrap();
        assert_eq!(unit.field_count, 0, "Unit struct has 0 fields");

        let color = result.classes.iter().find(|c| c.name == "Color").unwrap();
        assert_eq!(color.field_count, 4, "Color enum has 4 variants");
    }

    #[test]
    fn test_trait_impl_method_qn_format() {
        let source = r#"
struct GodClassDetector;

impl GodClassDetector {
    fn new() -> Self { GodClassDetector }
}

trait Detector {
    fn detect(&self) -> Vec<String>;
}

impl Detector for GodClassDetector {
    fn detect(&self) -> Vec<String> { vec![] }
}
"#;
        let result = parse_source(source, Path::new("src/detectors/god_class.rs")).unwrap();

        // Print all functions for debugging
        for f in &result.functions {
            eprintln!("  FUNC: {} -> {}", f.name, f.qualified_name);
        }

        // Find the IMPL method (not the trait signature)
        let detect_impl = result.functions.iter()
            .find(|f| f.name == "detect" && f.qualified_name.contains("impl<"))
            .expect("Should find impl method for detect");

        assert!(
            detect_impl.qualified_name.contains("impl<Detector for GodClassDetector>"),
            "Trait impl method QN should contain impl<Trait for Type>, got: {}",
            detect_impl.qualified_name
        );

        // Check inherent impl methods do NOT have " for "
        let new_fn = result.functions.iter().find(|f| f.name == "new").unwrap();
        assert!(
            new_fn.qualified_name.contains("impl<GodClassDetector>"),
            "Inherent impl QN should contain impl<Type>, got: {}",
            new_fn.qualified_name
        );
        assert!(
            !new_fn.qualified_name.contains(" for "),
            "Inherent impl QN should NOT contain ' for ', got: {}",
            new_fn.qualified_name
        );
    }

    #[test]
    fn test_trait_impl_relationships() {
        let source = r#"
trait MyTrait {
    fn do_thing(&self);
}

struct MyStruct;

impl MyTrait for MyStruct {
    fn do_thing(&self) {}
}

impl MyStruct {
    fn new() -> Self { MyStruct }
}
"#;
        let result = parse_source(source, Path::new("test.rs")).unwrap();
        assert_eq!(result.trait_impls.len(), 1);
        assert_eq!(result.trait_impls[0].0, "MyStruct");
        assert_eq!(result.trait_impls[0].1, "MyTrait");
    }
}