summaryrefslogtreecommitdiff
path: root/source/Checking/Semantic.hs
blob: 7a05f3949db9f786dec6f8213ed113f21e0db3da (plain)
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
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE NoImplicitPrelude #-}

-- | Canonical semantic declaration, prefix, interface, and validation keys.
module Checking.Semantic
    ( DeclarationSlot
    , declarationSlot
    , declarationSlotModule
    , declarationSlotOrdinal
    , FactSlot
    , factSlot
    , factSlotModule
    , factSlotOrdinal
    , SemanticName
    , semanticName
    , semanticNameText
    , FactSearchEligibility(..)
    , SemanticFactOccurrence
    , semanticFactOccurrence
    , semanticFactSlot
    , semanticFactProposition
    , semanticFactAuthority
    , semanticFactSearchEligibility
    , semanticFactFingerprint
    , SemanticFactOccurrenceFingerprint
    , semanticFactOccurrenceFingerprint
    , semanticFactFingerprintDigest
    , SemanticAlias
    , semanticAlias
    , semanticAliasName
    , semanticAliasTarget
    , SemanticGlobalKey(..)
    , semanticGlobalKeyFromLexicalEntry
    , semanticGlobalKeyType
    , SemanticGlobalTarget(..)
    , semanticGlobalTargetObject
    , semanticGlobalTargetRequirements
    , SemanticGlobalBinding
    , semanticGlobalBinding
    , semanticGlobalBindingKey
    , semanticGlobalBindingTarget
    , SemanticGlobalTargetError(..)
    , validateSemanticGlobalBindingTarget
    , SemanticEnvironmentDelta
    , emptySemanticEnvironmentDelta
    , semanticEnvironmentDelta
    , semanticEnvironmentWithStructures
    , semanticEnvironmentBindings
    , semanticEnvironmentStructures
    , SemanticStructurePhrase
    , semanticStructurePhrase
    , semanticStructurePhraseSingular
    , semanticStructurePhrasePlural
    , semanticStructurePhraseMarker
    , SemanticStructureOperation
    , semanticStructureOperation
    , semanticStructureOperationSymbol
    , semanticStructureOperationObject
    , SemanticStructureDescriptor
    , semanticStructureDescriptor
    , semanticStructureDescriptorPhrase
    , semanticStructureDescriptorPredicate
    , semanticStructureDescriptorParents
    , semanticStructureDescriptorOperations
    , SemanticEnvironmentError(..)
    , DeclarationInterfaceDelta
    , declarationInterfaceDelta
    , declarationDeltaSlot
    , declarationDeltaFacts
    , declarationDeltaAliases
    , declarationDeltaObjects
    , declarationDeltaPropositions
    , declarationDeltaEnvironment
    , DeclarationInterfaceError(..)
    , SemanticInterfaceId
    , semanticInterfaceIdDigest
    , SemanticInterface
    , semanticInterface
    , semanticInterfaceOwner
    , semanticInterfaceDirectInputs
    , semanticInterfaceDeclarations
    , semanticInterfaceAssertedId
    , SemanticInterfaceError(..)
    , validateSemanticInterface
    , renderSemanticInterfaceError
    , PrefixContextId
    , initialPrefixContextId
    , PrefixContextError(..)
    , nextPrefixContextId
    , prefixContextIdDigest
    , ProofSyntaxId
    , proofSyntaxId
    , DeclarationSyntaxId
    , declarationSyntaxId
    , ProofValidationKey
    , proofValidationKey
    , proofValidationKeyDigest
    , ProofValidationRecord
    , proofValidationRecord
    , proofValidationRecordKey
    , proofValidationRecordCertificate
    , DeclarationValidationKey
    , declarationValidationKey
    , declarationValidationKeyDigest
    , DeclarationValidationRecord
    , declarationValidationRecord
    , declarationValidationRecordKey
    , declarationValidationRecordCertificates
    , ModuleArtifactKey
    , moduleArtifactKey
    , moduleArtifactKeyOwner
    , moduleArtifactKeyDirectSemanticInputs
    , moduleArtifactKeyTheory
    , ModuleArtifactKeyError(..)
    , ModuleArtifactId
    , moduleArtifactId
    , moduleArtifactIdDigest
    , ModuleArtifactResult
    , moduleArtifactResult
    , moduleArtifactResultId
    , moduleArtifactResultSyntax
    , moduleArtifactResultSemantic
    , putModuleArtifactKeyCache
    , getModuleArtifactKeyCache
    , putModuleArtifactIdCache
    , getModuleArtifactIdCache
    , putModuleArtifactResultCache
    , getModuleArtifactResultCache
    , putSemanticFactOccurrenceFingerprintCache
    , getSemanticFactOccurrenceFingerprintCache
    , putSemanticFactOccurrenceCache
    , getSemanticFactOccurrenceCache
    , putSemanticEnvironmentDeltaCache
    , getSemanticEnvironmentDeltaCache
    , putSemanticGlobalKeyCache
    , getSemanticGlobalKeyCache
    , putDeclarationInterfaceDeltaCache
    , getDeclarationInterfaceDeltaCache
    , putSemanticInterfaceCache
    , getSemanticInterfaceCache
    , putSemanticInterfaceIdCache
    , getSemanticInterfaceIdCache
    , putPrefixContextIdCache
    , getPrefixContextIdCache
    , putProofValidationRecordCache
    , getProofValidationRecordCache
    , putDeclarationValidationRecordCache
    , getDeclarationValidationRecordCache
    ) where

import Base
import Checking.Authority
import Checking.Core
import Checking.Identity
import Felix.Cache.Codec
import Felix.Math.Codec
import Felix.Module
import Felix.Parsed.Identity
import Felix.Source
import Syntax.Interface
import Syntax.Abstract

import Control.DeepSeq (NFData)
import Control.Monad (unless, when)
import Data.ByteString (ByteString)
import Data.List qualified as List
import Data.Map.Strict qualified as Map
import Numeric.Natural (Natural)
import Data.Set qualified as Set
import Data.Text qualified as Text


data DeclarationSlot = DeclarationSlot
    !ModuleName
    !LocalDeclarationOrdinal
    deriving stock (Show, Eq, Ord)

declarationSlot
    :: ModuleName
    -> LocalDeclarationOrdinal
    -> DeclarationSlot
declarationSlot =
    DeclarationSlot

declarationSlotModule :: DeclarationSlot -> ModuleName
declarationSlotModule (DeclarationSlot owner _) =
    owner

declarationSlotOrdinal
    :: DeclarationSlot
    -> LocalDeclarationOrdinal
declarationSlotOrdinal (DeclarationSlot _ ordinal) =
    ordinal

data FactSlot = FactSlot
    !ModuleName
    !LocalFactOrdinal
    deriving stock (Show, Eq, Ord)

factSlot :: ModuleName -> LocalFactOrdinal -> FactSlot
factSlot =
    FactSlot

factSlotModule :: FactSlot -> ModuleName
factSlotModule (FactSlot owner _) =
    owner

factSlotOrdinal :: FactSlot -> LocalFactOrdinal
factSlotOrdinal (FactSlot _ ordinal) =
    ordinal

newtype SemanticName =
    SemanticName Text
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

semanticName :: Text -> SemanticName
semanticName =
    SemanticName

semanticNameText :: SemanticName -> Text
semanticNameText (SemanticName name) =
    name

data FactSearchEligibility
    = SearchEligible
    | SearchIneligible
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

newtype SemanticFactOccurrenceFingerprint =
    SemanticFactOccurrenceFingerprint CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

semanticFactOccurrenceFingerprint
    :: FactSlot
    -> FactAuthority
    -> SemanticFactOccurrenceFingerprint
semanticFactOccurrenceFingerprint slot authority =
    SemanticFactOccurrenceFingerprint
        (hashCacheFields
            "felix-semantic-fact-occurrence-v1"
            [ encodeCache (putFactSlotCache slot)
            , encodeCache (putFactAuthorityCache authority)
            ])

semanticFactFingerprintDigest
    :: SemanticFactOccurrenceFingerprint
    -> CacheDigest
semanticFactFingerprintDigest
        (SemanticFactOccurrenceFingerprint digest) =
    digest

data SemanticFactOccurrence = SemanticFactOccurrence
    !FactSlot
    !FactAuthority
    !FactSearchEligibility
    deriving stock (Show, Eq, Ord, Generic)

semanticFactOccurrence
    :: FactSlot
    -> FactAuthority
    -> FactSearchEligibility
    -> SemanticFactOccurrence
semanticFactOccurrence =
    SemanticFactOccurrence

semanticFactSlot :: SemanticFactOccurrence -> FactSlot
semanticFactSlot
        (SemanticFactOccurrence slot _ _) =
    slot

semanticFactProposition
    :: SemanticFactOccurrence
    -> PropositionId
semanticFactProposition
        (SemanticFactOccurrence _ authority _) =
    theoremRefProposition
        (factAuthorityTheorem authority)

semanticFactAuthority
    :: SemanticFactOccurrence
    -> FactAuthority
semanticFactAuthority
        (SemanticFactOccurrence _ authority _) =
    authority

semanticFactSearchEligibility
    :: SemanticFactOccurrence
    -> FactSearchEligibility
semanticFactSearchEligibility
        (SemanticFactOccurrence _ _ eligibility) =
    eligibility

semanticFactFingerprint
    :: SemanticFactOccurrence
    -> SemanticFactOccurrenceFingerprint
semanticFactFingerprint
        (SemanticFactOccurrence slot authority _) =
    semanticFactOccurrenceFingerprint slot authority

data SemanticAlias = SemanticAlias
    !SemanticName
    !SemanticFactOccurrenceFingerprint
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

semanticAlias
    :: SemanticName
    -> SemanticFactOccurrenceFingerprint
    -> SemanticAlias
semanticAlias =
    SemanticAlias

semanticAliasName :: SemanticAlias -> SemanticName
semanticAliasName (SemanticAlias name _) =
    name

semanticAliasTarget
    :: SemanticAlias
    -> SemanticFactOccurrenceFingerprint
semanticAliasTarget (SemanticAlias _ target) =
    target


-- | Exact source-level name used to resolve a declared monomorphic object.
-- Presentation markers and expression fixity are deliberately absent.
data SemanticGlobalKey
    = SemanticLeftAdjective !Pattern
    | SemanticRightAdjective !Pattern
    | SemanticFunctionPhrase !Pattern !Pattern
    | SemanticNoun !Pattern !Pattern
    | SemanticVerb !Pattern !Pattern
    | SemanticRelation !Token !ParameterArity
    | SemanticExpressionFunction !Pattern
    | SemanticPrefixPredicate !Text !Natural
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

semanticGlobalKeyType :: SemanticGlobalKey -> Maybe CoreType
semanticGlobalKeyType = \case
    SemanticLeftAdjective pat ->
        Just (setArguments (1 + patternArity pat) TyProp)
    SemanticRightAdjective pat ->
        Just (setArguments (1 + patternArity pat) TyProp)
    SemanticFunctionPhrase singular plural
        | patternArity singular == patternArity plural ->
            Just (setArguments (patternArity singular) TySet)
        | otherwise -> Nothing
    SemanticNoun singular plural
        | patternArity singular == patternArity plural ->
            Just (setArguments (1 + patternArity singular) TyProp)
        | otherwise -> Nothing
    SemanticVerb singular plural
        | patternArity singular == patternArity plural ->
            Just (setArguments (1 + patternArity singular) TyProp)
        | otherwise -> Nothing
    SemanticRelation _token arity ->
        Just
            (setArguments
                (2 + parameterArityValue arity)
                TyProp)
    SemanticExpressionFunction pat ->
        Just (setArguments (patternArity pat) TySet)
    SemanticPrefixPredicate _command arity ->
        Just (setArguments arity TyProp)
  where
    patternArity :: Pattern -> Natural
    patternArity = \case
        End -> 0
        HoleCons rest -> 1 + patternArity rest
        TokenCons _token rest -> patternArity rest

    setArguments :: Natural -> CoreType -> CoreType
    setArguments argumentCount result =
        foldr
            (const (TyArrow TySet))
            result
            [1 .. argumentCount]

semanticGlobalKeyFromLexicalEntry
    :: CanonicalLexicalEntry
    -> Maybe SemanticGlobalKey
semanticGlobalKeyFromLexicalEntry = \case
    CanonicalLeftAdjective pat _marker ->
        Just (SemanticLeftAdjective pat)
    CanonicalRightAdjective pat _marker ->
        Just (SemanticRightAdjective pat)
    CanonicalFunctionPhrase singular plural _marker ->
        Just (SemanticFunctionPhrase singular plural)
    CanonicalNoun singular plural _marker ->
        Just (SemanticNoun singular plural)
    CanonicalVerb singular plural _marker ->
        Just (SemanticVerb singular plural)
    CanonicalRelation token arity _marker ->
        Just (SemanticRelation token arity)
    CanonicalExpressionFunction pat _marker _fixity ->
        Just (SemanticExpressionFunction pat)
    CanonicalPrefixPredicate command arity _marker ->
        Just (SemanticPrefixPredicate command arity)
    CanonicalStructureNoun{} ->
        Nothing
    CanonicalStructureOperation{} ->
        Nothing

data SemanticGlobalTarget
    = GlobalReference !ObjectId
    | TransparentExpansion !ObjectId
    | ContextualTransparentExpansion
        !ObjectId
        !(Map.Map StructSymbol ObjectId)
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

semanticGlobalTargetObject :: SemanticGlobalTarget -> ObjectId
semanticGlobalTargetObject = \case
    GlobalReference identity -> identity
    TransparentExpansion identity -> identity
    ContextualTransparentExpansion identity _requirements -> identity

semanticGlobalTargetRequirements
    :: SemanticGlobalTarget
    -> Map.Map StructSymbol ObjectId
semanticGlobalTargetRequirements = \case
    GlobalReference{} -> Map.empty
    TransparentExpansion{} -> Map.empty
    ContextualTransparentExpansion _identity requirements -> requirements

data SemanticGlobalBinding = SemanticGlobalBinding
    !SemanticGlobalKey
    !SemanticGlobalTarget
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

semanticGlobalBinding
    :: SemanticGlobalKey
    -> SemanticGlobalTarget
    -> SemanticGlobalBinding
semanticGlobalBinding =
    SemanticGlobalBinding

semanticGlobalBindingKey
    :: SemanticGlobalBinding
    -> SemanticGlobalKey
semanticGlobalBindingKey (SemanticGlobalBinding key _target) =
    key

semanticGlobalBindingTarget
    :: SemanticGlobalBinding
    -> SemanticGlobalTarget
semanticGlobalBindingTarget (SemanticGlobalBinding _key target) =
    target

data SemanticGlobalTargetError
    = SemanticGlobalKeyHasInconsistentArity !SemanticGlobalKey
    | SemanticGlobalTargetMissing !ObjectId
    | SemanticGlobalTargetIsIntrinsic !ObjectId
    | SemanticGlobalTargetTypeMismatch !ObjectId !CoreType !CoreType
    | SemanticGlobalExpansionNotTransparent !ObjectId
    | SemanticGlobalContextualRequirementsEmpty !ObjectId
    | SemanticGlobalContextualRequirementMissing !StructSymbol !ObjectId
    | SemanticGlobalContextualRequirementIsIntrinsic !StructSymbol !ObjectId
    | SemanticGlobalContextualRequirementTypeMismatch
        !StructSymbol !ObjectId !CoreType !CoreType
    | SemanticGlobalContextualRequirementNotProvided
        !StructSymbol !ObjectId
    | SemanticGlobalContextualRequirementNotReferenced !StructSymbol !ObjectId
    deriving stock (Show, Eq)

validateSemanticGlobalBindingTarget
    :: Set.Set (StructSymbol, ObjectId)
    -> CheckedObjectClosure
    -> SemanticGlobalBinding
    -> Either SemanticGlobalTargetError ()
validateSemanticGlobalBindingTarget operationBindings closure binding = do
    expected <-
        maybe
            (Left (SemanticGlobalKeyHasInconsistentArity key))
            Right
            (semanticGlobalKeyType key)
    content <-
        maybe
            (Left (SemanticGlobalTargetMissing identity))
            Right
            (lookupCheckedObjectContent identity closure)
    when
        (objectIdFamily identity == IntrinsicObject)
        (Left (SemanticGlobalTargetIsIntrinsic identity))
    let targetExpected =
            case target of
                ContextualTransparentExpansion{} ->
                    TyArrow TySet expected
                _ -> expected
        actual = objectContentType content
    unless
        (actual == targetExpected)
        (Left
            (SemanticGlobalTargetTypeMismatch
                identity targetExpected actual))
    case target of
        GlobalReference{} -> pure ()
        TransparentExpansion{} ->
            validateTransparent content
        ContextualTransparentExpansion _ requirements -> do
            validateTransparent content
            when
                (Map.null requirements)
                (Left (SemanticGlobalContextualRequirementsEmpty identity))
            traverse_ (validateRequirement content) (Map.toAscList requirements)
  where
    key = semanticGlobalBindingKey binding
    target = semanticGlobalBindingTarget binding
    identity = semanticGlobalTargetObject target

    validateTransparent = \case
        TransparentObjectContent{} -> pure ()
        _ -> Left (SemanticGlobalExpansionNotTransparent identity)

    validateRequirement content (symbol, object) = do
        operationContent <-
            maybe
                (Left
                    (SemanticGlobalContextualRequirementMissing
                        symbol object))
                Right
                (lookupCheckedObjectContent object closure)
        when
            (objectIdFamily object == IntrinsicObject)
            (Left
                (SemanticGlobalContextualRequirementIsIntrinsic
                    symbol object))
        let expectedOperation = TyArrow TySet TySet
            actualOperation = objectContentType operationContent
        unless
            (actualOperation == expectedOperation)
            (Left
                (SemanticGlobalContextualRequirementTypeMismatch
                    symbol object expectedOperation actualOperation))
        unless
            ((symbol, object) `Set.member` operationBindings)
            (Left
                (SemanticGlobalContextualRequirementNotProvided
                    symbol object))
        case content of
            TransparentObjectContent _theory _coreType body ->
                unless
                    (object `Set.member` canonicalTermGlobals body)
                    (Left
                        (SemanticGlobalContextualRequirementNotReferenced
                            symbol object))
            _ -> impossible "a contextual expansion was not transparent"

data SemanticEnvironmentDelta
    = EmptySemanticEnvironmentDelta
    | SemanticGlobalBindings ![SemanticGlobalBinding]
    | SemanticGlobalBindingsAndStructures
        ![SemanticGlobalBinding]
        ![SemanticStructureDescriptor]
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

data SemanticStructurePhrase = SemanticStructurePhrase
    !Pattern
    !Pattern
    !Marker
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

semanticStructurePhrase :: LexicalItemSgPl -> SemanticStructurePhrase
semanticStructurePhrase (LexicalItemSgPl forms marker) =
    SemanticStructurePhrase (sg forms) (pl forms) marker

semanticStructurePhraseSingular :: SemanticStructurePhrase -> Pattern
semanticStructurePhraseSingular (SemanticStructurePhrase singular _ _) =
    singular

semanticStructurePhrasePlural :: SemanticStructurePhrase -> Pattern
semanticStructurePhrasePlural (SemanticStructurePhrase _ plural _) =
    plural

semanticStructurePhraseMarker :: SemanticStructurePhrase -> Marker
semanticStructurePhraseMarker (SemanticStructurePhrase _ _ marker) =
    marker

data SemanticStructureOperation = SemanticStructureOperation
    !StructSymbol
    !ObjectId
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

semanticStructureOperation
    :: StructSymbol
    -> ObjectId
    -> SemanticStructureOperation
semanticStructureOperation =
    SemanticStructureOperation

semanticStructureOperationSymbol
    :: SemanticStructureOperation
    -> StructSymbol
semanticStructureOperationSymbol (SemanticStructureOperation symbol _) =
    symbol

semanticStructureOperationObject
    :: SemanticStructureOperation
    -> ObjectId
semanticStructureOperationObject (SemanticStructureOperation _ object) =
    object

data SemanticStructureDescriptor = SemanticStructureDescriptor
    !SemanticStructurePhrase
    !(Maybe ObjectId)
    ![SemanticStructurePhrase]
    ![SemanticStructureOperation]
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

semanticStructureDescriptor
    :: SemanticStructurePhrase
    -> Maybe ObjectId
    -> [SemanticStructurePhrase]
    -> [SemanticStructureOperation]
    -> Either SemanticEnvironmentError SemanticStructureDescriptor
semanticStructureDescriptor structurePhrase predicate parents operations = do
    case firstDuplicate parents of
        Just duplicate ->
            Left (DuplicateSemanticStructureParent duplicate)
        Nothing -> pure ()
    when
        (structurePhrase `elem` parents)
        (Left (SelfSemanticStructureParent structurePhrase))
    case firstDuplicate (semanticStructureOperationSymbol <$> operations) of
        Just duplicate ->
            Left (DuplicateSemanticStructureOperation duplicate)
        Nothing -> pure ()
    pure
        (SemanticStructureDescriptor
            structurePhrase predicate parents operations)

semanticStructureDescriptorPhrase
    :: SemanticStructureDescriptor
    -> SemanticStructurePhrase
semanticStructureDescriptorPhrase
        (SemanticStructureDescriptor structurePhrase _ _ _) =
    structurePhrase

semanticStructureDescriptorPredicate
    :: SemanticStructureDescriptor
    -> Maybe ObjectId
semanticStructureDescriptorPredicate
        (SemanticStructureDescriptor _ predicate _ _) =
    predicate

semanticStructureDescriptorParents
    :: SemanticStructureDescriptor
    -> [SemanticStructurePhrase]
semanticStructureDescriptorParents
        (SemanticStructureDescriptor _ _ parents _) =
    parents

semanticStructureDescriptorOperations
    :: SemanticStructureDescriptor
    -> [SemanticStructureOperation]
semanticStructureDescriptorOperations
        (SemanticStructureDescriptor _ _ _ operations) =
    operations

data SemanticEnvironmentError
    = DuplicateSemanticGlobalKey !SemanticGlobalKey
    | NonCanonicalSemanticGlobalBindingOrder
    | DuplicateSemanticStructure !SemanticStructurePhrase
    | NonCanonicalSemanticStructureOrder
    | DuplicateSemanticStructureParent !SemanticStructurePhrase
    | SelfSemanticStructureParent !SemanticStructurePhrase
    | DuplicateSemanticStructureOperation !StructSymbol
    deriving stock (Show, Eq)

emptySemanticEnvironmentDelta :: SemanticEnvironmentDelta
emptySemanticEnvironmentDelta =
    EmptySemanticEnvironmentDelta

semanticEnvironmentDelta
    :: [SemanticGlobalBinding]
    -> Either SemanticEnvironmentError SemanticEnvironmentDelta
semanticEnvironmentDelta bindings =
    semanticEnvironmentWithStructures bindings []

semanticEnvironmentWithStructures
    :: [SemanticGlobalBinding]
    -> [SemanticStructureDescriptor]
    -> Either SemanticEnvironmentError SemanticEnvironmentDelta
semanticEnvironmentWithStructures [] [] =
    Right EmptySemanticEnvironmentDelta
semanticEnvironmentWithStructures bindings structures = do
    case firstDuplicate (semanticGlobalBindingKey <$> bindings) of
        Just duplicate ->
            Left (DuplicateSemanticGlobalKey duplicate)
        Nothing ->
            pure ()
    unless
        (bindings == List.sortOn semanticGlobalBindingKey bindings)
        (Left NonCanonicalSemanticGlobalBindingOrder)
    case firstDuplicate (semanticStructureDescriptorPhrase <$> structures) of
        Just duplicate ->
            Left (DuplicateSemanticStructure duplicate)
        Nothing -> pure ()
    unless
        ( structures
            == List.sortOn semanticStructureDescriptorPhrase structures
        )
        (Left NonCanonicalSemanticStructureOrder)
    pure
        (case structures of
            [] -> SemanticGlobalBindings bindings
            _ -> SemanticGlobalBindingsAndStructures bindings structures)

semanticEnvironmentBindings
    :: SemanticEnvironmentDelta
    -> [SemanticGlobalBinding]
semanticEnvironmentBindings = \case
    EmptySemanticEnvironmentDelta -> []
    SemanticGlobalBindings bindings -> bindings
    SemanticGlobalBindingsAndStructures bindings _ -> bindings

semanticEnvironmentStructures
    :: SemanticEnvironmentDelta
    -> [SemanticStructureDescriptor]
semanticEnvironmentStructures = \case
    EmptySemanticEnvironmentDelta -> []
    SemanticGlobalBindings{} -> []
    SemanticGlobalBindingsAndStructures _ structures -> structures


data DeclarationInterfaceDelta = DeclarationInterfaceDelta
    !DeclarationSlot
    ![SemanticFactOccurrence]
    ![SemanticAlias]
    ![ObjectId]
    ![PropositionId]
    !SemanticEnvironmentDelta
    deriving stock (Show, Eq, Ord, Generic)

data DeclarationInterfaceError
    = DeclarationFactOwnerMismatch !FactSlot
    | DuplicateDeclarationFactSlot !FactSlot
    | DuplicateDeclarationFactFingerprint
        !SemanticFactOccurrenceFingerprint
    | DuplicateDeclarationAlias !SemanticName
    | DuplicateDeclarationObject !ObjectId
    | DuplicateDeclarationProposition !PropositionId
    | DeclarationFactPropositionMissing !PropositionId
    deriving stock (Show, Eq)

declarationInterfaceDelta
    :: DeclarationSlot
    -> [SemanticFactOccurrence]
    -> [SemanticAlias]
    -> [ObjectId]
    -> [PropositionId]
    -> SemanticEnvironmentDelta
    -> Either DeclarationInterfaceError DeclarationInterfaceDelta
declarationInterfaceDelta
        slot facts aliases objects propositions environment = do
    traverse_ validateFact facts
    rejectDuplicate
        DuplicateDeclarationFactSlot
        (semanticFactSlot <$> facts)
    rejectDuplicate
        DuplicateDeclarationFactFingerprint
        (semanticFactFingerprint <$> facts)
    rejectDuplicate
        DuplicateDeclarationAlias
        (semanticAliasName <$> aliases)
    rejectDuplicate DuplicateDeclarationObject objects
    rejectDuplicate DuplicateDeclarationProposition propositions
    pure
        (DeclarationInterfaceDelta
            slot facts aliases objects propositions environment)
  where
    owner = declarationSlotModule slot
    propositionSet = Set.fromList propositions

    validateFact occurrence = do
        unless
            (factSlotModule (semanticFactSlot occurrence) == owner)
            (Left
                (DeclarationFactOwnerMismatch
                    (semanticFactSlot occurrence)))
        let proposition =
                semanticFactProposition occurrence
        unless
            (proposition `Set.member` propositionSet)
            (Left (DeclarationFactPropositionMissing proposition))

declarationDeltaSlot
    :: DeclarationInterfaceDelta
    -> DeclarationSlot
declarationDeltaSlot
        (DeclarationInterfaceDelta slot _ _ _ _ _) =
    slot

declarationDeltaFacts
    :: DeclarationInterfaceDelta
    -> [SemanticFactOccurrence]
declarationDeltaFacts
        (DeclarationInterfaceDelta _ facts _ _ _ _) =
    facts

declarationDeltaAliases
    :: DeclarationInterfaceDelta
    -> [SemanticAlias]
declarationDeltaAliases
        (DeclarationInterfaceDelta _ _ aliases _ _ _) =
    aliases

declarationDeltaObjects
    :: DeclarationInterfaceDelta
    -> [ObjectId]
declarationDeltaObjects
        (DeclarationInterfaceDelta _ _ _ objects _ _) =
    objects

declarationDeltaPropositions
    :: DeclarationInterfaceDelta
    -> [PropositionId]
declarationDeltaPropositions
        (DeclarationInterfaceDelta _ _ _ _ propositions _) =
    propositions

declarationDeltaEnvironment
    :: DeclarationInterfaceDelta
    -> SemanticEnvironmentDelta
declarationDeltaEnvironment
        (DeclarationInterfaceDelta _ _ _ _ _ environment) =
    environment


newtype SemanticInterfaceId =
    SemanticInterfaceId CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

semanticInterfaceIdDigest
    :: SemanticInterfaceId
    -> CacheDigest
semanticInterfaceIdDigest (SemanticInterfaceId digest) =
    digest

data SemanticInterface = SemanticInterface
    !ModuleName
    ![SemanticInterfaceId]
    ![DeclarationInterfaceDelta]
    !SemanticInterfaceId
    deriving stock (Show, Eq, Ord)

data SemanticInterfaceError
    = DuplicateDirectSemanticInterface !SemanticInterfaceId
    | SemanticDeclarationOwnerMismatch !DeclarationSlot
    | NonIncreasingDeclarationSlots
    | NonIncreasingFactSlots
    | SemanticInterfaceIdMismatch
        !SemanticInterfaceId
        !SemanticInterfaceId
    deriving stock (Show, Eq)

renderSemanticInterfaceError :: SemanticInterfaceError -> Text
renderSemanticInterfaceError = \case
    DuplicateDirectSemanticInterface interface ->
        "direct semantic interface occurs more than once: "
            <> Text.pack (show interface)
    SemanticDeclarationOwnerMismatch slot ->
        "declaration belongs to a different module: "
            <> Text.pack (show slot)
    NonIncreasingDeclarationSlots ->
        "declaration slots are not in increasing order"
    NonIncreasingFactSlots ->
        "fact slots are not in increasing order"
    SemanticInterfaceIdMismatch expected actual ->
        "semantic interface identity mismatch: expected "
            <> Text.pack (show expected)
            <> ", found " <> Text.pack (show actual)

semanticInterface
    :: ModuleName
    -> [SemanticInterfaceId]
    -> [DeclarationInterfaceDelta]
    -> Either SemanticInterfaceError SemanticInterface
semanticInterface owner direct declarations = do
    validateSemanticInterfaceStructure owner direct declarations
    let identity =
            computeSemanticInterfaceId owner direct declarations
    pure (SemanticInterface owner direct declarations identity)

validateSemanticInterface
    :: ModuleName
    -> [SemanticInterfaceId]
    -> [DeclarationInterfaceDelta]
    -> SemanticInterfaceId
    -> Either SemanticInterfaceError SemanticInterface
validateSemanticInterface owner direct declarations asserted = do
    validateSemanticInterfaceStructure owner direct declarations
    let computed =
            computeSemanticInterfaceId
                owner direct declarations
    unless
        (asserted == computed)
        (Left
            (SemanticInterfaceIdMismatch asserted computed))
    pure
        (SemanticInterface
            owner direct declarations asserted)

validateSemanticInterfaceStructure
    :: ModuleName
    -> [SemanticInterfaceId]
    -> [DeclarationInterfaceDelta]
    -> Either SemanticInterfaceError ()
validateSemanticInterfaceStructure owner direct declarations = do
    rejectDuplicate
        DuplicateDirectSemanticInterface
        direct
    traverse_
        (\delta ->
            unless
                (declarationSlotModule
                    (declarationDeltaSlot delta)
                    == owner)
                (Left
                    (SemanticDeclarationOwnerMismatch
                        (declarationDeltaSlot delta))))
        declarations
    unless
        (strictlyIncreasing
            ( localDeclarationOrdinalValue
                . declarationSlotOrdinal
                . declarationDeltaSlot
                <$> declarations))
        (Left NonIncreasingDeclarationSlots)
    unless
        (strictlyIncreasing
            ( localFactOrdinalValue
                . factSlotOrdinal
                . semanticFactSlot
                <$> concatMap
                    declarationDeltaFacts
                    declarations))
        (Left NonIncreasingFactSlots)

semanticInterfaceOwner :: SemanticInterface -> ModuleName
semanticInterfaceOwner
        (SemanticInterface owner _ _ _) =
    owner

semanticInterfaceDirectInputs
    :: SemanticInterface
    -> [SemanticInterfaceId]
semanticInterfaceDirectInputs
        (SemanticInterface _ direct _ _) =
    direct

semanticInterfaceDeclarations
    :: SemanticInterface
    -> [DeclarationInterfaceDelta]
semanticInterfaceDeclarations
        (SemanticInterface _ _ declarations _) =
    declarations

semanticInterfaceAssertedId
    :: SemanticInterface
    -> SemanticInterfaceId
semanticInterfaceAssertedId
        (SemanticInterface _ _ _ asserted) =
    asserted

computeSemanticInterfaceId
    :: ModuleName
    -> [SemanticInterfaceId]
    -> [DeclarationInterfaceDelta]
    -> SemanticInterfaceId
computeSemanticInterfaceId owner direct declarations =
    SemanticInterfaceId
        (hashCacheFields
            "felix-semantic-interface-v1"
            [ encodeCache (putModuleNameCache owner)
            , encodeCache
                (putCacheList
                    putSemanticInterfaceIdCache
                    direct)
            , encodeCache
                (putCacheList
                    putDeclarationInterfaceDeltaCache
                    declarations)
            ])


newtype PrefixContextId =
    PrefixContextId CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

data PrefixContextError
    = DuplicateInitialPrefixSemanticInput !SemanticInterfaceId
    deriving stock (Show, Eq)

initialPrefixContextId
    :: TheoryId
    -> ModuleName
    -> [SemanticInterfaceId]
    -> Either PrefixContextError PrefixContextId
initialPrefixContextId theory owner direct = do
    rejectDuplicate
        DuplicateInitialPrefixSemanticInput
        direct
    pure
        (PrefixContextId
            (hashCacheFields
                "felix-prefix-initial-v1"
                [ encodeCache (putTheoryIdCache theory)
                , encodeCache (putModuleNameCache owner)
                , encodeCache
                    (putCacheList
                        putSemanticInterfaceIdCache
                        direct)
                ]))

nextPrefixContextId
    :: PrefixContextId
    -> DeclarationInterfaceDelta
    -> PrefixContextId
nextPrefixContextId previous delta =
    PrefixContextId
        (hashCacheFields
            "felix-prefix-step-v1"
            [ encodeCache (putPrefixContextIdCache previous)
            , encodeCache
                (putDeclarationInterfaceDeltaCache delta)
            ])

prefixContextIdDigest :: PrefixContextId -> CacheDigest
prefixContextIdDigest (PrefixContextId digest) =
    digest


newtype ProofSyntaxId =
    ProofSyntaxId CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

proofSyntaxId :: ByteString -> ProofSyntaxId
proofSyntaxId bytes =
    ProofSyntaxId
        (hashCacheFields "felix-proof-syntax-v1" [bytes])

newtype DeclarationSyntaxId =
    DeclarationSyntaxId CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

declarationSyntaxId :: ByteString -> DeclarationSyntaxId
declarationSyntaxId bytes =
    DeclarationSyntaxId
        (hashCacheFields "felix-declaration-syntax-v1" [bytes])

newtype ProofValidationKey =
    ProofValidationKey CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

proofValidationKey
    :: TheoremId
    -> ProofSyntaxId
    -> PrefixContextId
    -> ProofValidationKey
proofValidationKey theorem (ProofSyntaxId syntax) prefix =
    ProofValidationKey
        (hashCacheFields
            "felix-proof-validation"
            [ mathematicalDigestBytes
                (theoremIdDigest theorem)
            , cacheDigestBytes syntax
            , encodeCache (putPrefixContextIdCache prefix)
            ])

proofValidationKeyDigest
    :: ProofValidationKey
    -> CacheDigest
proofValidationKeyDigest (ProofValidationKey digest) =
    digest

data ProofValidationRecord = ProofValidationRecord
    !ProofValidationKey
    !ValidationCertificate
    deriving stock (Show, Eq, Ord, Generic)

proofValidationRecord
    :: ProofValidationKey
    -> ValidationCertificate
    -> ProofValidationRecord
proofValidationRecord =
    ProofValidationRecord

proofValidationRecordKey
    :: ProofValidationRecord
    -> ProofValidationKey
proofValidationRecordKey
        (ProofValidationRecord key _) =
    key

proofValidationRecordCertificate
    :: ProofValidationRecord
    -> ValidationCertificate
proofValidationRecordCertificate
        (ProofValidationRecord _ certificate) =
    certificate

newtype DeclarationValidationKey =
    DeclarationValidationKey CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

declarationValidationKey
    :: DeclarationSyntaxId
    -> PrefixContextId
    -> [ObjectId]
    -> [TheoremId]
    -> DeclarationValidationKey
declarationValidationKey
        (DeclarationSyntaxId syntax)
        prefix objects theorems =
    DeclarationValidationKey
        (hashCacheFields
            "felix-declaration-validation"
            [ cacheDigestBytes syntax
            , encodeCache (putPrefixContextIdCache prefix)
            , encodeCache (putCacheList putObjectIdCache objects)
            , encodeCache
                (putCacheList
                    (putMathematicalDigestCache . theoremIdDigest)
                    theorems)
            ])

declarationValidationKeyDigest
    :: DeclarationValidationKey
    -> CacheDigest
declarationValidationKeyDigest
        (DeclarationValidationKey digest) =
    digest

data DeclarationValidationRecord = DeclarationValidationRecord
    !DeclarationValidationKey
    ![ValidationCertificate]
    deriving stock (Show, Eq, Ord, Generic)

declarationValidationRecord
    :: DeclarationValidationKey
    -> [ValidationCertificate]
    -> DeclarationValidationRecord
declarationValidationRecord =
    DeclarationValidationRecord

declarationValidationRecordKey
    :: DeclarationValidationRecord
    -> DeclarationValidationKey
declarationValidationRecordKey
        (DeclarationValidationRecord key _) =
    key

declarationValidationRecordCertificates
    :: DeclarationValidationRecord
    -> [ValidationCertificate]
declarationValidationRecordCertificates
        (DeclarationValidationRecord _ certificates) =
    certificates


data ModuleArtifactKey = ModuleArtifactKey
    !ModuleName
    !ParsedModuleId
    ![SemanticInterfaceId]
    !TheoryId
    deriving stock (Show, Eq, Ord)

data ModuleArtifactKeyError
    = DuplicateModuleArtifactSemanticInput
        !SemanticInterfaceId
    deriving stock (Show, Eq)

moduleArtifactKey
    :: ModuleName
    -> ParsedModuleId
    -> [SemanticInterfaceId]
    -> TheoryId
    -> Either ModuleArtifactKeyError ModuleArtifactKey
moduleArtifactKey owner parsed direct theory = do
    rejectDuplicate
        DuplicateModuleArtifactSemanticInput
        direct
    pure (ModuleArtifactKey owner parsed direct theory)

moduleArtifactKeyOwner :: ModuleArtifactKey -> ModuleName
moduleArtifactKeyOwner (ModuleArtifactKey owner _parsed _direct _theory) =
    owner

moduleArtifactKeyDirectSemanticInputs
    :: ModuleArtifactKey
    -> [SemanticInterfaceId]
moduleArtifactKeyDirectSemanticInputs
        (ModuleArtifactKey _owner _parsed direct _theory) =
    direct

moduleArtifactKeyTheory :: ModuleArtifactKey -> TheoryId
moduleArtifactKeyTheory
        (ModuleArtifactKey _owner _parsed _direct theory) =
    theory

newtype ModuleArtifactId =
    ModuleArtifactId CacheDigest
    deriving stock (Show, Eq, Ord, Generic)
    deriving newtype (Hashable, NFData)

moduleArtifactId :: ModuleArtifactKey -> ModuleArtifactId
moduleArtifactId key =
    ModuleArtifactId
        (hashCacheFields
            "felix-module-artifact-v1"
            [encodeCache (putModuleArtifactKeyCache key)])

moduleArtifactIdDigest :: ModuleArtifactId -> CacheDigest
moduleArtifactIdDigest (ModuleArtifactId digest) =
    digest

data ModuleArtifactResult = ModuleArtifactResult
    !ModuleArtifactId
    !SyntaxInterfaceId
    !SemanticInterfaceId
    deriving stock (Show, Eq, Ord, Generic)
    deriving anyclass (NFData)

moduleArtifactResult
    :: ModuleArtifactKey
    -> SyntaxInterfaceId
    -> SemanticInterfaceId
    -> ModuleArtifactResult
moduleArtifactResult key =
    ModuleArtifactResult (moduleArtifactId key)

moduleArtifactResultId
    :: ModuleArtifactResult
    -> ModuleArtifactId
moduleArtifactResultId
        (ModuleArtifactResult identity _ _) =
    identity

moduleArtifactResultSyntax
    :: ModuleArtifactResult
    -> SyntaxInterfaceId
moduleArtifactResultSyntax
        (ModuleArtifactResult _ syntax _) =
    syntax

moduleArtifactResultSemantic
    :: ModuleArtifactResult
    -> SemanticInterfaceId
moduleArtifactResultSemantic
        (ModuleArtifactResult _ _ semantic) =
    semantic


putSemanticFactOccurrenceFingerprintCache
    :: SemanticFactOccurrenceFingerprint
    -> CachePut
putSemanticFactOccurrenceFingerprintCache
        (SemanticFactOccurrenceFingerprint digest) =
    putCacheDigest digest

getSemanticFactOccurrenceFingerprintCache
    :: CacheGet SemanticFactOccurrenceFingerprint
getSemanticFactOccurrenceFingerprintCache =
    SemanticFactOccurrenceFingerprint <$> getCacheDigest

putSemanticFactOccurrenceCache
    :: SemanticFactOccurrence
    -> CachePut
putSemanticFactOccurrenceCache
        (SemanticFactOccurrence slot authority eligibility) = do
    putFactSlotCache slot
    putFactAuthorityCache authority
    putEligibility eligibility

getSemanticFactOccurrenceCache
    :: CacheGet SemanticFactOccurrence
getSemanticFactOccurrenceCache =
    semanticFactOccurrence
        <$> getFactSlotCache
        <*> getFactAuthorityCache
        <*> getEligibility

putSemanticEnvironmentDeltaCache
    :: SemanticEnvironmentDelta
    -> CachePut
putSemanticEnvironmentDeltaCache EmptySemanticEnvironmentDelta =
    putCacheTag 0x00
putSemanticEnvironmentDeltaCache (SemanticGlobalBindings bindings) = do
    putCacheTag 0x01
    putCacheList putSemanticGlobalBindingCache bindings
putSemanticEnvironmentDeltaCache
        (SemanticGlobalBindingsAndStructures bindings structures) = do
    putCacheTag 0x02
    putCacheList putSemanticGlobalBindingCache bindings
    putCacheList putSemanticStructureDescriptorCache structures

getSemanticEnvironmentDeltaCache
    :: CacheGet SemanticEnvironmentDelta
getSemanticEnvironmentDeltaCache =
    getCacheTag >>= \case
        0x00 ->
            pure EmptySemanticEnvironmentDelta
        0x01 -> do
            bindings <- getCacheList getSemanticGlobalBindingCache
            either
                (fail . ("invalid semantic environment delta: " <>) . show)
                pure
                (semanticEnvironmentDelta bindings)
        0x02 -> do
            bindings <- getCacheList getSemanticGlobalBindingCache
            structures <- getCacheList getSemanticStructureDescriptorCache
            either
                (fail . ("invalid semantic environment delta: " <>) . show)
                pure
                (semanticEnvironmentWithStructures bindings structures)
        tag ->
            fail
                ("unknown semantic environment delta tag "
                    <> show tag)

putSemanticGlobalKeyCache :: SemanticGlobalKey -> CachePut
putSemanticGlobalKeyCache = \case
    SemanticLeftAdjective pat -> do
        putCacheTag 0x00
        putPatternCache pat
    SemanticRightAdjective pat -> do
        putCacheTag 0x01
        putPatternCache pat
    SemanticFunctionPhrase singular plural -> do
        putCacheTag 0x02
        putPatternCache singular
        putPatternCache plural
    SemanticNoun singular plural -> do
        putCacheTag 0x03
        putPatternCache singular
        putPatternCache plural
    SemanticVerb singular plural -> do
        putCacheTag 0x04
        putPatternCache singular
        putPatternCache plural
    SemanticRelation token arity -> do
        putCacheTag 0x05
        putTokenCache token
        putCacheNatural (parameterArityValue arity)
    SemanticExpressionFunction pat -> do
        putCacheTag 0x06
        putPatternCache pat
    SemanticPrefixPredicate command arity -> do
        putCacheTag 0x07
        putCacheText command
        putCacheNatural arity

getSemanticGlobalKeyCache :: CacheGet SemanticGlobalKey
getSemanticGlobalKeyCache =
    getCacheTag >>= \case
        0x00 -> SemanticLeftAdjective <$> getPatternCache
        0x01 -> SemanticRightAdjective <$> getPatternCache
        0x02 ->
            SemanticFunctionPhrase
                <$> getPatternCache
                <*> getPatternCache
        0x03 ->
            SemanticNoun
                <$> getPatternCache
                <*> getPatternCache
        0x04 ->
            SemanticVerb
                <$> getPatternCache
                <*> getPatternCache
        0x05 ->
            SemanticRelation
                <$> getTokenCache
                <*> (ParameterArity <$> getCacheNatural)
        0x06 -> SemanticExpressionFunction <$> getPatternCache
        0x07 ->
            SemanticPrefixPredicate
                <$> getCacheText
                <*> getCacheNatural
        tag ->
            fail ("unknown semantic global key tag " <> show tag)

putSemanticGlobalBindingCache :: SemanticGlobalBinding -> CachePut
putSemanticGlobalBindingCache (SemanticGlobalBinding key target) = do
    putSemanticGlobalKeyCache key
    case target of
        GlobalReference identity -> do
            putCacheTag 0x00
            putObjectIdCache identity
        TransparentExpansion identity -> do
            putCacheTag 0x01
            putObjectIdCache identity
        ContextualTransparentExpansion identity requirements -> do
            putCacheTag 0x02
            putObjectIdCache identity
            putCanonicalCacheMap
                (\(StructSymbol symbol) -> putCacheText symbol)
                putObjectIdCache
                requirements

getSemanticGlobalBindingCache :: CacheGet SemanticGlobalBinding
getSemanticGlobalBindingCache =
    SemanticGlobalBinding
        <$> getSemanticGlobalKeyCache
        <*> (getCacheTag >>= \case
                0x00 -> GlobalReference <$> getObjectIdCache
                0x01 -> TransparentExpansion <$> getObjectIdCache
                0x02 ->
                    ContextualTransparentExpansion
                        <$> getObjectIdCache
                        <*> getCanonicalCacheMap
                            (StructSymbol <$> getCacheText)
                            getObjectIdCache
                tag ->
                    fail
                        ("unknown semantic global target tag "
                            <> show tag))

putSemanticStructureDescriptorCache
    :: SemanticStructureDescriptor
    -> CachePut
putSemanticStructureDescriptorCache
        (SemanticStructureDescriptor structurePhrase predicate parents operations) = do
    putSemanticStructurePhraseCache structurePhrase
    putCacheMaybe putObjectIdCache predicate
    putCacheList putSemanticStructurePhraseCache parents
    putCacheList putSemanticStructureOperationCache operations

getSemanticStructureDescriptorCache
    :: CacheGet SemanticStructureDescriptor
getSemanticStructureDescriptorCache = do
    structurePhrase <- getSemanticStructurePhraseCache
    predicate <- getCacheMaybe getObjectIdCache
    parents <- getCacheList getSemanticStructurePhraseCache
    operations <- getCacheList getSemanticStructureOperationCache
    either
        (fail . ("invalid semantic structure descriptor: " <>) . show)
        pure
        (semanticStructureDescriptor structurePhrase predicate parents operations)

putSemanticStructurePhraseCache
    :: SemanticStructurePhrase
    -> CachePut
putSemanticStructurePhraseCache
        (SemanticStructurePhrase singular plural (Marker marker)) = do
    putPatternCache singular
    putPatternCache plural
    putCacheText marker

getSemanticStructurePhraseCache
    :: CacheGet SemanticStructurePhrase
getSemanticStructurePhraseCache =
    SemanticStructurePhrase
        <$> getPatternCache
        <*> getPatternCache
        <*> (Marker <$> getCacheText)

putSemanticStructureOperationCache
    :: SemanticStructureOperation
    -> CachePut
putSemanticStructureOperationCache
        (SemanticStructureOperation (StructSymbol symbol) object) = do
    putCacheText symbol
    putObjectIdCache object

getSemanticStructureOperationCache
    :: CacheGet SemanticStructureOperation
getSemanticStructureOperationCache =
    SemanticStructureOperation
        <$> (StructSymbol <$> getCacheText)
        <*> getObjectIdCache

putDeclarationInterfaceDeltaCache
    :: DeclarationInterfaceDelta
    -> CachePut
putDeclarationInterfaceDeltaCache
        (DeclarationInterfaceDelta
            slot facts aliases objects propositions environment) = do
    putDeclarationSlotCache slot
    putCacheList putSemanticFactOccurrenceCache facts
    putCacheList putSemanticAliasCache aliases
    putCacheList putObjectIdCache objects
    putCacheList putPropositionIdCache propositions
    putSemanticEnvironmentDeltaCache environment

getDeclarationInterfaceDeltaCache
    :: CacheGet DeclarationInterfaceDelta
getDeclarationInterfaceDeltaCache = do
    slot <- getDeclarationSlotCache
    facts <- getCacheList getSemanticFactOccurrenceCache
    aliases <- getCacheList getSemanticAliasCache
    objects <- getCacheList getObjectIdCache
    propositions <- getCacheList getPropositionIdCache
    environment <- getSemanticEnvironmentDeltaCache
    either
        (fail . ("invalid declaration interface delta: " <>) . show)
        pure
        (declarationInterfaceDelta
            slot facts aliases objects propositions environment)

putSemanticInterfaceCache :: SemanticInterface -> CachePut
putSemanticInterfaceCache
        (SemanticInterface owner direct declarations asserted) = do
    putModuleNameCache owner
    putCacheList putSemanticInterfaceIdCache direct
    putCacheList putDeclarationInterfaceDeltaCache declarations
    putSemanticInterfaceIdCache asserted

getSemanticInterfaceCache :: CacheGet SemanticInterface
getSemanticInterfaceCache = do
    owner <- getModuleNameCache
    direct <- getCacheList getSemanticInterfaceIdCache
    declarations <- getCacheList getDeclarationInterfaceDeltaCache
    asserted <- getSemanticInterfaceIdCache
    either
        (fail . ("invalid semantic interface: " <>) . show)
        pure
        (validateSemanticInterface
            owner direct declarations asserted)

putSemanticInterfaceIdCache :: SemanticInterfaceId -> CachePut
putSemanticInterfaceIdCache (SemanticInterfaceId digest) =
    putCacheDigest digest

getSemanticInterfaceIdCache :: CacheGet SemanticInterfaceId
getSemanticInterfaceIdCache =
    SemanticInterfaceId <$> getCacheDigest

putPrefixContextIdCache :: PrefixContextId -> CachePut
putPrefixContextIdCache (PrefixContextId digest) =
    putCacheDigest digest

getPrefixContextIdCache :: CacheGet PrefixContextId
getPrefixContextIdCache =
    PrefixContextId <$> getCacheDigest

putModuleArtifactKeyCache :: ModuleArtifactKey -> CachePut
putModuleArtifactKeyCache =
    putModuleArtifactKeyFields

getModuleArtifactKeyCache :: CacheGet ModuleArtifactKey
getModuleArtifactKeyCache = do
    owner <- getModuleNameCache
    parsed <- getParsedModuleIdCache
    direct <- getCacheList getSemanticInterfaceIdCache
    theory <- getTheoryIdCache
    either
        (fail . ("invalid module artifact key: " <>) . show)
        pure
        (moduleArtifactKey owner parsed direct theory)

putModuleArtifactIdCache :: ModuleArtifactId -> CachePut
putModuleArtifactIdCache (ModuleArtifactId digest) =
    putCacheDigest digest

getModuleArtifactIdCache :: CacheGet ModuleArtifactId
getModuleArtifactIdCache =
    ModuleArtifactId <$> getCacheDigest

putModuleArtifactResultCache
    :: ModuleArtifactResult
    -> CachePut
putModuleArtifactResultCache
        (ModuleArtifactResult identity syntax semantic) = do
    putModuleArtifactIdCache identity
    putSyntaxInterfaceIdCache syntax
    putSemanticInterfaceIdCache semantic

getModuleArtifactResultCache
    :: ModuleArtifactId
    -> CacheGet ModuleArtifactResult
getModuleArtifactResultCache expected = do
    asserted <- getModuleArtifactIdCache
    unless
        (asserted == expected)
        (fail "module artifact result ID mismatch")
    ModuleArtifactResult asserted
        <$> getSyntaxInterfaceIdCache
        <*> getSemanticInterfaceIdCache

putProofValidationRecordCache
    :: ProofValidationRecord
    -> CachePut
putProofValidationRecordCache
        (ProofValidationRecord key certificate) = do
    putProofValidationKeyCache key
    putValidationCertificateCache certificate

getProofValidationRecordCache
    :: CacheGet ProofValidationRecord
getProofValidationRecordCache =
    ProofValidationRecord
        <$> getProofValidationKeyCache
        <*> getValidationCertificateCache

putDeclarationValidationRecordCache
    :: DeclarationValidationRecord
    -> CachePut
putDeclarationValidationRecordCache
        (DeclarationValidationRecord key certificates) = do
    putDeclarationValidationKeyCache key
    putCacheList putValidationCertificateCache certificates

getDeclarationValidationRecordCache
    :: CacheGet DeclarationValidationRecord
getDeclarationValidationRecordCache =
    DeclarationValidationRecord
        <$> getDeclarationValidationKeyCache
        <*> getCacheList getValidationCertificateCache


putDeclarationSlotCache :: DeclarationSlot -> CachePut
putDeclarationSlotCache (DeclarationSlot owner ordinal) = do
    putModuleNameCache owner
    putCacheNatural (localDeclarationOrdinalValue ordinal)

getDeclarationSlotCache :: CacheGet DeclarationSlot
getDeclarationSlotCache =
    DeclarationSlot
        <$> getModuleNameCache
        <*> (localDeclarationOrdinal <$> getCacheNatural)

putFactSlotCache :: FactSlot -> CachePut
putFactSlotCache (FactSlot owner ordinal) = do
    putModuleNameCache owner
    putCacheNatural (localFactOrdinalValue ordinal)

getFactSlotCache :: CacheGet FactSlot
getFactSlotCache =
    FactSlot
        <$> getModuleNameCache
        <*> (localFactOrdinal <$> getCacheNatural)

putModuleNameCache :: ModuleName -> CachePut
putModuleNameCache owner = do
    putMathematicalDigestCache
        (sourceNamespaceDigest
            (moduleNameNamespace owner))
    putCacheText
        (Text.pack
            (safeRelativePathFilePath
                (moduleNameRelativePath owner)))

getModuleNameCache :: CacheGet ModuleName
getModuleNameCache = do
    namespace <-
        sourceNamespaceIdFromDigest
            <$> getMathematicalDigestCache
    rawPath <- Text.unpack <$> getCacheText
    relative <-
        either
            (fail . ("invalid cache module path: " <>) . show)
            pure
            (safeRelativePath rawPath)
    pure (moduleNameFromParts namespace relative)

putSemanticAliasCache :: SemanticAlias -> CachePut
putSemanticAliasCache (SemanticAlias name target) = do
    putSemanticNameCache name
    putSemanticFactOccurrenceFingerprintCache target

getSemanticAliasCache :: CacheGet SemanticAlias
getSemanticAliasCache =
    SemanticAlias
        <$> getSemanticNameCache
        <*> getSemanticFactOccurrenceFingerprintCache

putSemanticNameCache :: SemanticName -> CachePut
putSemanticNameCache (SemanticName name) =
    putCacheText name

getSemanticNameCache :: CacheGet SemanticName
getSemanticNameCache =
    SemanticName <$> getCacheText

putEligibility :: FactSearchEligibility -> CachePut
putEligibility = \case
    SearchEligible -> putCacheTag 0x00
    SearchIneligible -> putCacheTag 0x01

getEligibility :: CacheGet FactSearchEligibility
getEligibility =
    getCacheTag >>= \case
        0x00 -> pure SearchEligible
        0x01 -> pure SearchIneligible
        tag ->
            fail ("unknown fact-search eligibility tag " <> show tag)

putModuleArtifactKeyFields :: ModuleArtifactKey -> CachePut
putModuleArtifactKeyFields
        (ModuleArtifactKey owner parsed direct theory) = do
    putModuleNameCache owner
    putParsedModuleIdCache parsed
    putCacheList putSemanticInterfaceIdCache direct
    putTheoryIdCache theory

putProofValidationKeyCache :: ProofValidationKey -> CachePut
putProofValidationKeyCache (ProofValidationKey digest) =
    putCacheDigest digest

getProofValidationKeyCache :: CacheGet ProofValidationKey
getProofValidationKeyCache =
    ProofValidationKey <$> getCacheDigest

putDeclarationValidationKeyCache
    :: DeclarationValidationKey
    -> CachePut
putDeclarationValidationKeyCache
        (DeclarationValidationKey digest) =
    putCacheDigest digest

getDeclarationValidationKeyCache
    :: CacheGet DeclarationValidationKey
getDeclarationValidationKeyCache =
    DeclarationValidationKey <$> getCacheDigest

firstDuplicate :: Ord value => [value] -> Maybe value
firstDuplicate =
    go Set.empty
  where
    go _ [] =
        Nothing
    go seen (value : rest)
        | value `Set.member` seen =
            Just value
        | otherwise =
            go (Set.insert value seen) rest

rejectDuplicate
    :: Ord value
    => (value -> error)
    -> [value]
    -> Either error ()
rejectDuplicate makeError values =
    maybe
        (Right ())
        (Left . makeError)
        (firstDuplicate values)

strictlyIncreasing :: Ord value => [value] -> Bool
strictlyIncreasing values =
    and
        (zipWith (<) values (drop 1 values))