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
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
use std::{
    collections::{BTreeSet, HashMap, HashSet},
    fs,
    path::Path,
};

use anyhow::Context;
use dprint_plugin_typescript::{
    FormatTextOptions,
    configuration::{ConfigurationBuilder, TrailingCommas},
};

#[path = "typegen_typescript.rs"]
mod typegen_typescript;

use crate::{
    codegen_types::{TypegenCatalog, TypegenConstValue},
    graph::{EndpointRequirement, GraphSchemaCatalog},
    operation_index::{
        collect_ts_binding_files, extract_exported_object_type_body, parse_object_type_fields,
    },
    typegen_typescript::TypeExportRegistration,
    wire::MessageEventRegistration,
};

fn ts_literal<T: serde::Serialize + ?Sized>(value: &T) -> String {
    serde_json::to_string(value)
        .unwrap_or_else(|error| format!("\"<serialization error: {error}>\""))
}

fn endpoint_address_type(requirement: EndpointRequirement, qualified: bool) -> String {
    let entity = match requirement {
        EndpointRequirement::Concrete(entity_type) => format!("__MykoGraph{entity_type}Id"),
        EndpointRequirement::OneOf(_)
        | EndpointRequirement::Category(_)
        | EndpointRequirement::AnyRegisteredItem => "__MykoGraphEntityRef".to_string(),
    };
    if qualified {
        format!("{{ entity: {entity}; qualifier: unknown }}")
    } else {
        entity
    }
}

fn endpoint_requirement_literal(requirement: EndpointRequirement) -> String {
    match requirement {
        EndpointRequirement::Concrete(entity_type) => format!(
            "{{ kind: \"concrete\", entityType: {} }}",
            ts_literal(entity_type)
        ),
        EndpointRequirement::OneOf(entity_types) => format!(
            "{{ kind: \"oneOf\", entityTypes: {} }}",
            ts_literal(entity_types)
        ),
        EndpointRequirement::Category(category) => format!(
            "{{ kind: \"category\", category: {} }}",
            ts_literal(category)
        ),
        EndpointRequirement::AnyRegisteredItem => "{ kind: \"anyRegisteredItem\" }".to_string(),
    }
}

fn graph_related_query_class(
    edge: &str,
    suffix: &str,
    entity_type: &str,
    address_position: char,
) -> String {
    format!(
        r#"export class {edge}Graph{suffix} {{
  static readonly queryId = "{edge}Graph{suffix}" as const;
  static readonly queryItemType = "{entity_type}" as const;
  readonly queryId = "{edge}Graph{suffix}" as const;
  readonly queryItemType = "{entity_type}" as const;
  readonly query: {{ endpoint: {edge}{address_position}Address }};
  declare readonly $res: () => __MykoGraph{entity_type}[];
  constructor(endpoint: {edge}{address_position}Address) {{ this.query = {{ endpoint }}; }}
}}"#,
    )
}

fn graph_related_many_query_class(
    edge: &str,
    suffix: &str,
    entity_type: &str,
    address_position: char,
) -> String {
    format!(
        r#"export class {edge}Graph{suffix}Many {{
  static readonly queryId = "{edge}Graph{suffix}Many" as const;
  static readonly queryItemType = "{entity_type}" as const;
  readonly queryId = "{edge}Graph{suffix}Many" as const;
  readonly queryItemType = "{entity_type}" as const;
  readonly query: {{ endpoints: {edge}{address_position}Address[] }};
  declare readonly $res: () => __MykoGraph{entity_type}[];
  constructor(endpoints: {edge}{address_position}Address[]) {{ this.query = {{ endpoints: [...endpoints] }}; }}
}}"#,
    )
}

fn graph_related_query_helper(
    edge: &str,
    helper: &str,
    suffix: &str,
    address_position: char,
) -> String {
    format!(
        "  {helper}: (endpoint: {edge}{address_position}Address) => new {edge}Graph{suffix}(endpoint),\n"
    )
}

fn graph_related_many_query_helper(
    edge: &str,
    helper: &str,
    suffix: &str,
    address_position: char,
) -> String {
    format!(
        "  {helper}Many: (endpoints: {edge}{address_position}Address[]) => new {edge}Graph{suffix}Many(endpoints),\n"
    )
}

#[allow(clippy::too_many_lines)]
fn generate_graph_query_helpers(edge: &crate::graph::EdgeRegistration) -> String {
    let a = &edge.endpoints[0];
    let b = &edge.endpoints[1];
    let a_type = endpoint_address_type((a.requirement)(), (a.qualifier_type)().is_some());
    let b_type = endpoint_address_type((b.requirement)(), (b.qualifier_type)().is_some());
    let scope_type = (edge.scope_type)().map_or_else(
        || "never".to_string(),
        |entity_type| format!("__MykoGraph{entity_type}Id"),
    );
    let (sync_from_helper, sync_to_helper) = if (edge.scope_type)().is_some() {
        (
            format!(
                "  syncFrom: (endpoint: {}AAddress, scope: {scope_type}, edges: {}[]) => new Sync{}sFrom({{ endpoint, scope, edges }}),\n",
                edge.edge_type, edge.edge_type, edge.edge_type
            ),
            format!(
                "  syncTo: (endpoint: {}BAddress, scope: {scope_type}, edges: {}[]) => new Sync{}sTo({{ endpoint, scope, edges }}),\n",
                edge.edge_type, edge.edge_type, edge.edge_type
            ),
        )
    } else {
        (
            format!(
                "  syncFrom: (endpoint: {}AAddress, edges: {}[]) => new Sync{}sFrom({{ endpoint, scope: null, edges }}),\n",
                edge.edge_type, edge.edge_type, edge.edge_type
            ),
            format!(
                "  syncTo: (endpoint: {}BAddress, edges: {}[]) => new Sync{}sTo({{ endpoint, scope: null, edges }}),\n",
                edge.edge_type, edge.edge_type, edge.edge_type
            ),
        )
    };
    let related_queries = edge.related_queries();
    let targets_from = match (related_queries.targets_from, (b.requirement)()) {
        (true, EndpointRequirement::Concrete(entity_type)) => {
            format!(
                "{}\n{}",
                graph_related_query_class(edge.edge_type, "TargetsFrom", entity_type, 'A'),
                graph_related_many_query_class(edge.edge_type, "TargetsFrom", entity_type, 'A')
            )
        }
        _ => String::new(),
    };
    let sources_to = match (related_queries.sources_to, (a.requirement)()) {
        (true, EndpointRequirement::Concrete(entity_type)) => {
            format!(
                "{}\n{}",
                graph_related_query_class(edge.edge_type, "SourcesTo", entity_type, 'B'),
                graph_related_many_query_class(edge.edge_type, "SourcesTo", entity_type, 'B')
            )
        }
        _ => String::new(),
    };
    let neighbors = match (edge.has_neighbor_query(), (a.requirement)()) {
        (true, EndpointRequirement::Concrete(entity_type)) => {
            graph_related_query_class(edge.edge_type, "Neighbors", entity_type, 'A')
        }
        _ => String::new(),
    };
    let targets_from_helper = match (related_queries.targets_from, (b.requirement)()) {
        (true, EndpointRequirement::Concrete(_)) => {
            format!(
                "{}{}",
                graph_related_query_helper(edge.edge_type, "targetsFrom", "TargetsFrom", 'A'),
                graph_related_many_query_helper(edge.edge_type, "targetsFrom", "TargetsFrom", 'A')
            )
        }
        _ => String::new(),
    };
    let sources_to_helper = match (related_queries.sources_to, (a.requirement)()) {
        (true, EndpointRequirement::Concrete(_)) => {
            format!(
                "{}{}",
                graph_related_query_helper(edge.edge_type, "sourcesTo", "SourcesTo", 'B'),
                graph_related_many_query_helper(edge.edge_type, "sourcesTo", "SourcesTo", 'B')
            )
        }
        _ => String::new(),
    };
    let neighbors_helper = match (edge.has_neighbor_query(), (a.requirement)()) {
        (true, EndpointRequirement::Concrete(_)) => {
            graph_related_query_helper(edge.edge_type, "neighbors", "Neighbors", 'A')
        }
        _ => String::new(),
    };
    format!(
        r#"export type {edge}AAddress = {a_type};
export type {edge}BAddress = {b_type};
export type {edge}GraphTraversalOptions = {{
  direction?: Direction;
  maxDepth: number;
  maxNodes: number;
  maxEdges?: number;
  includeEdges?: boolean;
  scope?: {scope_type};
}};
export class {edge}GraphFrom {{
  static readonly queryId = "{edge}GraphFrom" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphFrom" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoint: {edge}AAddress }};
  declare readonly $res: () => {edge}[];
  constructor(endpoint: {edge}AAddress) {{ this.query = {{ endpoint }}; }}
}}
export class {edge}GraphFromId {{
  static readonly queryId = "{edge}GraphFromId" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphFromId" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoint: {edge}AAddress; id: __MykoGraph{edge}Id }};
  declare readonly $res: () => {edge}[];
  constructor(endpoint: {edge}AAddress, id: __MykoGraph{edge}Id) {{ this.query = {{ endpoint, id }}; }}
}}
export class {edge}GraphFromIds {{
  static readonly queryId = "{edge}GraphFromIds" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphFromIds" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoint: {edge}AAddress; ids: __MykoGraph{edge}Id[] }};
  declare readonly $res: () => {edge}[];
  constructor(endpoint: {edge}AAddress, ids: __MykoGraph{edge}Id[]) {{ this.query = {{ endpoint, ids: [...new Set(ids)].sort() }}; }}
}}
export class {edge}GraphFromMany {{
  static readonly queryId = "{edge}GraphFromMany" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphFromMany" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoints: {edge}AAddress[] }};
  declare readonly $res: () => {edge}[];
  constructor(endpoints: {edge}AAddress[]) {{ this.query = {{ endpoints: [...endpoints] }}; }}
}}
export class {edge}GraphTo {{
  static readonly queryId = "{edge}GraphTo" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphTo" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoint: {edge}BAddress }};
  declare readonly $res: () => {edge}[];
  constructor(endpoint: {edge}BAddress) {{ this.query = {{ endpoint }}; }}
}}
export class {edge}GraphToId {{
  static readonly queryId = "{edge}GraphToId" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphToId" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoint: {edge}BAddress; id: __MykoGraph{edge}Id }};
  declare readonly $res: () => {edge}[];
  constructor(endpoint: {edge}BAddress, id: __MykoGraph{edge}Id) {{ this.query = {{ endpoint, id }}; }}
}}
export class {edge}GraphToIds {{
  static readonly queryId = "{edge}GraphToIds" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphToIds" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoint: {edge}BAddress; ids: __MykoGraph{edge}Id[] }};
  declare readonly $res: () => {edge}[];
  constructor(endpoint: {edge}BAddress, ids: __MykoGraph{edge}Id[]) {{ this.query = {{ endpoint, ids: [...new Set(ids)].sort() }}; }}
}}
export class {edge}GraphToMany {{
  static readonly queryId = "{edge}GraphToMany" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphToMany" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ endpoints: {edge}BAddress[] }};
  declare readonly $res: () => {edge}[];
  constructor(endpoints: {edge}BAddress[]) {{ this.query = {{ endpoints: [...endpoints] }}; }}
}}
export class {edge}GraphBetween {{
  static readonly queryId = "{edge}GraphBetween" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphBetween" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ a: {edge}AAddress; b: {edge}BAddress }};
  declare readonly $res: () => {edge}[];
  constructor(a: {edge}AAddress, b: {edge}BAddress) {{ this.query = {{ a, b }}; }}
}}
export class {edge}GraphBetweenId {{
  static readonly queryId = "{edge}GraphBetweenId" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphBetweenId" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ a: {edge}AAddress; b: {edge}BAddress; id: __MykoGraph{edge}Id }};
  declare readonly $res: () => {edge}[];
  constructor(a: {edge}AAddress, b: {edge}BAddress, id: __MykoGraph{edge}Id) {{ this.query = {{ a, b, id }}; }}
}}
export class {edge}GraphBetweenIds {{
  static readonly queryId = "{edge}GraphBetweenIds" as const;
  static readonly queryItemType = "{edge}" as const;
  readonly queryId = "{edge}GraphBetweenIds" as const;
  readonly queryItemType = "{edge}" as const;
  readonly query: {{ a: {edge}AAddress; b: {edge}BAddress; ids: __MykoGraph{edge}Id[] }};
  declare readonly $res: () => {edge}[];
  constructor(a: {edge}AAddress, b: {edge}BAddress, ids: __MykoGraph{edge}Id[]) {{ this.query = {{ a, b, ids: [...new Set(ids)].sort() }}; }}
}}
{targets_from}
{sources_to}
{neighbors}
export const {edge}Graph = {{
  $schema: graphSchema.edges[{edge_literal}],
  from: (endpoint: {edge}AAddress) => new {edge}GraphFrom(endpoint),
  fromId: (endpoint: {edge}AAddress, id: __MykoGraph{edge}Id) => new {edge}GraphFromId(endpoint, id),
  fromIds: (endpoint: {edge}AAddress, ids: __MykoGraph{edge}Id[]) => new {edge}GraphFromIds(endpoint, ids),
  fromMany: (endpoints: {edge}AAddress[]) => new {edge}GraphFromMany(endpoints),
  to: (endpoint: {edge}BAddress) => new {edge}GraphTo(endpoint),
  toId: (endpoint: {edge}BAddress, id: __MykoGraph{edge}Id) => new {edge}GraphToId(endpoint, id),
  toIds: (endpoint: {edge}BAddress, ids: __MykoGraph{edge}Id[]) => new {edge}GraphToIds(endpoint, ids),
  toMany: (endpoints: {edge}BAddress[]) => new {edge}GraphToMany(endpoints),
  between: (a: {edge}AAddress, b: {edge}BAddress) => new {edge}GraphBetween(a, b),
  betweenId: (a: {edge}AAddress, b: {edge}BAddress, id: __MykoGraph{edge}Id) => new {edge}GraphBetweenId(a, b, id),
  betweenIds: (a: {edge}AAddress, b: {edge}BAddress, ids: __MykoGraph{edge}Id[]) => new {edge}GraphBetweenIds(a, b, ids),
{targets_from_helper}{sources_to_helper}{neighbors_helper}  countFrom: (endpoint: {edge}AAddress) => new {edge}GraphCountFrom({{ endpoint }}),
  countTo: (endpoint: {edge}BAddress) => new {edge}GraphCountTo({{ endpoint }}),
  countBetween: (a: {edge}AAddress, b: {edge}BAddress) => new {edge}GraphCountBetween({{ a, b }}),
  existsBetween: (a: {edge}AAddress, b: {edge}BAddress) => new {edge}GraphExistsBetween({{ a, b }}),
  traverseFrom: (start: {edge}AAddress, options: {edge}GraphTraversalOptions) => new {edge}GraphTraverseFrom({{
    start,
    direction: options.direction ?? "forward",
    maxDepth: options.maxDepth,
    maxNodes: options.maxNodes,
    maxEdges: options.maxEdges,
    includeEdges: options.includeEdges ?? true,
    scope: options.scope,
  }}),
  traverseTo: (start: {edge}BAddress, options: {edge}GraphTraversalOptions) => new {edge}GraphTraverseTo({{
    start,
    direction: options.direction ?? "reverse",
    maxDepth: options.maxDepth,
    maxNodes: options.maxNodes,
    maxEdges: options.maxEdges,
    includeEdges: options.includeEdges ?? true,
    scope: options.scope,
  }}),
  connect: (edge: {edge}) => new Connect{edge}({{ edge }}),
  connectMany: (edges: {edge}[]) => new Connect{edge}s({{ edges }}),
{sync_from_helper}{sync_to_helper}  ensure: (edge: {edge}) => new Ensure{edge}({{ edge }}),
  disconnect: (id: __MykoGraph{edge}Id) => new Delete{edge}({{ id }}),
  disconnectMany: (ids: __MykoGraph{edge}Id[]) => new Delete{edge}s({{ ids }}),
}} as const;"#,
        edge = edge.edge_type,
        edge_literal = ts_literal(edge.edge_type),
        scope_type = scope_type,
        sync_from_helper = sync_from_helper,
        sync_to_helper = sync_to_helper,
    )
}

fn generate_graph_schema(catalog: &GraphSchemaCatalog) -> String {
    if catalog.entity_categories.is_empty()
        && catalog.item_categories.is_empty()
        && catalog.edges.is_empty()
    {
        return "export const graphSchema = { categories: {}, memberships: [], edges: {} } as const;\nexport type GraphEdgeType = never;".to_string();
    }

    let endpoint_imports = generate_graph_endpoint_imports(catalog);

    let categories = catalog
        .entity_categories
        .iter()
        .map(|category| {
            format!(
                "{}: {{ id: {}, name: {} }}",
                ts_literal(category.name),
                ts_literal(category.id),
                ts_literal(category.name)
            )
        })
        .collect::<Vec<_>>()
        .join(",\n");
    let memberships = catalog
        .item_categories
        .iter()
        .map(|membership| {
            format!(
                "{{ entityType: {}, category: {} }}",
                ts_literal(membership.item_type),
                ts_literal(membership.entity_category_id)
            )
        })
        .collect::<Vec<_>>()
        .join(",\n");
    let edges = catalog
        .edges
        .iter()
        .map(|edge| {
            let a = &edge.endpoints[0];
            let b = &edge.endpoints[1];
            let [a_adjacency, b_adjacency] = edge.endpoint_adjacency();
            format!(
                "{}: {{ shape: {}, pairPolicy: {}, pairProjection: {}, adjacency: {}, aAdjacency: {}, bAdjacency: {}, selfLoops: {}, endpoints: {{ a: {{ requirement: {}, qualifierType: {} }}, b: {{ requirement: {}, qualifierType: {} }} }} }}",
                ts_literal(edge.edge_type),
                ts_literal(&edge.shape),
                ts_literal(&edge.pair_policy),
                ts_literal(&edge.pair_projection),
                ts_literal(&edge.adjacency),
                ts_literal(&a_adjacency),
                ts_literal(&b_adjacency),
                ts_literal(&edge.self_loops),
                endpoint_requirement_literal((a.requirement)()),
                ts_literal(&(a.qualifier_type)()),
                endpoint_requirement_literal((b.requirement)()),
                ts_literal(&(b.qualifier_type)()),
            )
        })
        .collect::<Vec<_>>()
        .join(",\n");
    let helpers = catalog
        .edges
        .iter()
        .map(|edge| generate_graph_query_helpers(edge))
        .collect::<Vec<_>>()
        .join("\n");

    format!(
        "{endpoint_imports}\nexport const graphSchema = {{ categories: {{ {categories} }}, memberships: [{memberships}], edges: {{ {edges} }} }} as const;\nexport type GraphEdgeType = keyof typeof graphSchema.edges;\n{helpers}"
    )
}

fn generate_graph_endpoint_imports(catalog: &GraphSchemaCatalog) -> String {
    let concrete_endpoint_types = catalog
        .edges
        .iter()
        .flat_map(|edge| edge.endpoints.iter())
        .filter_map(|endpoint| match (endpoint.requirement)() {
            EndpointRequirement::Concrete(entity_type) => Some(entity_type),
            EndpointRequirement::OneOf(_)
            | EndpointRequirement::Category(_)
            | EndpointRequirement::AnyRegisteredItem => None,
        })
        .chain(catalog.edges.iter().filter_map(|edge| (edge.scope_type)()))
        .collect::<BTreeSet<_>>();
    let uses_entity_ref = catalog
        .edges
        .iter()
        .flat_map(|edge| edge.endpoints.iter())
        .any(|endpoint| {
            matches!(
                (endpoint.requirement)(),
                EndpointRequirement::OneOf(_)
                    | EndpointRequirement::Category(_)
                    | EndpointRequirement::AnyRegisteredItem
            )
        });
    let mut endpoint_imports = concrete_endpoint_types
        .into_iter()
        .flat_map(|entity_type| {
            [
                format!(
                    "import type {{ {entity_type}Id as __MykoGraph{entity_type}Id }} from \"./{entity_type}Id\";"
                ),
                format!(
                    "import type {{ {entity_type} as __MykoGraph{entity_type} }} from \"./{entity_type}\";"
                ),
            ]
        })
        .collect::<Vec<_>>();
    endpoint_imports.extend(catalog.edges.iter().map(|edge| {
        format!(
            "import type {{ {edge}Id as __MykoGraph{edge}Id }} from \"./{edge}Id\";",
            edge = edge.edge_type,
        )
    }));
    if uses_entity_ref {
        endpoint_imports.push(
            "import type { EntityRef as __MykoGraphEntityRef } from \"./EntityRef\";".to_string(),
        );
    }
    endpoint_imports.join("\n")
}

#[derive(serde::Serialize)]
#[serde(rename_all = "camelCase")]
struct DocEntry {
    entity_type: String,
    kind: String,
    prop_name: String,
    #[serde(rename = "type")]
    entry_type: String,
    prop_type: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    doc_string: Option<String>,
}

fn typescript_adapters_for_catalog<'a>(
    catalog: &TypegenCatalog,
    adapters: impl IntoIterator<Item = &'a TypeExportRegistration>,
) -> Vec<&'a TypeExportRegistration> {
    let type_ids = catalog.type_ids();
    adapters
        .into_iter()
        .filter(|adapter| type_ids.contains(adapter.type_id))
        .collect()
}

/// Export all registered ts-rs types to the bindings directory.
///
/// # Errors
///
/// Returns an error when the requested operation cannot be completed.
fn export_registered_ts_types_for_catalog(catalog: &TypegenCatalog) -> Result<(), anyhow::Error> {
    let mut success_count = 0_u64;
    let mut error_count = 0_u64;

    for registration in
        typescript_adapters_for_catalog(catalog, inventory::iter::<TypeExportRegistration>)
    {
        match (registration.export_fn)() {
            Ok(()) => {
                println!("  Exported: {}", registration.type_name);
                success_count = success_count.saturating_add(1);
            }
            Err(e) => {
                eprintln!("  Failed to export {}: {}", registration.type_name, e);
                error_count = error_count.saturating_add(1);
            }
        }
    }

    println!("ts-rs export complete: {success_count} succeeded, {error_count} failed");

    if error_count > 0 {
        anyhow::bail!("{error_count} ts-rs exports failed");
    }

    Ok(())
}

/// Export the current crate's registered `ts-rs` types.
///
/// # Errors
///
/// Returns an error when the crate name is unavailable or an adapter export fails.
pub fn export_registered_ts_types() -> Result<(), anyhow::Error> {
    let crate_name = std::env::var("CARGO_PKG_NAME")
        .context("CARGO_PKG_NAME environment variable not found")?
        .replace('-', "_");
    export_registered_ts_types_for_catalog(&TypegenCatalog::collect(&crate_name))
}

fn collect_binding_types(directory_path: &str) -> Vec<String> {
    let mut types = Vec::new();

    if let Ok(entries) = fs::read_dir(directory_path) {
        for entry in entries.flatten() {
            let path = entry.path();
            let filename = path.file_name().map(|n| n.to_string_lossy().to_string());
            if path.is_file()
                && path.extension().is_some_and(|e| e == "ts")
                && let Some(ref fname) = filename
                && !fname.ends_with(".d.ts")
                && let Some(name) = path.file_stem()
            {
                let name = name.to_string_lossy().to_string();
                if name != "index" {
                    types.push(name);
                }
            }
        }
    }

    types.sort();
    types
}

fn collect_subdir_types(directory_path: &str) -> Vec<(String, String)> {
    let mut types = Vec::new();

    if let Ok(entries) = fs::read_dir(directory_path) {
        for entry in entries.flatten() {
            let path = entry.path();
            if path.is_dir() {
                let Some(subdir_name) = path
                    .file_name()
                    .map(|name| name.to_string_lossy().to_string())
                else {
                    continue;
                };
                if let Ok(subentries) = fs::read_dir(&path) {
                    for subentry in subentries.flatten() {
                        let subpath = subentry.path();
                        let filename = subpath.file_name().map(|n| n.to_string_lossy().to_string());
                        if subpath.is_file()
                            && subpath.extension().is_some_and(|e| e == "ts")
                            && let Some(ref fname) = filename
                            && !fname.ends_with(".d.ts")
                            && let Some(name) = subpath.file_stem()
                        {
                            let name = name.to_string_lossy().to_string();
                            types.push((subdir_name.clone(), name));
                        }
                    }
                }
            }
        }
    }

    types
}

fn registration_crate_root(path: &str) -> Option<&str> {
    path.split("::").next()
}

fn catalog_crate_roots(catalog: &TypegenCatalog) -> HashSet<&str> {
    catalog
        .types
        .iter()
        .filter_map(|entry| registration_crate_root(entry.crate_path))
        .chain(
            catalog
                .constants
                .iter()
                .filter_map(|entry| registration_crate_root(entry.crate_path)),
        )
        .chain(
            catalog
                .modules
                .iter()
                .filter_map(|entry| registration_crate_root(entry.crate_path)),
        )
        .chain(
            catalog
                .items
                .iter()
                .filter_map(|entry| registration_crate_root(entry.crate_name)),
        )
        .chain(
            catalog
                .queries
                .iter()
                .filter_map(|entry| registration_crate_root(entry.crate_name)),
        )
        .chain(
            catalog
                .views
                .iter()
                .filter_map(|entry| registration_crate_root(entry.crate_name)),
        )
        .chain(
            catalog
                .reports
                .iter()
                .filter_map(|entry| registration_crate_root(entry.crate_name)),
        )
        .chain(
            catalog
                .commands
                .iter()
                .filter_map(|entry| registration_crate_root(entry.crate_name)),
        )
        .collect()
}

fn generate_import_sections(
    directory_path: &str,
    catalog: &TypegenCatalog,
) -> (String, String, String, String) {
    let selected_crates = catalog_crate_roots(catalog);
    let class_type_names: HashSet<&str> = catalog
        .queries
        .iter()
        .map(|query| query.query_id)
        .chain(catalog.views.iter().map(|view| view.view_id))
        .chain(catalog.reports.iter().map(|report| report.report_id))
        .chain(catalog.commands.iter().map(|command| command.command_id))
        .collect();
    let binding_exports = collect_binding_types(directory_path)
        .iter()
        .filter(|name| !class_type_names.contains(name.as_str()))
        .map(|name| format!("export type {{ {name} }} from \"./{name}\";"))
        .collect::<Vec<_>>()
        .join("\n");
    let subdir_exports = collect_subdir_types(directory_path)
        .iter()
        .map(|(subdir, name)| format!("export * from \"./{subdir}/{name}\";"))
        .collect::<Vec<_>>()
        .join("\n");
    let mut entity_types: HashSet<String> = catalog
        .items
        .iter()
        .map(|item| item.entity_type.to_string())
        .chain(
            catalog
                .queries
                .iter()
                .map(|query| query.query_item_type.to_string()),
        )
        .chain(
            catalog
                .views
                .iter()
                .map(|view| view.view_item_type.to_string()),
        )
        .collect();
    for report in catalog.reports.iter().filter(|report| {
        registration_crate_root(report.output_type_crate)
            .is_some_and(|name| selected_crates.contains(name))
    }) {
        entity_types.extend(extract_importable_types(report.output_type));
    }
    for command in catalog.commands.iter().filter(|command| {
        registration_crate_root(command.result_type_crate)
            .is_some_and(|name| selected_crates.contains(name))
            && command.result_type != "()"
    }) {
        entity_types.extend(extract_importable_types(command.result_type));
    }
    let entity_imports = entity_types
        .iter()
        .filter(|name| !class_type_names.contains(name.as_str()))
        .map(|name| {
            let path = if name == "JsonValue" {
                "./serde_json/JsonValue".to_string()
            } else {
                format!("./{name}")
            };
            format!("import type {{ {name} }} from '{path}';")
        })
        .collect::<Vec<_>>()
        .join("\n");
    let aliased_imports = class_type_names
        .iter()
        .map(|name| format!("import type {{ {name} as _{name} }} from './{name}';"))
        .collect::<Vec<_>>()
        .join("\n");
    (
        binding_exports,
        subdir_exports,
        entity_imports,
        aliased_imports,
    )
}

fn generate_class_sections(catalog: &TypegenCatalog) -> [String; 5] {
    let query_classes = catalog
        .queries
        .iter()
        .map(|query| generate_query_class(query.query_id, query.query_item_type))
        .collect::<Vec<_>>()
        .join("\n\n");
    let view_classes = catalog
        .views
        .iter()
        .map(|view| generate_view_class(view.view_id, view.view_item_type))
        .collect::<Vec<_>>()
        .join("\n\n");
    let report_classes = catalog
        .reports
        .iter()
        .map(|report| generate_report_class(report.report_id, report.output_type))
        .collect::<Vec<_>>()
        .join("\n\n");
    let command_classes = catalog
        .commands
        .iter()
        .map(|command| generate_command_class(command.command_id, command.result_type))
        .collect::<Vec<_>>()
        .join("\n\n");
    let item_constructors = catalog
        .items
        .iter()
        .map(|item| generate_item_constructor(item.entity_type))
        .collect::<Vec<_>>()
        .join(",\n");
    [
        query_classes,
        view_classes,
        report_classes,
        command_classes,
        format!("export const items = {{\n{item_constructors}\n}};"),
    ]
}

fn generate_const_exports(catalog: &TypegenCatalog) -> Result<String, anyhow::Error> {
    let mut seen: HashMap<&str, &TypegenConstValue> = HashMap::new();
    let mut registrations = Vec::new();
    for registration in &catalog.constants {
        if let Some(existing) = seen.get(registration.name) {
            if !registration.value.eq(existing) {
                anyhow::bail!(
                    "Conflicting typegen constant values for '{}': {:?} vs {:?}",
                    registration.name,
                    existing,
                    registration.value
                );
            }
        } else {
            seen.insert(registration.name, &registration.value);
            registrations.push(*registration);
        }
    }
    Ok(registrations
        .iter()
        .map(|registration| {
            let value = match &registration.value {
                TypegenConstValue::Str(value) => format!("'{value}'"),
                TypegenConstValue::Int(value) => value.to_string(),
                TypegenConstValue::Float(value) => value.to_string(),
                TypegenConstValue::Bool(value) => value.to_string(),
            };
            format!("export const {} = {} as const", registration.name, value)
        })
        .collect::<Vec<_>>()
        .join("\n"))
}

fn generate_message_events() -> String {
    let entries = inventory::iter::<MessageEventRegistration>()
        .map(|registration| {
            format!(
                "  {}: '{}',",
                registration.variant_name, registration.event_value
            )
        })
        .collect::<Vec<_>>()
        .join("\n");
    format!(
        r"export const MykoEvent = {{
{entries}
}} as const;
export type MykoEventType = typeof MykoEvent[keyof typeof MykoEvent];"
    )
}

/// Generate TypeScript bindings for registrations owned by the current crate.
///
/// # Errors
///
/// Returns an error when the crate name is unavailable or generation fails.
pub fn generate_item_types(directory_path: &str) -> Result<(), anyhow::Error> {
    let crate_name = std::env::var("CARGO_PKG_NAME")
        .context("CARGO_PKG_NAME environment variable not found")?
        .replace('-', "_");
    println!("The current crate name is: {crate_name}");
    generate_item_types_for_catalogs(
        directory_path,
        &TypegenCatalog::collect(&crate_name),
        &GraphSchemaCatalog::collect(&crate_name),
    )
}

/// Generate TypeScript bindings for an explicitly collected catalog.
///
/// Aggregate typegen binaries can build the catalog with
/// [`TypegenCatalog::collect_crates`] or [`TypegenCatalog::collect_crate_family`].
///
/// # Errors
///
/// Returns an error when bindings cannot be generated or written.
pub fn generate_item_types_for_catalog(
    directory_path: &str,
    catalog: &TypegenCatalog,
) -> Result<(), anyhow::Error> {
    let crates = catalog_crate_roots(catalog);
    let graph_catalog = GraphSchemaCatalog::collect_crates(crates);
    generate_item_types_for_catalogs(directory_path, catalog, &graph_catalog)
}

/// Generate TypeScript bindings from separate public type and graph catalogs.
///
/// Keeping these inputs separate preserves the public shape of
/// [`TypegenCatalog`] while allowing aggregate applications to select graph
/// metadata explicitly.
///
/// # Errors
///
/// Returns an error when bindings cannot be generated or written.
pub fn generate_item_types_for_catalogs(
    directory_path: &str,
    catalog: &TypegenCatalog,
    graph_catalog: &GraphSchemaCatalog,
) -> Result<(), anyhow::Error> {
    let file_name = "index.ts";

    // Wipe before regenerating: collect_binding_types/collect_subdir_types
    // (below) rebuild index.ts's barrel by SCANNING this directory's .ts
    // files, not from the current type registry — a type that gets
    // renamed or deleted (e.g. myko 5.0's PartialX -> XQuery) leaves its
    // old file behind, and that stale file gets perpetually re-exported by
    // every future run until physically removed. Every file this function
    // writes is machine-generated (confirmed: every .ts file under
    // directory_path carries the ts-rs "generated by" header, or is
    // index.ts itself, freshly rewritten below) — safe to remove wholesale.
    if Path::new(directory_path).exists() {
        fs::remove_dir_all(directory_path)?;
    }
    fs::create_dir_all(directory_path)?;

    // The renderer owns its backend configuration; callers only provide the
    // language-neutral output directory. Type generation runs single-threaded
    // before any application initialization, so updating this process-global
    // backend setting cannot race another exporter.
    // SAFETY: this function is invoked by the single-threaded typegen binary.
    unsafe { std::env::set_var("TS_RS_EXPORT_DIR", directory_path) };

    println!("Exporting registered generated binding types...");
    export_registered_ts_types_for_catalog(catalog)?;

    // Additional typegen modules are rendered before scanning bindings so their
    // generated barrels participate in the root index.
    typegen_typescript::export_registered_typegen_modules(
        Path::new(directory_path),
        &catalog.modules,
    )?;

    let (binding_exports, subdir_exports, entity_imports, aliased_imports) =
        generate_import_sections(directory_path, catalog);
    let [
        query_classes,
        view_classes,
        report_classes,
        command_classes,
        item_ctor_obj,
    ] = generate_class_sections(catalog);
    let const_exports = generate_const_exports(catalog)?;
    let message_events = generate_message_events();
    let graph_schema = generate_graph_schema(graph_catalog);

    let code = [
        "// Auto-generated by type_gen - do not edit manually".to_string(),
        String::new(),
        "// Core type aliases".to_string(),
        "/** Entity identifier type. In Rust this is Arc<str>, serialized as string. */"
            .to_string(),
        "export type ID = string;".to_string(),
        String::new(),
        "// Graph schema and typed endpoint helpers".to_string(),
        graph_schema,
        String::new(),
        "// Re-export ts-rs generated types".to_string(),
        binding_exports,
        subdir_exports,
        String::new(),
        "// Internal imports".to_string(),
        entity_imports,
        aliased_imports,
        String::new(),
        "// Query classes".to_string(),
        query_classes,
        String::new(),
        "// View classes".to_string(),
        view_classes,
        String::new(),
        "// Report classes".to_string(),
        report_classes,
        String::new(),
        "// Command classes".to_string(),
        command_classes,
        String::new(),
        "// Item constructors".to_string(),
        item_ctor_obj,
        String::new(),
        "// Message events".to_string(),
        message_events,
        String::new(),
        "// Shared constants".to_string(),
        const_exports,
    ]
    .join("\n");

    let file_path = Path::new(directory_path).join(file_name);

    let config = ConfigurationBuilder::new()
        .arguments_trailing_commas(TrailingCommas::Always)
        .build();

    let code = dprint_plugin_typescript::format_text(FormatTextOptions {
        path: &file_path,
        extension: None,
        text: code,
        config: &config,
        external_formatter: None,
    })?;

    let Some(code) = code else {
        anyhow::bail!("Generated code is empty");
    };

    fs::write(&file_path, code)?;
    println!("Successfully wrote to file: {}", file_path.display());

    Ok(())
}

/// Generate docs JSON entries from ts-rs binding files.
///
/// This is intentionally separate from `generate_item_types` so callers can
/// run docs generation independently (or in addition to TS type generation).
///
/// # Errors
///
/// Returns an error when the requested operation cannot be completed.
pub fn generate_docs_json_from_bindings(
    bindings_dir: impl AsRef<Path>,
    output_file: impl AsRef<Path>,
) -> Result<(), anyhow::Error> {
    let bindings_dir = bindings_dir.as_ref();
    let output_file = output_file.as_ref();

    if !bindings_dir.exists() {
        anyhow::bail!(
            "Bindings directory does not exist: {}",
            bindings_dir.display()
        );
    }

    let mut entries = Vec::<DocEntry>::new();
    for file in collect_ts_binding_files(bindings_dir)? {
        let content = fs::read_to_string(&file)?;
        let Some(entity_type) = file.file_stem().and_then(|s| s.to_str()) else {
            continue;
        };
        let Some(body) = extract_exported_object_type_body(&content, entity_type) else {
            continue;
        };
        for (prop_name, prop_type, doc_string, _optional) in parse_object_type_fields(&body) {
            // `id`/`hash` are auto-added by `#[myko_item]` on every entity;
            // they're not meaningful documentation targets, so docgen omits
            // them here. Operation-argument structs (which legitimately use
            // `id` as their one real field, e.g. `DeleteServerArgs`) go
            // through `operation_index::build_operation_index` instead,
            // which does not apply this filter.
            if prop_name == "id" || prop_name == "hash" {
                continue;
            }
            entries.push(DocEntry {
                entity_type: entity_type.to_string(),
                kind: "prop".to_string(),
                prop_name,
                entry_type: "prop".to_string(),
                prop_type,
                doc_string,
            });
        }
    }

    entries.sort_by(|a, b| {
        a.entity_type
            .cmp(&b.entity_type)
            .then_with(|| a.prop_name.cmp(&b.prop_name))
    });

    if let Some(parent) = output_file.parent() {
        fs::create_dir_all(parent)?;
    }
    let json = serde_json::to_string_pretty(&entries)?;
    fs::write(output_file, json)?;
    println!("Successfully wrote docs JSON: {}", output_file.display());

    Ok(())
}

fn generate_query_class(query_id: &str, query_item_type: &str) -> String {
    format!(
        r#"export class {query_id} {{
  static readonly queryId = "{query_id}" as const;
  static readonly queryItemType = "{query_item_type}" as const;
  readonly queryId = "{query_id}" as const;
  readonly queryItemType = "{query_item_type}" as const;
  readonly query: Omit<_{query_id}, 'tx' | 'createdAt'>;
  declare readonly $res: () => {query_item_type}[];

  constructor(args: Omit<_{query_id}, 'tx' | 'createdAt'>) {{
    this.query = args;
  }}
}}"#
    )
}

fn generate_view_class(view_id: &str, view_item_type: &str) -> String {
    format!(
        r#"export class {view_id} {{
  static readonly viewId = "{view_id}" as const;
  static readonly viewItemType = "{view_item_type}" as const;
  readonly viewId = "{view_id}" as const;
  readonly viewItemType = "{view_item_type}" as const;
  readonly view: Omit<_{view_id}, 'tx' | 'createdAt'>;
  declare readonly $res: () => {view_item_type}[];

  constructor(args: Omit<_{view_id}, 'tx' | 'createdAt'>) {{
    this.view = args;
  }}
}}"#
    )
}

fn generate_report_class(report_id: &str, output_type: &str) -> String {
    let ts_output_type = crate::operation_index::rust_type_to_ts(output_type);
    format!(
        r#"export class {report_id} {{
  static readonly reportId = "{report_id}" as const;
  readonly reportId = "{report_id}" as const;
  readonly report: Omit<_{report_id}, 'tx'>;
  declare readonly $res: () => {ts_output_type};

  constructor(args: Omit<_{report_id}, 'tx'>) {{
    this.report = args;
  }}
}}"#
    )
}

fn generate_command_class(command_id: &str, result_type: &str) -> String {
    let ts_result_type = if result_type == "()" {
        "void".to_string()
    } else {
        crate::operation_index::rust_type_to_ts(result_type)
    };
    format!(
        r#"export class {command_id} {{
  static readonly commandId = "{command_id}" as const;
  readonly commandId = "{command_id}" as const;
  readonly command: Omit<_{command_id}, 'tx' | 'createdAt'>;
  declare readonly $res: () => {ts_result_type};

  constructor(args: Omit<_{command_id}, 'tx' | 'createdAt'>) {{
    this.command = args;
  }}
}}"#
    )
}

fn generate_item_constructor(item_name: &str) -> String {
    format!("  {item_name}: (args: {item_name}) => ({{ item: args, itemType: \"{item_name}\" }})")
}

fn extract_importable_types(rust_type: &str) -> Vec<String> {
    use crate::operation_index::{outer_leaf, split_generic_args, split_outer_generic};

    let trimmed = rust_type.trim();
    let canonical = trimmed.replace(' ', "");
    let canonical = canonical.as_str();
    if let Some((outer, inner)) = split_outer_generic(canonical) {
        match outer_leaf(outer) {
            // Handle Option<T>/Vec<T>/Arc<T> - extract inner type
            "Option" | "Vec" | "Arc" => return extract_importable_types(inner),
            // For other generics, collect importables from type arguments
            _ => {
                return split_generic_args(inner)
                    .into_iter()
                    .flat_map(|arg| extract_importable_types(&arg))
                    .collect();
            }
        }
    }

    // Filter out Rust primitive types that don't need imports
    let primitives = [
        "str", "String", "bool", "()", "i8", "i16", "i32", "i64", "i128", "isize", "u8", "u16",
        "u32", "u64", "u128", "usize", "f32", "f64",
    ];

    if primitives.contains(&outer_leaf(canonical)) {
        return vec![];
    }

    // Map serde_json::Value to JsonValue
    if trimmed == "Value" || trimmed == "serde_json::Value" {
        return vec!["JsonValue".to_string()];
    }

    let clean_type = outer_leaf(canonical).to_string();
    vec![clean_type]
}

#[cfg(test)]
mod tests {
    use std::sync::Arc;

    use super::*;
    use crate::query::{IdFilter, StringFilter};

    #[allow(dead_code)]
    #[derive(crate::TS)]
    struct SchemaRef(String);

    #[allow(dead_code)]
    #[derive(crate::TS)]
    struct ServerId(String);

    #[allow(dead_code)]
    #[derive(crate::TS)]
    struct MEventType(String);

    #[allow(dead_code)]
    #[derive(crate::TS)]
    struct AggregateDownstreamQuery {
        id: Option<IdFilter<Arc<str>>>,
        name: Option<StringFilter>,
        schema: SchemaRef,
        server_id: ServerId,
        event_type: MEventType,
    }

    const AGGREGATE_QUERY_TYPE_ID: &str = "downstream_entities::AggregateDownstreamQuery";

    inventory::submit! {
        crate::codegen_types::TypegenTypeRegistration {
            id: AGGREGATE_QUERY_TYPE_ID,
            type_name: "AggregateDownstreamQuery",
            crate_path: "downstream_entities::query",
        }
    }

    inventory::submit! {
        crate::typegen_typescript::TypeExportRegistration {
            type_id: AGGREGATE_QUERY_TYPE_ID,
            type_name: "AggregateDownstreamQuery",
            rust_type_id: || std::any::TypeId::of::<AggregateDownstreamQuery>(),
            generated_name: |config| <AggregateDownstreamQuery as crate::TS>::ident(config),
            output_path: || <AggregateDownstreamQuery as crate::TS>::output_path(),
            export_fn: || <AggregateDownstreamQuery as crate::TS>::export_all(
                &crate::ts_rs::Config::from_env()
            ),
        }
    }

    #[allow(clippy::unnecessary_wraps)]
    fn adapter_export_ok() -> Result<(), ts_rs::ExportError> {
        Ok(())
    }

    #[test]
    fn typescript_adapters_are_selected_from_the_neutral_catalog() {
        static OWN_TYPE: crate::codegen_types::TypegenTypeRegistration =
            crate::codegen_types::TypegenTypeRegistration {
                id: "rship::Own",
                type_name: "Own",
                crate_path: "rship",
            };
        static OWN_ADAPTER: TypeExportRegistration = TypeExportRegistration {
            type_id: "rship::Own",
            type_name: "Own",
            rust_type_id: || std::any::TypeId::of::<u8>(),
            generated_name: |_| "Own".into(),
            output_path: || Some("Own.ts".into()),
            export_fn: adapter_export_ok,
        };
        static FOREIGN_ADAPTER: TypeExportRegistration = TypeExportRegistration {
            type_id: "rship_core::Foreign",
            type_name: "Foreign",
            rust_type_id: || std::any::TypeId::of::<u16>(),
            generated_name: |_| "Foreign".into(),
            output_path: || Some("Foreign.ts".into()),
            export_fn: adapter_export_ok,
        };

        let catalog = TypegenCatalog {
            types: vec![&OWN_TYPE],
            constants: Vec::new(),
            modules: Vec::new(),
            items: Vec::new(),
            queries: Vec::new(),
            views: Vec::new(),
            reports: Vec::new(),
            commands: Vec::new(),
        };
        let selected = typescript_adapters_for_catalog(&catalog, [&OWN_ADAPTER, &FOREIGN_ADAPTER]);

        assert_eq!(selected.len(), 1);
        assert_eq!(
            selected.first().map(|adapter| adapter.type_name),
            Some("Own")
        );
    }

    /// A process- and call-unique scratch directory under the system temp
    /// dir. Each codegen test gets its own, so `generate_item_types`' wipe +
    /// regenerate can never race another test or a parallel `cargo flux`
    /// process. The tests used to share a fixed `./bindings` path, which
    /// raced across processes under `cargo flux run test` and failed with
    /// `ENOTEMPTY` ("Directory not empty") mid-wipe.
    fn typegen_test_serial() -> std::sync::MutexGuard<'static, ()> {
        static LOCK: std::sync::Mutex<()> = std::sync::Mutex::new(());
        LOCK.lock()
            .unwrap_or_else(std::sync::PoisonError::into_inner)
    }

    fn unique_bindings_dir(label: &str) -> std::path::PathBuf {
        use std::sync::atomic::{AtomicU64, Ordering};
        static COUNTER: AtomicU64 = AtomicU64::new(0);
        let n = COUNTER.fetch_add(1, Ordering::Relaxed);
        std::env::temp_dir().join(format!(
            "myko-codegen-test-{}-{label}-{n}",
            std::process::id()
        ))
    }

    #[test]
    fn aggregate_catalog_exports_framework_filter_dependencies() {
        let _serial = typegen_test_serial();
        let dir = unique_bindings_dir("aggregate-framework-types");
        let dir_string = dir.to_string_lossy();
        let catalog = TypegenCatalog::collect_crate_family("downstream_entities");

        let generated = generate_item_types_for_catalog(&dir_string, &catalog);
        assert!(generated.is_ok(), "aggregate catalog should render");
        let Ok(()) = generated else {
            return;
        };
        assert!(dir.join("AggregateDownstreamQuery.ts").exists());
        assert!(dir.join("IdFilter.ts").exists());
        assert!(dir.join("StringFilter.ts").exists());
        assert!(dir.join("SchemaRef.ts").exists());
        assert!(dir.join("ServerId.ts").exists());
        assert!(dir.join("MEventType.ts").exists());
        let query = fs::read_to_string(dir.join("AggregateDownstreamQuery.ts"));
        assert!(query.is_ok(), "aggregate query binding should be readable");
        let Ok(query) = query else {
            return;
        };
        assert!(query.contains("./IdFilter"));
        assert!(query.contains("./StringFilter"));
        assert!(query.contains("./SchemaRef"));
        assert!(query.contains("./ServerId"));
        assert!(query.contains("./MEventType"));
        let index = fs::read_to_string(dir.join("index.ts"));
        assert!(index.is_ok(), "aggregate index should be readable");
        let Ok(index) = index else {
            return;
        };
        for dependency in [
            "SchemaRef",
            "ServerId",
            "MEventType",
            "IdFilter",
            "StringFilter",
        ] {
            assert!(index.contains(dependency), "index omitted {dependency}");
        }
        let _ = fs::remove_dir_all(&dir);
    }

    #[test]
    fn generate_index() {
        let _serial = typegen_test_serial();
        let dir = unique_bindings_dir("generate_index");
        let dir_str = dir.to_str();
        assert!(dir_str.is_some(), "temp dir path is valid UTF-8");
        let Some(dir_str) = dir_str else {
            return;
        };
        let catalog = TypegenCatalog::collect(env!("CARGO_CRATE_NAME"));
        assert!(generate_item_types_for_catalog(dir_str, &catalog).is_ok());
        let _ = fs::remove_dir_all(&dir);
    }

    #[test]
    fn graph_catalog_renders_separately_from_typegen_catalog() {
        let graph = GraphSchemaCatalog::collect(env!("CARGO_CRATE_NAME"));
        let rendered = generate_graph_schema(&graph);
        assert!(rendered.contains("export const graphSchema"));
        assert!(rendered.contains("TagAssignment"));
        assert!(rendered.contains("TagAssignmentAAddress"));
        assert!(rendered.contains("TagId as __MykoGraphTagId"));
        assert!(rendered.contains("EntityRef as __MykoGraphEntityRef"));
        assert!(rendered.contains("export class TagAssignmentGraphFrom"));
        assert!(rendered.contains("export class TagAssignmentGraphFromId"));
        assert!(rendered.contains("export class TagAssignmentGraphFromIds"));
        assert!(rendered.contains("export class TagAssignmentGraphFromMany"));
        assert!(rendered.contains("queryId = \"TagAssignmentGraphBetween\""));
        assert!(rendered.contains("queryId = \"TagAssignmentGraphBetweenId\""));
        assert!(rendered.contains("connect: (edge: TagAssignment) => new ConnectTagAssignment"));
        assert!(
            rendered
                .contains("syncFrom: (endpoint: TagAssignmentAAddress, edges: TagAssignment[])")
        );
        assert!(rendered.contains(
            "syncFrom: (endpoint: ScopedTagAssignmentAAddress, scope: __MykoGraphGraphScopeId, edges: ScopedTagAssignment[])"
        ));
        assert!(rendered.contains("ensure: (edge: TagAssignment) => new EnsureTagAssignment"));
        assert!(
            rendered.contains(
                "disconnect: (id: __MykoGraphTagAssignmentId) => new DeleteTagAssignment"
            )
        );
        assert!(rendered.contains("from: (endpoint: TagAssignmentAAddress)"));
        assert!(rendered.contains("fromId: (endpoint: TagAssignmentAAddress"));
        assert!(rendered.contains("fromIds: (endpoint: TagAssignmentAAddress"));
        assert!(rendered.contains("toId: (endpoint: TagAssignmentBAddress"));
        assert!(rendered.contains("toIds: (endpoint: TagAssignmentBAddress"));
        assert!(rendered.contains("betweenId: (a: TagAssignmentAAddress"));
        assert!(rendered.contains("betweenIds: (a: TagAssignmentAAddress"));
        assert!(rendered.contains("ids: [...new Set(ids)].sort()"));
        assert!(rendered.contains("fromMany: (endpoints: TagAssignmentAAddress[])"));
        assert!(rendered.contains("new TagAssignmentGraphFrom(endpoint)"));
        assert!(rendered.contains("$schema: graphSchema.edges[\"TagAssignment\"]"));
        assert!(rendered.contains("export class TagAssignmentGraphSourcesTo"));
        assert!(rendered.contains("sourcesTo: (endpoint: TagAssignmentBAddress)"));
        assert!(!rendered.contains("export class TagAssignmentGraphTargetsFrom"));
        assert!(rendered.contains("export class ScopedTagAssignmentGraphTargetsFrom"));
        assert!(rendered.contains("export class ScopedTagAssignmentGraphTargetsFromMany"));
        assert!(rendered.contains("targetsFrom: (endpoint: ScopedTagAssignmentAAddress)"));
        assert!(rendered.contains("targetsFromMany: (endpoints: ScopedTagAssignmentAAddress[])"));
        assert!(!rendered.contains("export class AliasedEndpointAssignmentGraphTargetsFrom"));
        assert!(rendered.contains("export class ArticleLinkGraphNeighbors"));
        assert!(rendered.contains("neighbors: (endpoint: ArticleLinkAAddress)"));
        assert!(!rendered.contains("export class TagAssignmentGraphNeighbors"));
        assert!(rendered.contains("Article as __MykoGraphArticle"));
        assert!(rendered.contains("countFrom: (endpoint: TagAssignmentAAddress)"));
        assert!(rendered.contains("new TagAssignmentGraphCountFrom({ endpoint })"));
        assert!(rendered.contains("new TagAssignmentGraphExistsBetween({ a, b })"));
        assert!(rendered.contains("export type TagAssignmentGraphTraversalOptions"));
        assert!(rendered.contains("scope?: never"));
        assert!(rendered.contains("scope?: __MykoGraphGraphScopeId"));
        assert!(rendered.contains("traverseFrom: (start: TagAssignmentAAddress"));
        assert!(rendered.contains("new TagAssignmentGraphTraverseFrom"));
        assert!(rendered.contains("traverseTo: (start: TagAssignmentBAddress"));
        assert!(rendered.contains("direction: options.direction ?? \"reverse\""));
        assert!(rendered.contains("pairPolicy"));
        assert!(rendered.contains("aAdjacency"));
        assert!(rendered.contains("bAdjacency"));
        assert!(rendered.contains("category"));
    }

    #[test]
    fn generated_graph_aggregate_helpers_resolve_to_report_classes() {
        let _serial = typegen_test_serial();
        let dir = unique_bindings_dir("graph-aggregates");
        let Some(dir_str) = dir.to_str() else {
            return;
        };
        let catalog = TypegenCatalog::collect(env!("CARGO_CRATE_NAME"));
        let graph = GraphSchemaCatalog::collect(env!("CARGO_CRATE_NAME"));
        let generated = generate_item_types_for_catalogs(dir_str, &catalog, &graph);
        assert!(
            generated.is_ok(),
            "graph bindings should generate: {generated:?}"
        );
        let index = fs::read_to_string(dir.join("index.ts"));
        assert!(
            index.is_ok(),
            "generated TypeScript index should be readable"
        );
        let Ok(index) = index else {
            return;
        };
        assert!(index.contains("export class TagAssignmentGraphCountFrom"));
        assert!(index.contains("declare readonly $res: () => number"));
        assert!(index.contains("export class TagAssignmentGraphExistsBetween"));
        assert!(index.contains("declare readonly $res: () => boolean"));
        assert!(index.contains("export class TagAssignmentGraphTraverseFrom"));
        assert!(index.contains("declare readonly $res: () => TraversalResult"));
        assert!(index.contains("new TagAssignmentGraphTraverseFrom({"));
        assert!(index.contains("new TagAssignmentGraphCountFrom({ endpoint },)"));
        assert!(index.contains("new TagAssignmentGraphExistsBetween({ a, b },)"));
        let _ = fs::remove_dir_all(&dir);
    }

    /// Regression test for the myko 5.0 stale-generated-file bug: a type
    /// renamed or deleted on the Rust side (e.g. `PartialX` -> `XQuery`) used
    /// to leave its old .ts file behind, and `collect_binding_types` picked
    /// it up from the directory listing and kept re-exporting it from
    /// index.ts forever, since nothing ever cleared the directory first.
    #[test]
    fn generate_item_types_removes_stale_files_from_a_previous_run() {
        let _serial = typegen_test_serial();
        let dir = unique_bindings_dir("stale_files");
        let dir_str = dir.to_str();
        assert!(dir_str.is_some(), "temp dir path is valid UTF-8");
        let Some(dir_str) = dir_str else {
            return;
        };
        assert!(fs::create_dir_all(&dir).is_ok());
        let stale_path = dir.join("StaleTestArtifact.ts");
        assert!(
            fs::write(
                &stale_path,
                "// This file was generated by [ts-rs]\nexport type StaleTestArtifact = string;\n",
            )
            .is_ok()
        );
        assert!(stale_path.exists(), "precondition: stale file exists");

        assert!(generate_item_types(dir_str).is_ok());

        assert!(
            !stale_path.exists(),
            "generate_item_types must wipe stale files from a previous run, \
             not just add/overwrite current ones"
        );
        let index_contents = fs::read_to_string(dir.join("index.ts"));
        assert!(index_contents.is_ok(), "index.ts must exist");
        let Ok(index_contents) = index_contents else {
            return;
        };
        assert!(
            !index_contents.contains("StaleTestArtifact"),
            "index.ts must not re-export a type whose file no longer exists"
        );
        let _ = fs::remove_dir_all(&dir);
    }
}