agentis-ctx 0.3.0

Fast CLI tool that generates AI-ready context from your codebase, with built-in code intelligence
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
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
//! Solidity-specific code parsing using solang-parser.
//!
//! This module uses solang-parser (the parser from the Hyperledger Solang compiler)
//! instead of tree-sitter due to tree-sitter version incompatibilities in the ecosystem.

use solang_parser::pt::{
    self, ContractPart, ContractTy, Expression, FunctionAttribute, FunctionTy, Loc, SourceUnitPart,
    VariableAttribute, Visibility as SolVisibility,
};

use crate::db::{
    Edge, EdgeKind, ImportInfo, ModuleInfo, ParseResult, Symbol, SymbolKind, Visibility,
};
use crate::parser::extract_brief;

/// Solidity-specific parser using solang-parser.
pub struct SolidityParser;

impl SolidityParser {
    /// Create a new Solidity parser.
    pub fn new() -> Self {
        Self
    }

    /// Parse a Solidity source file.
    pub fn parse(&mut self, file_path: &str, source: &str) -> Option<ParseResult> {
        let (tree, comments) = solang_parser::parse(source, 0).ok()?;

        let mut symbols = Vec::new();
        let mut edges = Vec::new();
        let mut imports = Vec::new();
        let mut exports = Vec::new();

        // Build a map of doc comments by their end location
        let doc_comments = extract_doc_comments(&comments, source);

        // Process each top-level item
        for part in &tree.0 {
            match part {
                SourceUnitPart::ContractDefinition(def) => {
                    let contract_name = def.name.as_ref().map(|id| id.name.clone());
                    let contract_kind = match def.ty {
                        ContractTy::Contract(_) => SymbolKind::Class,
                        ContractTy::Interface(_) => SymbolKind::Interface,
                        ContractTy::Library(_) => SymbolKind::Module,
                        ContractTy::Abstract(_) => SymbolKind::Class,
                    };

                    // Get location info
                    let (line_start, line_end, col_start, col_end) = loc_to_lines(&def.loc, source);

                    // Find doc comment for this contract
                    let docstring = find_doc_comment(&doc_comments, line_start);
                    let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                    // Build signature
                    let signature = def.name.as_ref().map(|name| {
                        let ty_str = match def.ty {
                            ContractTy::Contract(_) => "contract",
                            ContractTy::Interface(_) => "interface",
                            ContractTy::Library(_) => "library",
                            ContractTy::Abstract(_) => "abstract contract",
                        };
                        format!("{} {}", ty_str, name.name)
                    });

                    if let Some(ref name) = contract_name {
                        let id = Symbol::make_id(file_path, name, None);
                        exports.push(name.clone());

                        symbols.push(Symbol {
                            id: id.clone(),
                            file_path: file_path.to_string(),
                            name: name.clone(),
                            qualified_name: None,
                            kind: contract_kind,
                            visibility: Visibility::Public,
                            signature,
                            brief,
                            docstring,
                            line_start,
                            line_end,
                            col_start,
                            col_end,
                            parent_id: None,
                            source: extract_source(source, line_start, line_end),
                        });

                        // Process contract parts
                        extract_contract_parts(
                            &def.parts,
                            file_path,
                            source,
                            name,
                            &id,
                            &doc_comments,
                            &mut symbols,
                            &mut edges,
                        );
                    }
                }

                SourceUnitPart::ImportDirective(import) => {
                    if let Some(import_info) = extract_import(import) {
                        imports.push(import_info);
                    }
                }

                SourceUnitPart::FunctionDefinition(func) => {
                    // Free function (not in a contract)
                    if let Some(symbol) =
                        extract_function(func, file_path, source, None, None, &doc_comments)
                    {
                        symbols.push(symbol);
                    }
                }

                SourceUnitPart::StructDefinition(def) => {
                    if let Some(ref name) = def.name {
                        let (line_start, line_end, col_start, col_end) =
                            loc_to_lines(&def.loc, source);
                        let docstring = find_doc_comment(&doc_comments, line_start);
                        let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                        symbols.push(Symbol {
                            id: Symbol::make_id(file_path, &name.name, None),
                            file_path: file_path.to_string(),
                            name: name.name.clone(),
                            qualified_name: None,
                            kind: SymbolKind::Struct,
                            visibility: Visibility::Public,
                            signature: Some(format!("struct {}", name.name)),
                            brief,
                            docstring,
                            line_start,
                            line_end,
                            col_start,
                            col_end,
                            parent_id: None,
                            source: extract_source(source, line_start, line_end),
                        });
                    }
                }

                SourceUnitPart::EnumDefinition(def) => {
                    if let Some(ref name) = def.name {
                        let (line_start, line_end, col_start, col_end) =
                            loc_to_lines(&def.loc, source);
                        let docstring = find_doc_comment(&doc_comments, line_start);
                        let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                        symbols.push(Symbol {
                            id: Symbol::make_id(file_path, &name.name, None),
                            file_path: file_path.to_string(),
                            name: name.name.clone(),
                            qualified_name: None,
                            kind: SymbolKind::Enum,
                            visibility: Visibility::Public,
                            signature: Some(format!("enum {}", name.name)),
                            brief,
                            docstring,
                            line_start,
                            line_end,
                            col_start,
                            col_end,
                            parent_id: None,
                            source: extract_source(source, line_start, line_end),
                        });
                    }
                }

                SourceUnitPart::ErrorDefinition(def) => {
                    if let Some(ref name) = def.name {
                        let (line_start, line_end, col_start, col_end) =
                            loc_to_lines(&def.loc, source);
                        let docstring = find_doc_comment(&doc_comments, line_start);
                        let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                        symbols.push(Symbol {
                            id: Symbol::make_id(file_path, &name.name, None),
                            file_path: file_path.to_string(),
                            name: name.name.clone(),
                            qualified_name: None,
                            kind: SymbolKind::Type,
                            visibility: Visibility::Public,
                            signature: Some(format!("error {}", name.name)),
                            brief,
                            docstring,
                            line_start,
                            line_end,
                            col_start,
                            col_end,
                            parent_id: None,
                            source: extract_source(source, line_start, line_end),
                        });
                    }
                }

                SourceUnitPart::EventDefinition(def) => {
                    if let Some(ref name) = def.name {
                        let (line_start, line_end, col_start, col_end) =
                            loc_to_lines(&def.loc, source);
                        let docstring = find_doc_comment(&doc_comments, line_start);
                        let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                        symbols.push(Symbol {
                            id: Symbol::make_id(file_path, &name.name, None),
                            file_path: file_path.to_string(),
                            name: name.name.clone(),
                            qualified_name: None,
                            kind: SymbolKind::Function,
                            visibility: Visibility::Public,
                            signature: Some(format!("event {}", name.name)),
                            brief,
                            docstring,
                            line_start,
                            line_end,
                            col_start,
                            col_end,
                            parent_id: None,
                            source: extract_source(source, line_start, line_end),
                        });
                    }
                }

                _ => {}
            }
        }

        // Extract function call edges from function bodies
        extract_call_edges(file_path, source, &symbols, &mut edges);

        let module = ModuleInfo {
            file_path: file_path.to_string(),
            module_name: extract_contract_name(source),
            exports,
            imports,
        };

        Some(ParseResult {
            file_path: file_path.to_string(),
            language: "solidity".to_string(),
            symbols,
            edges,
            module: Some(module),
        })
    }
}

impl Default for SolidityParser {
    fn default() -> Self {
        Self::new()
    }
}

/// Extract contract parts (functions, state variables, events, structs, enums).
#[allow(clippy::too_many_arguments)]
fn extract_contract_parts(
    parts: &[ContractPart],
    file_path: &str,
    source: &str,
    contract_name: &str,
    contract_id: &str,
    doc_comments: &[(u32, String)],
    symbols: &mut Vec<Symbol>,
    edges: &mut Vec<Edge>,
) {
    for part in parts {
        match part {
            ContractPart::FunctionDefinition(func) => {
                if let Some(symbol) = extract_function(
                    func,
                    file_path,
                    source,
                    Some(contract_name),
                    Some(contract_id),
                    doc_comments,
                ) {
                    symbols.push(symbol);
                }
            }

            ContractPart::VariableDefinition(var) => {
                if let Some(ref name) = var.name {
                    let (line_start, line_end, col_start, col_end) = loc_to_lines(&var.loc, source);
                    let docstring = find_doc_comment(doc_comments, line_start);
                    let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                    let visibility = extract_variable_visibility(&var.attrs);
                    let type_str = format_type(&var.ty);

                    symbols.push(Symbol {
                        id: Symbol::make_id(file_path, &name.name, Some(contract_name)),
                        file_path: file_path.to_string(),
                        name: name.name.clone(),
                        qualified_name: Some(format!("{}.{}", contract_name, name.name)),
                        kind: SymbolKind::Field,
                        visibility,
                        signature: Some(format!("{} {}", type_str, name.name)),
                        brief,
                        docstring,
                        line_start,
                        line_end,
                        col_start,
                        col_end,
                        parent_id: Some(contract_id.to_string()),
                        source: extract_source(source, line_start, line_end),
                    });
                }
            }

            ContractPart::EventDefinition(event) => {
                if let Some(ref name) = event.name {
                    let (line_start, line_end, col_start, col_end) =
                        loc_to_lines(&event.loc, source);
                    let docstring = find_doc_comment(doc_comments, line_start);
                    let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                    symbols.push(Symbol {
                        id: Symbol::make_id(file_path, &name.name, Some(contract_name)),
                        file_path: file_path.to_string(),
                        name: name.name.clone(),
                        qualified_name: Some(format!("{}.{}", contract_name, name.name)),
                        kind: SymbolKind::Function,
                        visibility: Visibility::Public,
                        signature: Some(format!("event {}", name.name)),
                        brief,
                        docstring,
                        line_start,
                        line_end,
                        col_start,
                        col_end,
                        parent_id: Some(contract_id.to_string()),
                        source: extract_source(source, line_start, line_end),
                    });
                }
            }

            ContractPart::StructDefinition(def) => {
                if let Some(ref name) = def.name {
                    let (line_start, line_end, col_start, col_end) = loc_to_lines(&def.loc, source);
                    let docstring = find_doc_comment(doc_comments, line_start);
                    let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                    symbols.push(Symbol {
                        id: Symbol::make_id(file_path, &name.name, Some(contract_name)),
                        file_path: file_path.to_string(),
                        name: name.name.clone(),
                        qualified_name: Some(format!("{}.{}", contract_name, name.name)),
                        kind: SymbolKind::Struct,
                        visibility: Visibility::Public,
                        signature: Some(format!("struct {}", name.name)),
                        brief,
                        docstring,
                        line_start,
                        line_end,
                        col_start,
                        col_end,
                        parent_id: Some(contract_id.to_string()),
                        source: extract_source(source, line_start, line_end),
                    });
                }
            }

            ContractPart::EnumDefinition(def) => {
                if let Some(ref name) = def.name {
                    let (line_start, line_end, col_start, col_end) = loc_to_lines(&def.loc, source);
                    let docstring = find_doc_comment(doc_comments, line_start);
                    let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                    symbols.push(Symbol {
                        id: Symbol::make_id(file_path, &name.name, Some(contract_name)),
                        file_path: file_path.to_string(),
                        name: name.name.clone(),
                        qualified_name: Some(format!("{}.{}", contract_name, name.name)),
                        kind: SymbolKind::Enum,
                        visibility: Visibility::Public,
                        signature: Some(format!("enum {}", name.name)),
                        brief,
                        docstring,
                        line_start,
                        line_end,
                        col_start,
                        col_end,
                        parent_id: Some(contract_id.to_string()),
                        source: extract_source(source, line_start, line_end),
                    });
                }
            }

            ContractPart::ErrorDefinition(def) => {
                if let Some(ref name) = def.name {
                    let (line_start, line_end, col_start, col_end) = loc_to_lines(&def.loc, source);
                    let docstring = find_doc_comment(doc_comments, line_start);
                    let brief = docstring.as_ref().and_then(|d| extract_brief(d));

                    symbols.push(Symbol {
                        id: Symbol::make_id(file_path, &name.name, Some(contract_name)),
                        file_path: file_path.to_string(),
                        name: name.name.clone(),
                        qualified_name: Some(format!("{}.{}", contract_name, name.name)),
                        kind: SymbolKind::Type,
                        visibility: Visibility::Public,
                        signature: Some(format!("error {}", name.name)),
                        brief,
                        docstring,
                        line_start,
                        line_end,
                        col_start,
                        col_end,
                        parent_id: Some(contract_id.to_string()),
                        source: extract_source(source, line_start, line_end),
                    });
                }
            }

            ContractPart::Using(using) => {
                // Create an edge for using-for directives
                if let Some(ref ty) = using.ty {
                    let type_name = format_type(ty);
                    edges.push(Edge {
                        source_id: contract_id.to_string(),
                        target_id: None,
                        target_name: type_name,
                        kind: EdgeKind::Uses,
                        line: None,
                        col: None,
                        context: None,
                    });
                }
            }

            _ => {}
        }
    }
}

/// Extract a function definition.
fn extract_function(
    func: &pt::FunctionDefinition,
    file_path: &str,
    source: &str,
    parent_name: Option<&str>,
    parent_id: Option<&str>,
    doc_comments: &[(u32, String)],
) -> Option<Symbol> {
    let (line_start, line_end, col_start, col_end) = loc_to_lines(&func.loc, source);
    let docstring = find_doc_comment(doc_comments, line_start);
    let brief = docstring.as_ref().and_then(|d| extract_brief(d));

    // Get function name (constructors/fallback/receive may not have a name)
    let name = match &func.ty {
        FunctionTy::Constructor => "constructor".to_string(),
        FunctionTy::Fallback => "fallback".to_string(),
        FunctionTy::Receive => "receive".to_string(),
        FunctionTy::Function | FunctionTy::Modifier => func.name.as_ref()?.name.clone(),
    };

    let kind = match &func.ty {
        FunctionTy::Modifier => SymbolKind::Function, // Could use a Modifier kind
        _ => SymbolKind::Function,
    };

    let visibility = extract_function_visibility(&func.attributes);
    let signature = build_function_signature(func, source);

    let qualified_name = parent_name.map(|p| format!("{}.{}", p, name));

    Some(Symbol {
        id: Symbol::make_id(file_path, &name, parent_name),
        file_path: file_path.to_string(),
        name,
        qualified_name,
        kind,
        visibility,
        signature,
        brief,
        docstring,
        line_start,
        line_end,
        col_start,
        col_end,
        parent_id: parent_id.map(String::from),
        source: extract_source(source, line_start, line_end),
    })
}

/// Extract import information.
fn extract_import(import: &pt::Import) -> Option<ImportInfo> {
    match import {
        pt::Import::Plain(path, _) => Some(ImportInfo {
            from: path_to_string(path),
            names: Vec::new(),
            alias: None,
        }),
        pt::Import::GlobalSymbol(path, alias, _) => Some(ImportInfo {
            from: path_to_string(path),
            names: Vec::new(),
            alias: Some(alias.name.clone()),
        }),
        pt::Import::Rename(path, renames, _) => Some(ImportInfo {
            from: path_to_string(path),
            names: renames.iter().map(|(id, _)| id.name.clone()).collect(),
            alias: None,
        }),
    }
}

/// Convert import path to string.
fn path_to_string(path: &pt::ImportPath) -> String {
    match path {
        pt::ImportPath::Filename(lit) => lit.string.clone(),
        pt::ImportPath::Path(ident_path) => ident_path
            .identifiers
            .iter()
            .map(|id| id.name.as_str())
            .collect::<Vec<_>>()
            .join("."),
    }
}

/// Extract function visibility from attributes.
fn extract_function_visibility(attrs: &[FunctionAttribute]) -> Visibility {
    for attr in attrs {
        if let FunctionAttribute::Visibility(vis) = attr {
            match vis {
                SolVisibility::Public(_) | SolVisibility::External(_) => {
                    return Visibility::Public;
                }
                SolVisibility::Internal(_) => return Visibility::Crate,
                SolVisibility::Private(_) => return Visibility::Private,
            }
        }
    }
    // Default visibility in Solidity is internal for state variables,
    // but functions without visibility are a compiler error in recent versions
    Visibility::Private
}

/// Extract variable visibility from attributes.
fn extract_variable_visibility(attrs: &[VariableAttribute]) -> Visibility {
    for attr in attrs {
        if let VariableAttribute::Visibility(vis) = attr {
            match vis {
                SolVisibility::Public(_) | SolVisibility::External(_) => {
                    return Visibility::Public;
                }
                SolVisibility::Internal(_) => return Visibility::Crate,
                SolVisibility::Private(_) => return Visibility::Private,
            }
        }
    }
    // Default visibility for state variables is internal
    Visibility::Crate
}

/// Build a function signature string.
fn build_function_signature(func: &pt::FunctionDefinition, source: &str) -> Option<String> {
    // Get the source text up to the function body
    let (start_line, _, _, _) = loc_to_lines(&func.loc, source);
    let lines: Vec<&str> = source.lines().collect();

    if start_line == 0 || start_line as usize > lines.len() {
        return None;
    }

    // Find the signature (up to the first '{' or ';')
    let mut sig_lines = Vec::new();
    for line in lines.iter().skip(start_line as usize - 1) {
        if let Some(idx) = line.find('{') {
            sig_lines.push(line[..idx].trim());
            break;
        } else if line.trim().ends_with(';') {
            sig_lines.push(line.trim().trim_end_matches(';'));
            break;
        } else {
            sig_lines.push(line.trim());
        }
    }

    let sig = sig_lines.join(" ");
    if sig.is_empty() {
        None
    } else {
        Some(sig)
    }
}

/// Format a type expression to a string.
fn format_type(ty: &Expression) -> String {
    match ty {
        Expression::Type(_, ty) => format_type_inner(ty),
        Expression::Variable(id) => id.name.clone(),
        Expression::MemberAccess(_, expr, member) => {
            format!("{}.{}", format_type(expr), member.name)
        }
        Expression::ArraySubscript(_, expr, size) => {
            let base = format_type(expr);
            match size {
                Some(s) => format!("{}[{}]", base, format_type(s)),
                None => format!("{}[]", base),
            }
        }
        _ => "unknown".to_string(),
    }
}

fn format_type_inner(ty: &pt::Type) -> String {
    match ty {
        pt::Type::Address => "address".to_string(),
        pt::Type::AddressPayable => "address payable".to_string(),
        pt::Type::Payable => "payable".to_string(),
        pt::Type::Bool => "bool".to_string(),
        pt::Type::String => "string".to_string(),
        pt::Type::Bytes(n) => format!("bytes{}", n),
        pt::Type::DynamicBytes => "bytes".to_string(),
        pt::Type::Int(n) => format!("int{}", n),
        pt::Type::Uint(n) => format!("uint{}", n),
        pt::Type::Rational => "rational".to_string(),
        pt::Type::Mapping { key, value, .. } => {
            format!("mapping({} => {})", format_type(key), format_type(value))
        }
        pt::Type::Function { .. } => "function".to_string(),
    }
}

/// Convert a Loc to line/column numbers (1-indexed lines, 0-indexed columns).
fn loc_to_lines(loc: &Loc, source: &str) -> (u32, u32, u32, u32) {
    match loc {
        Loc::File(_, start, end) => {
            let (start_line, start_col) = offset_to_line_col(source, *start);
            let (end_line, end_col) = offset_to_line_col(source, *end);
            (start_line, end_line, start_col, end_col)
        }
        _ => (1, 1, 0, 0),
    }
}

/// Convert byte offset to line and column.
fn offset_to_line_col(source: &str, offset: usize) -> (u32, u32) {
    let mut line = 1u32;
    let mut col = 0u32;
    for (i, ch) in source.char_indices() {
        if i >= offset {
            break;
        }
        if ch == '\n' {
            line += 1;
            col = 0;
        } else {
            col += 1;
        }
    }
    (line, col)
}

/// Extract source code for a range of lines.
fn extract_source(source: &str, start_line: u32, end_line: u32) -> Option<String> {
    let lines: Vec<&str> = source.lines().collect();
    if start_line == 0 || end_line == 0 {
        return None;
    }
    let start = (start_line as usize).saturating_sub(1);
    let end = (end_line as usize).min(lines.len());
    if start >= lines.len() {
        return None;
    }
    Some(lines[start..end].join("\n"))
}

/// Extract the main contract name from source (simple heuristic).
fn extract_contract_name(source: &str) -> Option<String> {
    for line in source.lines() {
        let trimmed = line.trim();
        for keyword in &["contract ", "interface ", "library "] {
            if let Some(rest) = trimmed.strip_prefix(keyword) {
                let name = rest
                    .split(|c: char| !c.is_alphanumeric() && c != '_')
                    .next()
                    .filter(|s| !s.is_empty());
                if let Some(name) = name {
                    return Some(name.to_string());
                }
            }
        }
    }
    None
}

/// Extract doc comments from the comment list.
/// Returns a list of (end_line, comment_text) for NatSpec comments.
fn extract_doc_comments(comments: &[pt::Comment], source: &str) -> Vec<(u32, String)> {
    let mut result = Vec::new();

    for comment in comments {
        match comment {
            pt::Comment::DocLine(loc, text) => {
                let (_, end_line, _, _) = loc_to_lines(loc, source);
                // Strip the leading "///" and trim
                let content = text.trim_start_matches("///").trim();
                result.push((end_line, content.to_string()));
            }
            pt::Comment::DocBlock(loc, text) => {
                let (_, end_line, _, _) = loc_to_lines(loc, source);
                // Parse the block comment
                let content = parse_doc_block(text);
                result.push((end_line, content));
            }
            _ => {}
        }
    }

    result
}

/// Parse a doc block comment (/** ... */).
fn parse_doc_block(text: &str) -> String {
    text.trim_start_matches("/**")
        .trim_end_matches("*/")
        .lines()
        .map(|l| l.trim().trim_start_matches('*').trim())
        .filter(|l| !l.is_empty())
        .collect::<Vec<_>>()
        .join("\n")
}

/// Find doc comment that ends just before the given line.
fn find_doc_comment(comments: &[(u32, String)], target_line: u32) -> Option<String> {
    // Look for comments that end on the line just before target_line
    // or on the same line (for inline comments)
    let mut best: Option<&(u32, String)> = None;

    for comment in comments {
        // Comment should end on line before or same line
        if comment.0 < target_line && comment.0 >= target_line.saturating_sub(3) {
            match best {
                None => best = Some(comment),
                Some(b) if comment.0 > b.0 => best = Some(comment),
                _ => {}
            }
        }
    }

    // Collect consecutive doc comments
    if let Some((end_line, _)) = best {
        let mut doc_lines: Vec<&str> = Vec::new();
        for comment in comments {
            // Collect all comments that are close to each other leading up to end_line
            if comment.0 <= *end_line && comment.0 >= end_line.saturating_sub(10) {
                doc_lines.push(&comment.1);
            }
        }
        if !doc_lines.is_empty() {
            return Some(doc_lines.join("\n"));
        }
    }

    None
}

/// Extract function call edges by re-parsing and walking the AST.
fn extract_call_edges(file_path: &str, source: &str, symbols: &[Symbol], edges: &mut Vec<Edge>) {
    // Build a map of function line ranges to their IDs
    let func_ranges: Vec<_> = symbols
        .iter()
        .filter(|s| s.kind == SymbolKind::Function)
        .map(|s| (s.line_start, s.line_end, s.id.clone()))
        .collect();

    // Re-parse to walk expressions
    // NOTE: This currently only extracts calls from within contract definitions.
    // Free functions (functions defined at file scope, outside contracts) are not
    // visited for call extraction. This is a known limitation - free function calls
    // won't appear in the call graph. To fix, we'd need to also handle
    // SourceUnitPart::FunctionDefinition for top-level functions.
    if let Ok((tree, _)) = solang_parser::parse(source, 0) {
        for part in &tree.0 {
            match part {
                SourceUnitPart::ContractDefinition(def) => {
                    for cpart in &def.parts {
                        if let ContractPart::FunctionDefinition(func) = cpart {
                            if let Some(ref body) = func.body {
                                extract_calls_from_statement(
                                    body,
                                    file_path,
                                    source,
                                    &func_ranges,
                                    symbols,
                                    edges,
                                );
                            }
                        }
                    }
                }
                SourceUnitPart::FunctionDefinition(func) => {
                    // Handle free functions (top-level functions outside contracts)
                    if let Some(ref body) = func.body {
                        extract_calls_from_statement(
                            body,
                            file_path,
                            source,
                            &func_ranges,
                            symbols,
                            edges,
                        );
                    }
                }
                _ => {}
            }
        }
    }
}

/// Extract calls from a list of statements.
fn extract_calls_from_statements(
    statements: &[pt::Statement],
    file_path: &str,
    source: &str,
    func_ranges: &[(u32, u32, String)],
    symbols: &[Symbol],
    edges: &mut Vec<Edge>,
) {
    for stmt in statements {
        extract_calls_from_statement(stmt, file_path, source, func_ranges, symbols, edges);
    }
}

/// Extract calls from a single statement.
fn extract_calls_from_statement(
    stmt: &pt::Statement,
    file_path: &str,
    source: &str,
    func_ranges: &[(u32, u32, String)],
    symbols: &[Symbol],
    edges: &mut Vec<Edge>,
) {
    match stmt {
        pt::Statement::Expression(_, expr) => {
            extract_calls_from_expr(expr, file_path, source, func_ranges, symbols, edges);
        }
        pt::Statement::VariableDefinition(_, _, Some(expr)) => {
            extract_calls_from_expr(expr, file_path, source, func_ranges, symbols, edges);
        }
        pt::Statement::If(_, cond, then_stmt, else_stmt) => {
            extract_calls_from_expr(cond, file_path, source, func_ranges, symbols, edges);
            extract_calls_from_statement(then_stmt, file_path, source, func_ranges, symbols, edges);
            if let Some(else_s) = else_stmt {
                extract_calls_from_statement(
                    else_s,
                    file_path,
                    source,
                    func_ranges,
                    symbols,
                    edges,
                );
            }
        }
        pt::Statement::While(_, cond, body) => {
            extract_calls_from_expr(cond, file_path, source, func_ranges, symbols, edges);
            extract_calls_from_statement(body, file_path, source, func_ranges, symbols, edges);
        }
        pt::Statement::For(_, init, cond, update, body) => {
            if let Some(init_stmt) = init {
                extract_calls_from_statement(
                    init_stmt,
                    file_path,
                    source,
                    func_ranges,
                    symbols,
                    edges,
                );
            }
            if let Some(cond_expr) = cond {
                extract_calls_from_expr(cond_expr, file_path, source, func_ranges, symbols, edges);
            }
            if let Some(update_expr) = update {
                extract_calls_from_expr(
                    update_expr,
                    file_path,
                    source,
                    func_ranges,
                    symbols,
                    edges,
                );
            }
            if let Some(body_stmt) = body {
                extract_calls_from_statement(
                    body_stmt,
                    file_path,
                    source,
                    func_ranges,
                    symbols,
                    edges,
                );
            }
        }
        pt::Statement::DoWhile(_, body, cond) => {
            extract_calls_from_statement(body, file_path, source, func_ranges, symbols, edges);
            extract_calls_from_expr(cond, file_path, source, func_ranges, symbols, edges);
        }
        pt::Statement::Block { statements, .. } => {
            extract_calls_from_statements(
                statements,
                file_path,
                source,
                func_ranges,
                symbols,
                edges,
            );
        }
        pt::Statement::Return(_, Some(expr)) => {
            extract_calls_from_expr(expr, file_path, source, func_ranges, symbols, edges);
        }
        pt::Statement::Emit(_, expr) => {
            extract_calls_from_expr(expr, file_path, source, func_ranges, symbols, edges);
        }
        pt::Statement::Try(_, expr, _, catch_clauses) => {
            extract_calls_from_expr(expr, file_path, source, func_ranges, symbols, edges);
            for clause in catch_clauses {
                match clause {
                    pt::CatchClause::Simple(_, _, stmt) => {
                        extract_calls_from_statement(
                            stmt,
                            file_path,
                            source,
                            func_ranges,
                            symbols,
                            edges,
                        );
                    }
                    pt::CatchClause::Named(_, _, _, stmt) => {
                        extract_calls_from_statement(
                            stmt,
                            file_path,
                            source,
                            func_ranges,
                            symbols,
                            edges,
                        );
                    }
                }
            }
        }
        _ => {}
    }
}

/// Extract calls from an expression.
#[allow(clippy::too_many_arguments)]
#[allow(clippy::only_used_in_recursion)]
fn extract_calls_from_expr(
    expr: &Expression,
    file_path: &str,
    source: &str,
    func_ranges: &[(u32, u32, String)],
    symbols: &[Symbol],
    edges: &mut Vec<Edge>,
) {
    match expr {
        Expression::FunctionCall(loc, func_expr, _args) => {
            let (line, _, col, _) = loc_to_lines(loc, source);

            // Get the function name
            let func_name = match func_expr.as_ref() {
                Expression::Variable(id) => Some(id.name.clone()),
                Expression::MemberAccess(_, _, member) => Some(member.name.clone()),
                _ => None,
            };

            if let Some(name) = func_name {
                // Find which function this call is in
                let source_id = func_ranges
                    .iter()
                    .find(|(start, end, _)| line >= *start && line <= *end)
                    .map(|(_, _, id)| id.clone());

                if let Some(source_id) = source_id {
                    // Try to resolve target
                    let target_id = symbols
                        .iter()
                        .find(|s| s.name == name && s.kind == SymbolKind::Function)
                        .map(|s| s.id.clone());

                    edges.push(Edge {
                        source_id,
                        target_id,
                        target_name: name,
                        kind: EdgeKind::Calls,
                        line: Some(line),
                        col: Some(col),
                        context: None,
                    });
                }
            }

            // Recurse into arguments
            for arg in _args {
                extract_calls_from_expr(arg, file_path, source, func_ranges, symbols, edges);
            }
        }

        Expression::FunctionCallBlock(loc, func_expr, _) => {
            // Handle block-style function calls (used with modifiers)
            let (line, _, col, _) = loc_to_lines(loc, source);
            if let Expression::Variable(id) = func_expr.as_ref() {
                let source_id = func_ranges
                    .iter()
                    .find(|(start, end, _)| line >= *start && line <= *end)
                    .map(|(_, _, id)| id.clone());

                if let Some(source_id) = source_id {
                    let target_id = symbols
                        .iter()
                        .find(|s| s.name == id.name && s.kind == SymbolKind::Function)
                        .map(|s| s.id.clone());

                    edges.push(Edge {
                        source_id,
                        target_id,
                        target_name: id.name.clone(),
                        kind: EdgeKind::Calls,
                        line: Some(line),
                        col: Some(col),
                        context: None,
                    });
                }
            }
        }

        // Recurse into sub-expressions
        Expression::Add(_, l, r)
        | Expression::Subtract(_, l, r)
        | Expression::Multiply(_, l, r)
        | Expression::Divide(_, l, r)
        | Expression::Modulo(_, l, r)
        | Expression::Power(_, l, r)
        | Expression::BitwiseOr(_, l, r)
        | Expression::BitwiseAnd(_, l, r)
        | Expression::BitwiseXor(_, l, r)
        | Expression::ShiftLeft(_, l, r)
        | Expression::ShiftRight(_, l, r)
        | Expression::And(_, l, r)
        | Expression::Or(_, l, r)
        | Expression::Equal(_, l, r)
        | Expression::NotEqual(_, l, r)
        | Expression::Less(_, l, r)
        | Expression::More(_, l, r)
        | Expression::LessEqual(_, l, r)
        | Expression::MoreEqual(_, l, r)
        | Expression::Assign(_, l, r)
        | Expression::AssignAdd(_, l, r)
        | Expression::AssignSubtract(_, l, r)
        | Expression::AssignMultiply(_, l, r)
        | Expression::AssignDivide(_, l, r)
        | Expression::AssignModulo(_, l, r)
        | Expression::AssignOr(_, l, r)
        | Expression::AssignAnd(_, l, r)
        | Expression::AssignXor(_, l, r)
        | Expression::AssignShiftLeft(_, l, r)
        | Expression::AssignShiftRight(_, l, r) => {
            extract_calls_from_expr(l, file_path, source, func_ranges, symbols, edges);
            extract_calls_from_expr(r, file_path, source, func_ranges, symbols, edges);
        }

        Expression::Not(_, e)
        | Expression::BitwiseNot(_, e)
        | Expression::Negate(_, e)
        | Expression::UnaryPlus(_, e)
        | Expression::PreIncrement(_, e)
        | Expression::PreDecrement(_, e)
        | Expression::PostIncrement(_, e)
        | Expression::PostDecrement(_, e)
        | Expression::Parenthesis(_, e) => {
            extract_calls_from_expr(e, file_path, source, func_ranges, symbols, edges);
        }

        Expression::ConditionalOperator(_, cond, then_e, else_e) => {
            extract_calls_from_expr(cond, file_path, source, func_ranges, symbols, edges);
            extract_calls_from_expr(then_e, file_path, source, func_ranges, symbols, edges);
            extract_calls_from_expr(else_e, file_path, source, func_ranges, symbols, edges);
        }

        Expression::ArraySubscript(_, arr, idx) => {
            extract_calls_from_expr(arr, file_path, source, func_ranges, symbols, edges);
            if let Some(i) = idx {
                extract_calls_from_expr(i, file_path, source, func_ranges, symbols, edges);
            }
        }

        Expression::ArraySlice(_, arr, start, end) => {
            extract_calls_from_expr(arr, file_path, source, func_ranges, symbols, edges);
            if let Some(s) = start {
                extract_calls_from_expr(s, file_path, source, func_ranges, symbols, edges);
            }
            if let Some(e) = end {
                extract_calls_from_expr(e, file_path, source, func_ranges, symbols, edges);
            }
        }

        Expression::MemberAccess(_, e, _) => {
            extract_calls_from_expr(e, file_path, source, func_ranges, symbols, edges);
        }

        Expression::New(_, e) => {
            extract_calls_from_expr(e, file_path, source, func_ranges, symbols, edges);
        }

        Expression::List(_, exprs) => {
            for e in exprs {
                if let (_, Some(param)) = e {
                    if let Some(ref init) = param.name {
                        // This is a named parameter with potential expression
                        let _ = init; // Just for clarity - the name itself doesn't contain calls
                    }
                }
            }
        }

        Expression::ArrayLiteral(_, exprs) => {
            for e in exprs {
                extract_calls_from_expr(e, file_path, source, func_ranges, symbols, edges);
            }
        }

        _ => {}
    }
}

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

    #[test]
    fn test_parse_simple_contract() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/// @title A simple token contract
/// @notice This contract implements a basic token
contract SimpleToken {
    string public name;
    uint256 public totalSupply;

    /// @notice Transfer tokens to a recipient
    /// @param to The recipient address
    /// @param amount The amount to transfer
    function transfer(address to, uint256 amount) public returns (bool) {
        return true;
    }
}
"#;

        let result = parser.parse("Token.sol", source).unwrap();

        assert_eq!(result.language, "solidity");

        // Should have contract + state vars + function
        assert!(result.symbols.len() >= 3);

        let contract = result.symbols.iter().find(|s| s.name == "SimpleToken");
        assert!(contract.is_some());
        assert_eq!(contract.unwrap().kind, SymbolKind::Class);

        let transfer = result.symbols.iter().find(|s| s.name == "transfer");
        assert!(transfer.is_some());
        assert_eq!(transfer.unwrap().kind, SymbolKind::Function);
        assert_eq!(transfer.unwrap().visibility, Visibility::Public);
    }

    #[test]
    fn test_parse_interface() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IERC20 {
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, uint256 amount) external returns (bool);
}
"#;

        let result = parser.parse("IERC20.sol", source).unwrap();

        let interface = result.symbols.iter().find(|s| s.name == "IERC20");
        assert!(interface.is_some());
        assert_eq!(interface.unwrap().kind, SymbolKind::Interface);

        // Should have interface + 3 functions
        let functions: Vec<_> = result
            .symbols
            .iter()
            .filter(|s| s.kind == SymbolKind::Function)
            .collect();
        assert_eq!(functions.len(), 3);
    }

    #[test]
    fn test_parse_struct_and_enum() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Test {
    struct User {
        address addr;
        uint256 balance;
    }

    enum Status {
        Pending,
        Active,
        Completed
    }
}
"#;

        let result = parser.parse("Test.sol", source).unwrap();

        let user_struct = result.symbols.iter().find(|s| s.name == "User");
        assert!(user_struct.is_some());
        assert_eq!(user_struct.unwrap().kind, SymbolKind::Struct);

        let status_enum = result.symbols.iter().find(|s| s.name == "Status");
        assert!(status_enum.is_some());
        assert_eq!(status_enum.unwrap().kind, SymbolKind::Enum);
    }

    #[test]
    fn test_parse_events_and_errors() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Test {
    event Transfer(address indexed from, address indexed to, uint256 value);
    error InsufficientBalance(uint256 available, uint256 required);
}
"#;

        let result = parser.parse("Test.sol", source).unwrap();

        let transfer = result.symbols.iter().find(|s| s.name == "Transfer");
        assert!(transfer.is_some());

        let error = result
            .symbols
            .iter()
            .find(|s| s.name == "InsufficientBalance");
        assert!(error.is_some());
        assert_eq!(error.unwrap().kind, SymbolKind::Type);
    }

    #[test]
    fn test_parse_constructor_and_modifiers() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Ownable {
    address public owner;

    constructor() {
        owner = msg.sender;
    }

    modifier onlyOwner() {
        require(msg.sender == owner, "Not owner");
        _;
    }

    function transferOwnership(address newOwner) public onlyOwner {
        owner = newOwner;
    }
}
"#;

        let result = parser.parse("Ownable.sol", source).unwrap();

        let constructor = result.symbols.iter().find(|s| s.name == "constructor");
        assert!(constructor.is_some());

        let modifier = result.symbols.iter().find(|s| s.name == "onlyOwner");
        assert!(modifier.is_some());
    }

    #[test]
    fn test_parse_imports() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

contract MyToken is IERC20 {}
"#;

        let result = parser.parse("MyToken.sol", source).unwrap();

        assert!(result.module.is_some());
        let module = result.module.unwrap();
        assert_eq!(module.imports.len(), 2);
        assert_eq!(module.imports[0].from, "./IERC20.sol");
    }

    #[test]
    fn test_parse_library() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
}
"#;

        let result = parser.parse("SafeMath.sol", source).unwrap();

        let library = result.symbols.iter().find(|s| s.name == "SafeMath");
        assert!(library.is_some());
        assert_eq!(library.unwrap().kind, SymbolKind::Module);
    }

    #[test]
    fn test_function_calls_extracted() {
        let mut parser = SolidityParser::new();
        let source = r#"
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract Test {
    function helper() internal pure returns (uint256) {
        return 42;
    }

    function main() public pure returns (uint256) {
        return helper();
    }
}
"#;

        let result = parser.parse("Test.sol", source).unwrap();

        // Should have edges for the call from main to helper
        assert!(!result.edges.is_empty());
        let call = result.edges.iter().find(|e| e.target_name == "helper");
        assert!(call.is_some());
        assert_eq!(call.unwrap().kind, EdgeKind::Calls);
    }
}