summaryrefslogtreecommitdiff
path: root/source/Api.hs
blob: d9fca1df3c936482714da573a21a0d43b7fc79b3 (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
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
{-# LANGUAGE ExplicitForAll #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE NoMonomorphismRestriction #-}
{-# LANGUAGE RankNTypes #-}

module Api
    ( tokenize, TokStream
    , scan
    , parse
    , parseWorkspace
    , AuthorityFreeParseError(..)
    , renderAuthorityFreeParseError
    , simpleStream
    , builtins
    , ParseException(..)
    , verify, verifyMeasured
    , verifyWithObserverAndStoreMode
    , verifyMeasuredWithObserverAndStoreMode
    , verifyWithObserverAndStoreModeAndJobs
    , verifyMeasuredWithObserverAndStoreModeAndJobs
    , StoreValidationMode(..)
    , WorkPosition
    , workPosition
    , workPositionModuleOrdinal
    , workPositionLocalRequestOrdinal
    , VerificationRequestObserver
    , verificationRequestObserver
    , ProverAnswer
        ( CounterSatisfiable
        , ContradictoryAxioms
        , Uncertain
        , Error
        )
    , pattern Yes
    , VerificationResult(..)
    , VerificationPresentation
    , ReportedEscapeKind(..)
    , ReportedEscape(..)
    , VerificationReport(..)
    , VerificationMeasurements(..)
    , VerificationDriverError(..)
    , FailedVerification(..)
    , VerificationFailureReason(..)
    , prepareVerifiedHtmlExportResult
    , prepareDefaultSourceGraph
    , defaultHtmlMountPrefixes
    ) where


import Base
import Checking.Declaration qualified as Declaration
import Checking.Foundation qualified as Foundation
import Checking.Identity qualified as Identity
import Checking.Module qualified as Typed
import Checking.Semantic qualified as Semantic
import Felix.Module (localDeclarationOrdinal)
import Felix.Parse (ParseException(..), ParseWorkspaceError(..), ParsedSourceWorkspace)
import Felix.Parse qualified as Felix
import Felix.Prelude qualified as Prelude
import Felix.Source
import Felix.Store qualified as Store
import Felix.Source.Graph (ResolvedSourceGraph)
import Felix.Source.Graph qualified as SourceGraph
import Provers
import Render.Html.Export qualified as HtmlExport
import Render.Html.Output (PreparedHtmlArtifact)
import Report.Location
import Syntax.Abstract qualified as Raw
import Syntax.Adapt (scanChunk, ScannedLexicalItem)
import Syntax.Interface qualified as Syntax
import Syntax.Lexicon (builtins)
import Syntax.Token

import Control.Exception qualified as Exception
import Control.Monad.Logger
import Control.Monad (unless)
import Data.Bifunctor (first)
import Data.List.NonEmpty qualified as NonEmpty
import Data.Map.Strict qualified as Map
import Data.Text qualified as StrictText
import Data.Text.Encoding.Error (UnicodeException)
import Data.Text.IO qualified as Text
import Numeric.Natural (Natural)
import System.FilePath.Posix
import Text.Megaparsec hiding (failure, parse, Token, try)
import UnliftIO
import UnliftIO.Async qualified as Async
import UnliftIO.Directory
import UnliftIO.Environment

-- Renderer data follows the established current-directory, configured-library,
-- and debug-directory lookup policy.
findAndReadRendererFile
    :: FilePath
    -> IO (Either HtmlExport.HtmlExportError Text)
findAndReadRendererFile path = do
    rootsResult <- tryRendererIO do
        currentDir <- getCurrentDirectory
        configuredLibrary <- lookupEnv "NAPROCHE_LIB"
        let libraryDir =
                fromMaybe
                    (currentDir </> "library")
                    configuredLibrary
        pure
            [ currentDir </> path
            , libraryDir </> path
            , currentDir </> "debug" </> path
            ]
    case rootsResult of
        Left failure ->
            pure
                (Left
                    (HtmlExport.HtmlRendererDataLookupFailed
                        path
                        (StrictText.pack
                            (displayException failure))))
        Right candidates -> do
            selected <- selectRendererData path candidates
            case selected of
                Left failure ->
                    pure (Left failure)
                Right selectedPath -> do
                    readResult <- tryRendererRead
                        (Text.readFile selectedPath)
                    pure case readResult of
                        Left reason ->
                            Left
                                (HtmlExport.HtmlRendererDataReadFailed
                                    selectedPath
                                    reason)
                        Right contents ->
                            Right contents

selectRendererData
    :: FilePath
    -> [FilePath]
    -> IO (Either HtmlExport.HtmlExportError FilePath)
selectRendererData requested candidates =
    go candidates
  where
    go = \case
        [] ->
            pure
                (Left
                    (HtmlExport.HtmlRendererDataNotFound
                        requested
                        candidates))
        candidate : remaining -> do
            inspected <- tryRendererIO
                (doesFileExist candidate)
            case inspected of
                Left failure ->
                    pure
                        (Left
                            (HtmlExport.HtmlRendererDataLookupFailed
                                candidate
                                (StrictText.pack
                                    (displayException failure))))
                Right True ->
                    pure (Right candidate)
                Right False ->
                    go remaining

tryRendererIO :: IO value -> IO (Either IOException value)
tryRendererIO = Exception.try

tryRendererRead :: IO value -> IO (Either Text value)
tryRendererRead action =
    Exception.catch
        (Exception.catch
            (Right <$> action)
            renderIOException)
        renderUnicodeException
  where
    renderIOException :: IOException -> IO (Either Text value)
    renderIOException =
        pure . Left . StrictText.pack . displayException

    renderUnicodeException
        :: UnicodeException
        -> IO (Either Text value)
    renderUnicodeException =
        pure . Left . StrictText.pack . displayException

lexFile :: MonadIO io => FilePath -> io (Text, [[Located Token]])
lexFile file = do
    prepared <- liftIO (prepareDefaultSourceRequest file)
    (mounts, request) <- either throwWorkspaceError pure prepared
    loaded <-
        liftIO (resolveAndLoadRoot mounts request)
            >>= either throwIO pure
    let source = loadedSource loaded
        raw = loadedText loaded
        locationPath = resolvedSourceLocationPath source
        canonicalPath =
            canonicalPathFilePath
                (resolvedSourceCanonicalPath source)
    registration <-
        registerFilePathWithDisplay
            canonicalPath
            locationPath
    fileId <- either
        (throwIO . SourceLocationRegistrationFailed source)
        pure
        registration
    case runLexer fileId locationPath raw of
        Left tokenError ->
            throwIO (TokenError (errorBundlePretty tokenError))
        Right (_imports, chunks) ->
            pure (raw, chunks)

-- | Throws a 'ParseException' when tokenizing fails.
tokenize :: MonadIO io => FilePath -> io TokStream
tokenize file = do
    (raw, chunks) <- lexFile file
    pure (TokStream raw chunks)

-- | Scan the given file for lexical items. The actual parsing process
-- builds one workspace lexicon instead.
scan :: MonadIO io => FilePath -> io [ScannedLexicalItem]
scan input = do
    tokenStream <- tokenize input
    fmap (concatMap (fmap unLocated)) $
        traverse
            (either (throwIO . LexicalScanFailure) pure . scanChunk)
            (unTokStream tokenStream)


-- | Parse a file. Throws an 'AuthorityFreeParseError' when packaged-prelude
-- loading/parsing or ordinary workspace parsing fails.
parse :: MonadIO io => FilePath -> io [Raw.Block]
parse file = do
    result <- parseWorkspace file
    either throwIO pure result

data AuthorityFreeParseError
    = AuthorityFreePreludeLoadFailed !Prelude.PreludeLoadError
    | AuthorityFreePreludeParseFailed !Prelude.PreludeParseError
    | AuthorityFreeWorkspaceFailed !ParseWorkspaceError
    deriving (Show)

instance Exception AuthorityFreeParseError

renderAuthorityFreeParseError :: AuthorityFreeParseError -> Text
renderAuthorityFreeParseError = \case
    AuthorityFreePreludeLoadFailed failure ->
        "packaged final prelude loading failed: "
            <> Prelude.renderPreludeLoadError failure
    AuthorityFreePreludeParseFailed failure ->
        "packaged final prelude parsing failed: "
            <> Prelude.renderPreludeParseError failure
    AuthorityFreeWorkspaceFailed failure ->
        Felix.renderParseWorkspaceError failure

parseWorkspace
    :: MonadIO io
    => FilePath
    -> io (Either AuthorityFreeParseError [Raw.Block])
parseWorkspace file =
    fmap Felix.importedBeforeImporterBlocks
        <$> liftIO (parseDefaultWorkspaceWithPrelude file)

parseDefaultWorkspaceWithPrelude
    :: FilePath
    -> IO
        (Either
            AuthorityFreeParseError
            ParsedSourceWorkspace)
parseDefaultWorkspaceWithPrelude file =
    Prelude.loadReservedPreludeSourceInput >>= \case
        Left failure ->
            pure (Left (AuthorityFreePreludeLoadFailed failure))
        Right source ->
            Prelude.parseReservedPreludeSource source >>= \case
                Left failure ->
                    pure (Left (AuthorityFreePreludeParseFailed failure))
                Right prelude -> do
                    prepared <- prepareDefaultSourceRequest file
                    case prepared of
                        Left failure ->
                            pure
                                (Left
                                    (AuthorityFreeWorkspaceFailed failure))
                        Right (mounts, request) -> do
                            let syntax =
                                    Felix.identifiedParsedModuleSyntaxInterface
                                        (Prelude.reservedParsedPreludeModule
                                            prelude)
                            fmap
                                (first AuthorityFreeWorkspaceFailed . fmap fst)
                                (Felix.parseSourceWorkspaceMeasuredWithSyntaxInputsAndGraphValidation
                                    mounts
                                    request
                                    (const [syntax])
                                    (Prelude.rejectOrdinaryPreludeSourceGraph
                                        source))

prepareDefaultSourceRequest
    :: FilePath
    -> IO (Either ParseWorkspaceError (SourceMounts, RootRequest))
prepareDefaultSourceRequest file = do
    mountsResult <- prepareDefaultSourceMounts
    requestResult <- classifyRootRequest file
    pure case (mountsResult, requestResult) of
        (Left err, _) ->
            Left (SourceWorkspaceError err)
        (_, Left err) ->
            Left (SourceWorkspaceError err)
        (Right mounts, Right request) ->
            Right (mounts, request)

prepareDefaultSourceGraph
    :: FilePath
    -> IO (Either ParseWorkspaceError ResolvedSourceGraph)
prepareDefaultSourceGraph file = do
    prepared <- prepareDefaultSourceRequest file
    case prepared of
        Left sourceFailure ->
            pure (Left sourceFailure)
        Right (mounts, request) ->
            first SourceWorkspaceError
                <$> SourceGraph.buildResolvedSourceGraph mounts request

prepareDefaultSourceMounts :: IO (Either SourceError SourceMounts)
prepareDefaultSourceMounts = do
    currentDir <- getCurrentDirectory
    configuredLibrary <- lookupEnv "NAPROCHE_LIB"
    let libraryDir = configuredLibrary ?? (currentDir </> "library")
        debugDir = currentDir </> "debug"
    prepareSourceMounts
        [ (sourceMountId "project", currentDir)
        , (sourceMountId "library", libraryDir)
        , (sourceMountId "debug", debugDir)
        ]

classifyRootRequest :: FilePath -> IO (Either SourceError RootRequest)
classifyRootRequest file
    | isAbsolute file =
        existingRoot file
    | otherwise =
        pure (searchedRoot file)

throwWorkspaceError :: MonadIO io => ParseWorkspaceError -> io a
throwWorkspaceError = \case
    SourceWorkspaceError err ->
        throwIO err
    err@(SourceLexiconCollision _) ->
        throwIO err
    err@(SourceSyntaxPragmaError _source _pragmaError) ->
        throwIO err
    err@(SourceSyntaxDeclarationError _source _declarationError) ->
        throwIO err
    err@(SourceSyntaxMaterializationError _materializationError) ->
        throwIO err
    err@(SourceParsedModuleKeyError _source _keyError) ->
        throwIO err
    SourceParseError _source err ->
        throwIO err


simpleStream :: TokStream -> [[Token]]
simpleStream TokStream{unTokStream=chunks} = [unLocated <$> ch | ch <- chunks]

data VerificationResult
    = VerificationCompleted
        !VerificationReport
        !VerificationPresentation
    | CompletedWithExplicitGaps
        !VerificationReport
        !VerificationPresentation
    | VerificationFailure !VerificationReport !FailedVerification
    | VerificationCheckingFailure
        !VerificationReport
        !VerificationDriverError
    deriving (Show)

-- | Strict owner-independent source presentation retained only after the
-- complete typed workspace succeeds.
data VerificationPresentation = VerificationPresentation
    !HtmlExport.HtmlPresentation

instance Show VerificationPresentation where
    show _presentation =
        "VerificationPresentation <HTML presentation>"

data ReportedEscapeKind
    = ReportedSourceAxiom
    | ReportedOmitted
    deriving (Show, Eq)

data ReportedEscape = ReportedEscape
    { reportedEscapeKind :: !ReportedEscapeKind
    , reportedEscapeLocation :: !Location
    }
    deriving (Show, Eq)

data VerificationReport = VerificationReport
    { verificationDirectEscapes :: ![ReportedEscape]
    }
    deriving (Show, Eq)

-- | Invocation-local observation of the verification pipeline.
--
-- Durations use the monotonic clock and are never part of fact authority or
-- deterministic verification results.
data VerificationMeasurements = VerificationMeasurements
    { verificationParseMeasurements :: !Felix.ParseMeasurements
    , verificationSourcePreparationNanoseconds :: !Word64
    , verificationInvocationNanoseconds :: !Word64
    , verificationCheckingNanoseconds :: !Word64
    , verificationModuleCount :: !Int
    , verificationDetectedProcessorCount :: !(Maybe Int)
    , verificationEffectiveJobs :: !Int
    , verificationJobsOverridden :: !Bool
    , verificationMaximumLiveModuleCheckers :: !Int
    , verificationMaximumLiveVampireProcesses :: !Int
    , verificationMaximumReadyModuleCount :: !Int
    , verificationObligationBatchCount :: !Int
    , verificationPreparedObligationCount :: !Int
    , verificationMaximumObligationBatchSize :: !Int
    , verificationPreparedRequestBytes :: !Word64
    , verificationRequestPreparationNanoseconds :: !Word64
    , verificationVampireRunCount :: !Int
    , verificationModuleRootHitCount :: !Int
    , verificationModuleRootMissCount :: !Int
    , verificationFirstVampireStartNanoseconds
        :: !(Maybe Word64)
    , verificationFinalVampireSubmissionNanoseconds
        :: !(Maybe Word64)
    , verificationFinalVampireCompletionNanoseconds
        :: !(Maybe Word64)
    , verificationVampireExecutionNanoseconds :: !Word64
    , verificationLongestVampireExecutionNanoseconds :: !Word64
    }
    deriving (Show, Eq)

data VerificationObservation = VerificationObservation
    { observedModuleCount :: !Int
    , observedDetectedProcessorCount :: !(Maybe Int)
    , observedEffectiveJobs :: !Int
    , observedJobsOverridden :: !Bool
    , observedLiveModuleCheckers :: !Int
    , observedMaximumLiveModuleCheckers :: !Int
    , observedMaximumLiveVampireProcesses :: !Int
    , observedMaximumReadyModuleCount :: !Int
    , observedObligationBatchCount :: !Int
    , observedPreparedObligationCount :: !Int
    , observedMaximumObligationBatchSize :: !Int
    , observedPreparedRequestBytes :: !Word64
    , observedRequestPreparationNanoseconds :: !Word64
    , observedVampireRunCount :: !Int
    , observedModuleRootHitCount :: !Int
    , observedModuleRootMissCount :: !Int
    , observedFirstVampireStart :: !(Maybe Word64)
    , observedFinalVampireSubmission :: !(Maybe Word64)
    , observedFinalVampireCompletion :: !(Maybe Word64)
    , observedVampireExecutionNanoseconds :: !Word64
    , observedLongestVampireExecutionNanoseconds :: !Word64
    }

initialVerificationObservation :: VerificationObservation
initialVerificationObservation =
    VerificationObservation
        { observedModuleCount = 0
        , observedDetectedProcessorCount = Nothing
        , observedEffectiveJobs = 1
        , observedJobsOverridden = False
        , observedLiveModuleCheckers = 0
        , observedMaximumLiveModuleCheckers = 0
        , observedMaximumLiveVampireProcesses = 0
        , observedMaximumReadyModuleCount = 0
        , observedObligationBatchCount = 0
        , observedPreparedObligationCount = 0
        , observedMaximumObligationBatchSize = 0
        , observedPreparedRequestBytes = 0
        , observedRequestPreparationNanoseconds = 0
        , observedVampireRunCount = 0
        , observedModuleRootHitCount = 0
        , observedModuleRootMissCount = 0
        , observedFirstVampireStart = Nothing
        , observedFinalVampireSubmission = Nothing
        , observedFinalVampireCompletion = Nothing
        , observedVampireExecutionNanoseconds = 0
        , observedLongestVampireExecutionNanoseconds = 0
        }

newtype VerificationRequestObserver = VerificationRequestObserver
    { observeVerificationRequest
        :: WorkPosition
        -> PreparedVerificationRequest
        -> IO ()
    }

verificationRequestObserver
    :: (WorkPosition
        -> PreparedVerificationRequest
        -> IO ())
    -> VerificationRequestObserver
verificationRequestObserver =
    VerificationRequestObserver

ignoreVerificationRequests :: VerificationRequestObserver
ignoreVerificationRequests =
    VerificationRequestObserver \_ordinal _request -> pure ()

data FailedVerification = FailedVerification
    { failedVerificationLocation :: !Location
    , failedVerificationReason :: !VerificationFailureReason
    }
    deriving (Show)

data VerificationFailureReason
    = CountermodelFailure !Text
    | ContradictoryInputFailure !Text
    | IndeterminateFailure !Text
    | ProtocolFailure !Text !Text
    | TransportFailure !ProverProcessError
    deriving (Show)

verificationFailureReason
    :: Either ProverProcessError ProverAnswer
    -> Maybe VerificationFailureReason
verificationFailureReason = \case
    Left processError ->
        Just (TransportFailure processError)
    Right Yes ->
        Nothing
    Right (CounterSatisfiable tptp) ->
        Just (CountermodelFailure tptp)
    Right (ContradictoryAxioms tptp) ->
        Just (ContradictoryInputFailure tptp)
    Right (Uncertain tptp) ->
        Just (IndeterminateFailure tptp)
    Right (Error taskLabel message) ->
        Just (ProtocolFailure taskLabel message)

data VerificationDriverError
    = VerificationWorkspaceError
        !ParseWorkspaceError
    | VerificationFoundationManifestError
        !(NonEmpty Foundation.FoundationManifestError)
    | VerificationMissingImportedModule
        !ResolvedSourceAddress
    | VerificationMissingRootModule
        !ResolvedSourceAddress
    | VerificationFinalPreludeReadinessError
        !Typed.FinalPreludeReadinessError
    | VerificationTypedInputError
        !ResolvedSource
        !Typed.TypedModuleInputError
    | VerificationTypedOpenError
        !ResolvedSource
        !Declaration.DriverOpenError
    | VerificationTypedCachedModuleError
        !ResolvedSource
        !Typed.CachedTypedModuleError
    | VerificationTypedModuleError
        !ResolvedSource
        !Typed.TypedModuleFailure
        !Declaration.PendingModulePrefix
    | VerificationValidationIntegrityError
        !ResolvedSource
        !Declaration.ValidationIntegrityError
    | VerificationAdmittedViewError
        !ResolvedSource
        !AdmittedViewError
    | VerificationParsedArtifactIntegrityError
        !ResolvedSource
        !Felix.ParsedArtifactIntegrityError
    | VerificationStoreFailure !Store.StoreFailure
    | VerificationStorePlanningFailure !Store.StorePlanningError
    | VerificationStoreLifecycleFailure !Store.StoreLifecycleError
    | VerificationModuleArtifactKeyError !Semantic.ModuleArtifactKeyError
    | VerificationModuleSchedulerInvariant !Text
    deriving (Show)

instance Exception VerificationDriverError

data TypedWorkspaceOutcome
    = TypedWorkspaceSucceeded
        !AdmittedTypedWorkspace
    | TypedWorkspaceRejected
        !AdmittedTypedWorkspace
        !TypedWorkspaceFailure

data TypedWorkspaceFailure
    = TypedWorkspaceCheckingRejected !VerificationDriverError
    | TypedWorkspaceProverRejected !FailedVerification

data ModuleTask = ModuleTask
    { moduleTaskOrdinal :: !Natural
    , moduleTaskParsed :: !Felix.ParsedModule
    , moduleTaskDirectAddresses :: ![ResolvedSourceAddress]
    }

data ModuleCheckResult
    = ModuleCheckSucceeded
        !ResolvedSourceAddress
        !Typed.SealedTypedModule
        !AdmittedTypedModule
    | ModuleCheckRejected
        !AdmittedTypedModule
        !TypedWorkspaceFailure

data ModuleFailureCandidate = ModuleFailureCandidate
    !Natural
    !AdmittedTypedModule
    !TypedWorkspaceFailure

data AdmittedTypedDeclaration = AdmittedTypedDeclaration
    !Semantic.DeclarationSlot
    !Typed.TypedSourceDeclaration

newtype AdmittedTypedModule = AdmittedTypedModule
    [AdmittedTypedDeclaration]

newtype AdmittedTypedWorkspace = AdmittedTypedWorkspace
    [AdmittedTypedModule]

data AdmittedViewError
    = AdmittedDeclarationCountMismatch
        !Int
        !Int
    | AdmittedDeclarationSlotMismatch
        ![Semantic.DeclarationSlot]
        ![Semantic.DeclarationSlot]
    deriving (Show, Eq)

completeAdmittedModule
    :: Typed.IdentifiedModuleInput
    -> AdmittedTypedModule
completeAdmittedModule input =
    AdmittedTypedModule
        (uncurry AdmittedTypedDeclaration <$> expectedDeclarations input)

checkedAdmittedModule
    :: Bool
    -> Typed.IdentifiedModuleInput
    -> Declaration.PendingModulePrefix
    -> Either AdmittedViewError AdmittedTypedModule
checkedAdmittedModule requireComplete input prefix = do
    let expected = expectedDeclarations input
        expectedSlots = fst <$> expected
        actualSlots =
            Declaration.committedBatchSlot
                <$> Declaration.pendingModulePrefixBatches prefix
        admittedCount = length actualSlots
    if requireComplete
        then unless
            (admittedCount == length expected)
            (Left
                (AdmittedDeclarationCountMismatch
                    (length expected)
                    admittedCount))
        else unless
            (admittedCount <= length expected)
            (Left
                (AdmittedDeclarationCountMismatch
                    (length expected)
                    admittedCount))
    unless
        (actualSlots == take admittedCount expectedSlots)
        (Left
            (AdmittedDeclarationSlotMismatch
                (take admittedCount expectedSlots)
                actualSlots))
    pure
        (AdmittedTypedModule
            [ AdmittedTypedDeclaration slot declaration
            | (slot, declaration) <- take admittedCount expected
            ])

expectedDeclarations
    :: Typed.IdentifiedModuleInput
    -> [(Semantic.DeclarationSlot, Typed.TypedSourceDeclaration)]
expectedDeclarations input =
    zipWith
        (\ordinal declaration ->
            ( Semantic.declarationSlot
                (Typed.identifiedModuleOwner input)
                (localDeclarationOrdinal ordinal)
            , declaration
            ))
        [0..]
        (Typed.typedSourceDeclarations
            (Typed.identifiedModuleParsed input))

data StoreValidationMode
    = FreshStoreValidation
    | WarmStoreValidation
    deriving (Show, Eq)

verifyWithObserverAndStoreMode
    :: (MonadUnliftIO io, MonadLogger io)
    => Store.Store
    -> StoreValidationMode
    -> VerificationRequestObserver
    -> Vampire
    -> FilePath
    -> io (Either VerificationDriverError VerificationResult)
verifyWithObserverAndStoreMode store validationMode observer prover file =
    verifyWithObserverAndStoreModeAndJobs
        store validationMode sequentialJobs observer prover file

verifyWithObserverAndStoreModeAndJobs
    :: (MonadUnliftIO io, MonadLogger io)
    => Store.Store
    -> StoreValidationMode
    -> JobsSelection
    -> VerificationRequestObserver
    -> Vampire
    -> FilePath
    -> io (Either VerificationDriverError VerificationResult)
verifyWithObserverAndStoreModeAndJobs
        store validationMode jobs observer prover file =
    fmap (fmap fst)
        (verifyMeasuredWithObserverAndStoreModeAndJobs
            store validationMode jobs observer prover file)

verifyMeasuredWithObserverAndStoreMode
    :: (MonadUnliftIO io, MonadLogger io)
    => Store.Store
    -> StoreValidationMode
    -> VerificationRequestObserver
    -> Vampire
    -> FilePath
    -> io
        (Either
            VerificationDriverError
            (VerificationResult, VerificationMeasurements))
verifyMeasuredWithObserverAndStoreMode
        store validationMode observer prover file =
    verifyMeasuredWithObserverAndStoreModeAndJobs
        store validationMode sequentialJobs observer prover file

verifyMeasuredWithObserverAndStoreModeAndJobs
    :: (MonadUnliftIO io, MonadLogger io)
    => Store.Store
    -> StoreValidationMode
    -> JobsSelection
    -> VerificationRequestObserver
    -> Vampire
    -> FilePath
    -> io
        (Either
            VerificationDriverError
            (VerificationResult, VerificationMeasurements))
verifyMeasuredWithObserverAndStoreModeAndJobs
        store validationMode jobs observer prover file =
    try
        (verifyMeasuredThrowingWithStore
            store validationMode jobs observer prover file)

sequentialJobs :: JobsSelection
sequentialJobs =
    JobsSelection
        { jobsSelectionDetectedProcessors = Nothing
        , jobsSelectionEffectiveJobs =
            fromMaybe
                (impossible "one is not a positive worker count")
                (effectiveJobs 1)
        , jobsSelectionWasOverridden = True
        }

verifyMeasured
    :: (MonadUnliftIO io, MonadLogger io)
    => Vampire
    -> FilePath
    -> io
        (Either
            VerificationDriverError
            (VerificationResult, VerificationMeasurements))
verifyMeasured prover file =
    verifyMeasuredWithObserver
        ignoreVerificationRequests
        prover
        file

verifyMeasuredWithObserver
    :: (MonadUnliftIO io, MonadLogger io)
    => VerificationRequestObserver
    -> Vampire
    -> FilePath
    -> io
        (Either
            VerificationDriverError
            (VerificationResult, VerificationMeasurements))
verifyMeasuredWithObserver observer prover file =
    try (verifyMeasuredThrowing observer prover file)

verifyMeasuredThrowing
    :: (MonadUnliftIO io, MonadLogger io)
    => VerificationRequestObserver
    -> Vampire
    -> FilePath
    -> io (VerificationResult, VerificationMeasurements)
verifyMeasuredThrowing requestObserver prover file = do
    foundation <-
        either
            (throwIO . VerificationFoundationManifestError)
            pure
            Foundation.checkedFoundation
    planned <- liftIO (Store.planStore Store.FreshTemporaryStore)
    plan <- either
        (throwIO . VerificationStorePlanningFailure)
        pure
        planned
    withRunInIO \runInIO ->
        Store.withStoreLease plan \lease -> do
            opened <- Store.withOpenStore
                lease
                (Identity.theoryId foundation)
                (\_startup store ->
                    runInIO
                        (verifyMeasuredThrowingWithStore
                            store
                            FreshStoreValidation
                            sequentialJobs
                            requestObserver
                            prover
                            file))
            either
                (throwIO . VerificationStoreLifecycleFailure)
                pure
                opened

verifyMeasuredThrowingWithStore
    :: (MonadUnliftIO io, MonadLogger io)
    => Store.Store
    -> StoreValidationMode
    -> JobsSelection
    -> VerificationRequestObserver
    -> Vampire
    -> FilePath
    -> io (VerificationResult, VerificationMeasurements)
verifyMeasuredThrowingWithStore
        store validationMode jobsSelection requestObserver prover file = do
    invocationStart <- liftIO getMonotonicTimeNSec
    memo <- liftIO (Store.newStoreMemo store)
    storeCoordinator <- liftIO Store.newStoreCoordinator
    ( admittedResult
      , parseMeasurements
      , sourcePreparation
      , checkingStart
      , checkingEnd
      , observation
      , parsedPresentation
      ) <-
        liftIO
          (withVampireExecutor
            (jobsSelectionEffectiveJobs jobsSelection)
            prover
            (observeVerificationRequest requestObserver)
            \executor -> do
            observationRef <- newIORef
                initialVerificationObservation
                    { observedDetectedProcessorCount =
                        jobsSelectionDetectedProcessors jobsSelection
                    , observedEffectiveJobs =
                        effectiveJobsValue
                            (jobsSelectionEffectiveJobs jobsSelection)
                    , observedJobsOverridden =
                        jobsSelectionWasOverridden jobsSelection
                    }
            foundation <-
                either
                    (throwIO
                        . VerificationFoundationManifestError)
                    pure
                    Foundation.checkedFoundation
            preparationStart <- getMonotonicTimeNSec
            prepared <-
                prepareDefaultSourceRequest file
                    >>= either
                        (throwIO . VerificationWorkspaceError)
                        pure
            let (mounts, request) = prepared
            preparationEnd <- getMonotonicTimeNSec
            prelude <- withVampireRequestOwner executor \owner -> do
                preludeResolver <-
                    typedVampireResolver
                        owner
                        0
                        observationRef
                Typed.acquireFinalPreludeSession
                    memo store foundation preludeResolver
                    >>= either
                        (throwIO
                            . VerificationFinalPreludeReadinessError)
                        pure
            observeModuleRootAcquisition observationRef
                (Typed.finalPreludeAcquisition prelude)
            let preludeSyntax =
                    Typed.sealedTypedModuleSyntax
                        (Typed.finalPreludeModule prelude)
                syntaxInputs _source = [preludeSyntax]
            (parsed, measured) <-
                Felix.parseSourceWorkspaceMeasuredWithStoreAndSyntaxInputsAndGraphValidation
                    store
                    mounts
                    request
                    syntaxInputs
                    (Prelude.rejectOrdinaryPreludeSourceGraph
                        (Typed.finalPreludeSource prelude))
                    >>= either throwParseExecutionError pure
            checkingStart <- getMonotonicTimeNSec
            outcome <-
                checkTypedWorkspace
                    memo
                    storeCoordinator
                    foundation
                    prelude
                    executor
                    (jobsSelectionEffectiveJobs jobsSelection)
                    validationMode
                    observationRef
                    parsed
                    store
            checkingEnd <- getMonotonicTimeNSec
            executorObserved <- vampireExecutorObservation executor
            mergeExecutorObservation observationRef executorObserved
            observed <- readIORef observationRef
            pure
                ( outcome
                , measured
                , preparationEnd - preparationStart
                , checkingStart
                , checkingEnd
                , observed
                , parsed
                ))
    let result =
            case admittedResult of
                TypedWorkspaceRejected admitted failure ->
                    let report = admittedWorkspaceReport admitted
                    in case failure of
                        TypedWorkspaceCheckingRejected checkingFailure ->
                            VerificationCheckingFailure
                                report checkingFailure
                        TypedWorkspaceProverRejected proverFailure ->
                            VerificationFailure report proverFailure
                TypedWorkspaceSucceeded admitted ->
                    completedResult
                        (admittedWorkspaceReport admitted)
                        (VerificationPresentation
                            (HtmlExport.htmlPresentationFromParsedWorkspace
                                parsedPresentation))
        measurements =
            finalizeVerificationMeasurements
                invocationStart
                checkingStart
                checkingEnd
                parseMeasurements
                sourcePreparation
                observation
    logInfoN
        (renderVerificationMeasurements measurements)
    pure (result, measurements)
  where
    throwParseExecutionError = \case
        Felix.ParseExecutionWorkspaceError failure ->
            throwIO (VerificationWorkspaceError failure)
        Felix.ParseExecutionStoreFailure failure ->
            throwIO (VerificationStoreFailure failure)
        Felix.ParseExecutionArtifactIntegrityFailure source failure ->
            throwIO
                (VerificationParsedArtifactIntegrityError source failure)

checkTypedWorkspace
    :: Store.StoreMemo
    -> Store.StoreCoordinator
    -> Foundation.CheckedFoundation
    -> Typed.FinalPreludeSession
    -> VampireExecutor
    -> EffectiveJobs
    -> StoreValidationMode
    -> IORef VerificationObservation
    -> ParsedSourceWorkspace
    -> Store.Store
    -> IO TypedWorkspaceOutcome
checkTypedWorkspace
        memo
        storeCoordinator
        foundation
        prelude
        executor
        selectedJobs
        validationMode
        observationRef
        workspace
        store = do
    let modules =
            zipWith
                makeTask
                [1..]
                (toList
                    (Felix.parsedWorkspaceImportedBeforeImporter workspace))
        rootAddress =
            Felix.parsedModuleAddress
                (Felix.parsedWorkspaceRootModule workspace)
    atomicModifyIORef' observationRef
        (\observation ->
            ( observation
                { observedModuleCount = length modules
                }
            , ()
            ))
    scheduleModules
        rootAddress
        modules
        Map.empty
        Map.empty
        Map.empty
        Nothing
  where
    workerBound = effectiveJobsValue selectedJobs

    makeTask ordinal parsed =
        ModuleTask
            { moduleTaskOrdinal = ordinal
            , moduleTaskParsed = parsed
            , moduleTaskDirectAddresses =
                nubOrd
                    (Felix.parsedImportedAddress
                        <$> Felix.parsedModuleImports parsed)
            }

    scheduleModules
        rootAddress
        pending
        running
        sealedByAddress
        admittedByOrdinal
        candidate = do
            let readyCount =
                    length
                        [ ()
                        | task <- pending
                        , taskMayStart candidate sealedByAddress task
                        ]
            observeReadyModules observationRef readyCount
            (pending', running') <-
                startReadyModules
                    pending
                    running
                    sealedByAddress
                    candidate
            Exception.onException
              (if Map.null running'
                then case candidate of
                    Just selected
                        | any
                            (\task ->
                                moduleTaskOrdinal task
                                    < candidateOrdinal selected)
                            pending' ->
                                throwIO
                                    (VerificationModuleSchedulerInvariant
                                        "an earlier module is not terminal")
                        | otherwise ->
                            pure
                                (TypedWorkspaceRejected
                                    (admittedWorkspaceThrough
                                        admittedByOrdinal
                                        selected)
                                    (candidateFailure selected))
                    Nothing
                        | null pending' -> do
                            unless
                                (Map.member rootAddress sealedByAddress)
                                (throwIO
                                    (VerificationMissingRootModule
                                        rootAddress))
                            pure
                                (TypedWorkspaceSucceeded
                                    (completeAdmittedWorkspace
                                        admittedByOrdinal))
                        | otherwise ->
                            throwIO
                                (VerificationModuleSchedulerInvariant
                                    "no ready module and no running module")
                else do
                    (_completedAsync, (ordinal, completed)) <-
                        Async.waitAny (Map.elems running')
                    let runningWithoutCompleted =
                            Map.delete ordinal running'
                    case completed of
                        Left fatal -> do
                            cancelModuleCheckers runningWithoutCompleted
                            Exception.throwIO fatal
                        Right (ModuleCheckSucceeded
                                address sealed admittedModule) ->
                            scheduleModules
                                rootAddress
                                pending'
                                runningWithoutCompleted
                                (Map.insert address sealed sealedByAddress)
                                (Map.insert
                                    ordinal
                                    admittedModule
                                    admittedByOrdinal)
                                candidate
                        Right (ModuleCheckRejected
                                admittedModule failure) -> do
                            let selected =
                                    chooseEarlierFailure
                                        candidate
                                        (ModuleFailureCandidate
                                            ordinal
                                            admittedModule
                                            failure)
                                cutoff = candidateOrdinal selected
                                (later, retained) =
                                    Map.partitionWithKey
                                        (\runningOrdinal _async ->
                                            runningOrdinal > cutoff)
                                        runningWithoutCompleted
                            cancelModuleCheckers later
                            scheduleModules
                                rootAddress
                                pending'
                                retained
                                sealedByAddress
                                admittedByOrdinal
                                (Just selected)
              )
              (cancelModuleCheckers running')

    startReadyModules
        pending
        running
        sealedByAddress
        candidate
        | Map.size running >= workerBound =
            pure (pending, running)
        | otherwise =
            case extractFirstReady candidate sealedByAddress pending of
                Nothing ->
                    pure (pending, running)
                Just (task, remaining) -> do
                    checker <- Async.async do
                        completed <-
                            (Exception.try
                                (observeModuleChecker observationRef
                                    (checkModule task sealedByAddress))
                                :: IO
                                    (Either
                                        SomeException
                                        ModuleCheckResult))
                        pure (moduleTaskOrdinal task, completed)
                    startReadyModules
                        remaining
                        (Map.insert
                            (moduleTaskOrdinal task)
                            checker
                            running)
                        sealedByAddress
                        candidate

    checkModule task sealedByAddress =
      withVampireRequestOwner executor \requestOwner -> do
        let parsed = moduleTaskParsed task
            source = Felix.parsedModuleResolved parsed
            address = Felix.parsedModuleAddress parsed
        direct <-
            traverse
                (\directAddress ->
                    maybe
                        (throwIO
                            (VerificationMissingImportedModule
                                directAddress))
                        pure
                        (Map.lookup directAddress sealedByAddress))
                (moduleTaskDirectAddresses task)
        resolver <-
            typedVampireResolver
                requestOwner
                (moduleTaskOrdinal task)
                observationRef
        input <-
            either
                (throwIO . VerificationTypedInputError source)
                pure
                (Typed.typedModuleInput
                    foundation
                    (Typed.finalPreludeReadiness prelude)
                    resolver
                    validationRun
                    parsed
                    direct)
        loadCachedModule parsed direct >>= \case
            Just sealed -> do
                observeModuleRootAcquisition
                    observationRef Typed.ModuleRootHit
                pure
                    (ModuleCheckSucceeded
                        address
                        sealed
                        (completeAdmittedModule
                            (Typed.identifiedPhysicalModule parsed)))
            Nothing -> do
                typedResult <-
                    Exception.catch
                        (Typed.runTypedModule input)
                        (\failure ->
                            throwIO
                                (VerificationValidationIntegrityError
                                    source
                                    failure))
                case typedResult of
                    Typed.TypedModuleOpenFailed err ->
                        throwIO (VerificationTypedOpenError source err)
                    Typed.TypedModuleFailed err prefix -> do
                        let driverFailure =
                                VerificationTypedModuleError
                                    source err prefix
                        case classifyTypedModuleFailure err of
                            TypedIntegrityFailure ->
                                throwIO driverFailure
                            TypedCheckingRejection ->
                                reportFailure
                                    parsed
                                    prefix
                                    (TypedWorkspaceCheckingRejected
                                        driverFailure)
                            TypedVerificationRejection failed ->
                                reportFailure
                                    parsed
                                    prefix
                                    (TypedWorkspaceProverRejected failed)
                            TypedProverFailure failed ->
                                reportFailure
                                    parsed
                                    prefix
                                    (TypedWorkspaceProverRejected failed)
                    Typed.TypedModuleSucceeded sealed -> do
                        admittedModule <-
                            either
                                (throwIO
                                    . VerificationAdmittedViewError source)
                                pure
                                (checkedAdmittedModule
                                    True
                                    (Typed.identifiedPhysicalModule parsed)
                                    (Typed.sealedTypedModulePrefix sealed))
                        persistSealed
                            (Typed.identifiedPhysicalModule parsed)
                            sealed
                        observeModuleRootAcquisition
                            observationRef Typed.ModuleRootMiss
                        pure
                            (ModuleCheckSucceeded
                                address sealed admittedModule)

    reportFailure parsed prefix failure = do
        let source = Felix.parsedModuleResolved parsed
        admittedModule <-
            either
                (throwIO . VerificationAdmittedViewError source)
                pure
                (checkedAdmittedModule
                    False
                    (Typed.identifiedPhysicalModule parsed)
                    prefix)
        Store.withStoreCoordinator storeCoordinator
            (Store.writePendingModulePrefix store prefix)
            >>= either
                (throwIO . VerificationStoreFailure)
                pure
        pure (ModuleCheckRejected admittedModule failure)

    storeValidationLookup lookupStore =
        Declaration.validationLookup
            (\key ->
                Store.withStoreCoordinator storeCoordinator
                    (Store.loadProofValidation lookupStore key)
                    >>= either
                        (throwIO . VerificationStoreFailure)
                        pure)
            (\key ->
                Store.withStoreCoordinator storeCoordinator
                    (Store.loadDeclarationValidation lookupStore key)
                    >>= either
                        (throwIO . VerificationStoreFailure)
                        pure)

    validationRun =
        case validationMode of
            FreshStoreValidation ->
                Declaration.FreshValidation
            WarmStoreValidation ->
                Declaration.WarmValidation
                    (storeValidationLookup store)

    persistSealed input sealed = do
        artifactKey <-
            either
                (throwIO . VerificationModuleArtifactKeyError)
                pure
                (Semantic.moduleArtifactKey
                    (Typed.identifiedModuleOwner input)
                    (Felix.identifiedParsedModuleId
                        (Typed.identifiedModuleParsed input))
                    (Semantic.semanticInterfaceDirectInputs
                        (Typed.sealedTypedModuleSemantic sealed))
                    (Identity.theoryId foundation))
        let artifact =
                Semantic.moduleArtifactResult
                    artifactKey
                    (Syntax.moduleSyntaxAssertedId
                        (Typed.sealedTypedModuleSyntax sealed))
                    (Semantic.semanticInterfaceAssertedId
                        (Typed.sealedTypedModuleSemantic sealed))
        acknowledged <-
            Store.withStoreCoordinator storeCoordinator
                (Store.writeSealedModule
                    store
                    (Typed.sealedTypedModulePrefix sealed)
                    [Typed.sealedTypedModuleSyntax sealed]
                    [Typed.sealedTypedModuleSemantic sealed]
                    artifact)
                >>= either
                    (throwIO . VerificationStoreFailure)
                    pure
        unless
            (acknowledged == artifact)
            (throwIO
                (VerificationStoreFailure
                    Store.StoreModuleArtifactIdMismatch))

    loadCachedModule parsed direct =
        case validationMode of
            WarmStoreValidation -> do
                let owner =
                        Typed.identifiedModuleOwner
                            (Typed.identifiedPhysicalModule parsed)
                    directSemantic =
                        Semantic.semanticInterfaceAssertedId
                            (Typed.sealedTypedModuleSemantic
                                (Typed.finalPreludeModule prelude))
                        : ( Semantic.semanticInterfaceAssertedId
                                . Typed.sealedTypedModuleSemantic
                                <$> direct
                          )
                artifactKey <-
                    either
                        (throwIO . VerificationModuleArtifactKeyError)
                        pure
                        (Semantic.moduleArtifactKey
                            owner
                            (Felix.identifiedParsedModuleId
                                (Typed.identifiedModuleParsed
                                    (Typed.identifiedPhysicalModule parsed)))
                            directSemantic
                            (Identity.theoryId foundation))
                loaded <-
                    Store.withStoreCoordinator storeCoordinator
                        (Store.loadCachedModuleInstallation
                            memo
                            store
                            artifactKey
                            (Syntax.moduleSyntaxAssertedId
                                (Felix.parsedModuleSyntaxInterface parsed)))
                case loaded of
                    Left failure ->
                        throwIO (VerificationStoreFailure failure)
                    Right Nothing ->
                        pure Nothing
                    Right (Just installation) ->
                        either
                            (throwIO
                                . VerificationTypedCachedModuleError
                                    (Felix.parsedModuleResolved parsed))
                            (pure . Just)
                            (Typed.cachedSealedTypedModule
                                foundation
                                (Typed.finalPreludeModule prelude : direct)
                                installation)
            FreshStoreValidation ->
                pure Nothing

    taskMayStart candidate sealedByAddress task =
        maybe True
            (moduleTaskOrdinal task <)
            (candidateOrdinal <$> candidate)
            && all
                (`Map.member` sealedByAddress)
                (moduleTaskDirectAddresses task)

    extractFirstReady candidate sealedByAddress = go []
      where
        go _before [] = Nothing
        go before (task : after)
            | taskMayStart candidate sealedByAddress task =
                Just (task, reverse before <> after)
            | otherwise =
                go (task : before) after

    chooseEarlierFailure Nothing incoming = incoming
    chooseEarlierFailure (Just current) incoming
        | candidateOrdinal incoming < candidateOrdinal current = incoming
        | otherwise = current

    candidateOrdinal (ModuleFailureCandidate ordinal _admitted _failure) =
        ordinal

    candidateFailure (ModuleFailureCandidate _ordinal _admitted failure) =
        failure

    candidateAdmitted (ModuleFailureCandidate _ordinal admitted _failure) =
        admitted

    completeAdmittedWorkspace admittedByOrdinal =
        AdmittedTypedWorkspace
            ( completeAdmittedModule (Typed.finalPreludeInput prelude)
                : fmap snd (Map.toAscList admittedByOrdinal)
            )

    admittedWorkspaceThrough admittedByOrdinal selected =
        let cutoff = candidateOrdinal selected
            earlier = Map.filterWithKey
                (\ordinal _admitted -> ordinal < cutoff)
                admittedByOrdinal
        in AdmittedTypedWorkspace
            ( completeAdmittedModule (Typed.finalPreludeInput prelude)
                : ( fmap snd (Map.toAscList earlier)
                        <> [candidateAdmitted selected]
                  )
            )

    cancelModuleCheckers running = do
        traverse_ Async.cancel (Map.elems running)
        traverse_ Async.waitCatch (Map.elems running)

data TypedFailureClassification
    = TypedCheckingRejection
    | TypedVerificationRejection !FailedVerification
    | TypedProverFailure !FailedVerification
    | TypedIntegrityFailure

-- | Classify failures at the typed checking boundary conservatively.
--
-- Only source elaboration and recognized prover outcomes may retain an
-- admitted source report.  Every declaration/sealing invariant, including a
-- future constructor not explicitly recognized below, remains fatal.
classifyTypedModuleFailure
    :: Typed.TypedModuleFailure
    -> TypedFailureClassification
classifyTypedModuleFailure = \case
    Typed.TypedActionFailed{} ->
        TypedCheckingRejection
    Typed.TypedDeclarationFailed
            (Declaration.ProofObligationFailedAt
                location
                (Declaration.VampireProcessFailed processError)) ->
        classifyTypedProverResult location (Left processError)
    Typed.TypedDeclarationFailed
            (Declaration.ProofObligationFailedAt
                location
                (Declaration.VampireObligationRejected answer)) ->
        classifyTypedProverResult location (Right answer)
    _failure ->
        TypedIntegrityFailure

classifyTypedProverResult
    :: Location
    -> Either ProverProcessError ProverAnswer
    -> TypedFailureClassification
classifyTypedProverResult location result =
    case verificationFailureReason result of
        Nothing ->
            TypedIntegrityFailure
        Just reason ->
            let failed = FailedVerification location reason
            in case reason of
                CountermodelFailure{} ->
                    TypedVerificationRejection failed
                ContradictoryInputFailure{} ->
                    TypedVerificationRejection failed
                IndeterminateFailure{} ->
                    TypedProverFailure failed
                ProtocolFailure{} ->
                    TypedProverFailure failed
                TransportFailure{} ->
                    TypedProverFailure failed

typedVampireResolver
    :: VampireRequestOwner
    -> Natural
    -> IORef VerificationObservation
    -> IO Declaration.VampireResolver
typedVampireResolver
        requestOwner moduleOrdinal observationRef = do
    localOrdinalRef <- newIORef 1
    let reserve requests = do
            let batchSize = NonEmpty.length requests
                ordinalCount = fromIntegral batchSize
            firstOrdinal <- atomicModifyIORef' localOrdinalRef
                (\current -> (current + ordinalCount, current))
            let positions =
                    NonEmpty.fromList
                        [ workPosition moduleOrdinal ordinal
                        | ordinal <-
                            [firstOrdinal .. firstOrdinal + ordinalCount - 1]
                        ]
                preparedBytes =
                    foldl'
                        (\total request ->
                            total
                                + fromIntegral
                                    (preparedVerificationByteCount request))
                        0
                        requests
            atomicModifyIORef' observationRef \observation ->
                ( observation
                    { observedObligationBatchCount =
                        observedObligationBatchCount observation + 1
                    , observedPreparedObligationCount =
                        observedPreparedObligationCount observation + batchSize
                    , observedMaximumObligationBatchSize =
                        max batchSize
                            (observedMaximumObligationBatchSize observation)
                    , observedPreparedRequestBytes =
                        observedPreparedRequestBytes observation
                            + preparedBytes
                    }
                , ()
                )
            pure positions
        submit requests = do
            positions <- reserve requests
            traverse
                (uncurry (submitVampireRequest requestOwner))
                (NonEmpty.zip positions requests)
        observe elapsed =
            atomicModifyIORef' observationRef \observation ->
                ( observation
                    { observedRequestPreparationNanoseconds =
                        observedRequestPreparationNanoseconds observation
                            + elapsed
                    }
                , ()
                )
    pure (Declaration.vampireSubmissionResolver submit observe)

observeModuleRootAcquisition
    :: IORef VerificationObservation
    -> Typed.ModuleRootAcquisition
    -> IO ()
observeModuleRootAcquisition observationRef acquisition =
    atomicModifyIORef' observationRef \observation ->
        ( case acquisition of
            Typed.ModuleRootHit ->
                observation
                    { observedModuleRootHitCount =
                        observedModuleRootHitCount observation + 1
                    }
            Typed.ModuleRootMiss ->
                observation
                    { observedModuleRootMissCount =
                        observedModuleRootMissCount observation + 1
                    }
        , ()
        )

observeReadyModules
    :: IORef VerificationObservation
    -> Int
    -> IO ()
observeReadyModules observationRef readyCount =
    atomicModifyIORef' observationRef \observation ->
        ( observation
            { observedMaximumReadyModuleCount =
                max readyCount
                    (observedMaximumReadyModuleCount observation)
            }
        , ()
        )

observeModuleChecker
    :: IORef VerificationObservation
    -> IO value
    -> IO value
observeModuleChecker observationRef action = do
    atomicModifyIORef' observationRef \observation ->
        let live = observedLiveModuleCheckers observation + 1
        in
            ( observation
                { observedLiveModuleCheckers = live
                , observedMaximumLiveModuleCheckers =
                    max live
                        (observedMaximumLiveModuleCheckers observation)
                }
            , ()
            )
    action `Exception.finally`
        atomicModifyIORef' observationRef
            (\observation ->
                ( observation
                    { observedLiveModuleCheckers =
                        observedLiveModuleCheckers observation - 1
                    }
                , ()
                ))

mergeExecutorObservation
    :: IORef VerificationObservation
    -> VampireExecutorObservation
    -> IO ()
mergeExecutorObservation observationRef executorObserved =
    atomicModifyIORef' observationRef \observation ->
        ( observation
            { observedVampireRunCount =
                vampireExecutorRunCount executorObserved
            , observedMaximumLiveVampireProcesses =
                vampireExecutorMaximumLiveCount executorObserved
            , observedFirstVampireStart =
                vampireExecutorFirstStartNanoseconds executorObserved
            , observedFinalVampireSubmission =
                vampireExecutorFinalSubmissionNanoseconds executorObserved
            , observedFinalVampireCompletion =
                vampireExecutorFinalCompletionNanoseconds executorObserved
            , observedVampireExecutionNanoseconds =
                vampireExecutorExecutionNanoseconds executorObserved
            , observedLongestVampireExecutionNanoseconds =
                vampireExecutorLongestExecutionNanoseconds executorObserved
            }
        , ()
        )

finalizeVerificationMeasurements
    :: Word64
    -> Word64
    -> Word64
    -> Felix.ParseMeasurements
    -> Word64
    -> VerificationObservation
    -> VerificationMeasurements
finalizeVerificationMeasurements
        invocationStart
        checkingStart
        checkingEnd
        parseMeasurements
        sourcePreparation
        observation =
    VerificationMeasurements
        { verificationParseMeasurements =
            parseMeasurements
        , verificationSourcePreparationNanoseconds =
            sourcePreparation
        , verificationInvocationNanoseconds =
            checkingEnd - invocationStart
        , verificationCheckingNanoseconds =
            checkingEnd - checkingStart
        , verificationModuleCount =
            observedModuleCount observation
        , verificationDetectedProcessorCount =
            observedDetectedProcessorCount observation
        , verificationEffectiveJobs =
            observedEffectiveJobs observation
        , verificationJobsOverridden =
            observedJobsOverridden observation
        , verificationMaximumLiveModuleCheckers =
            observedMaximumLiveModuleCheckers observation
        , verificationMaximumLiveVampireProcesses =
            observedMaximumLiveVampireProcesses observation
        , verificationMaximumReadyModuleCount =
            observedMaximumReadyModuleCount observation
        , verificationObligationBatchCount =
            observedObligationBatchCount observation
        , verificationPreparedObligationCount =
            observedPreparedObligationCount observation
        , verificationMaximumObligationBatchSize =
            observedMaximumObligationBatchSize observation
        , verificationPreparedRequestBytes =
            observedPreparedRequestBytes observation
        , verificationRequestPreparationNanoseconds =
            observedRequestPreparationNanoseconds observation
        , verificationVampireRunCount =
            observedVampireRunCount observation
        , verificationModuleRootHitCount =
            observedModuleRootHitCount observation
        , verificationModuleRootMissCount =
            observedModuleRootMissCount observation
        , verificationFirstVampireStartNanoseconds =
            fmap
                (\started -> started - invocationStart)
                (observedFirstVampireStart observation)
        , verificationFinalVampireSubmissionNanoseconds =
            fmap
                (\submitted -> submitted - invocationStart)
                (observedFinalVampireSubmission observation)
        , verificationFinalVampireCompletionNanoseconds =
            fmap
                (\completed -> completed - invocationStart)
                (observedFinalVampireCompletion observation)
        , verificationVampireExecutionNanoseconds =
            observedVampireExecutionNanoseconds observation
        , verificationLongestVampireExecutionNanoseconds =
            observedLongestVampireExecutionNanoseconds observation
        }

renderVerificationMeasurements
    :: VerificationMeasurements
    -> Text
renderVerificationMeasurements measurements =
    StrictText.unwords
        [ "M0"
        , "source_setup_ms="
            <> renderNanoseconds
                (verificationSourcePreparationNanoseconds
                    measurements)
        , "resolution_ms="
            <> renderNanoseconds
                (Felix.parseMeasurementResolutionNanoseconds
                    parseMeasurements)
        , "candidate_probes=" <> renderIntegral
            (Felix.parseMeasurementCandidateProbeCount
                parseMeasurements)
        , "canonicalizations=" <> renderIntegral
            (Felix.parseMeasurementCanonicalizationCount
                parseMeasurements)
        , "target_inspections=" <> renderIntegral
            (Felix.parseMeasurementTargetInspectionCount
                parseMeasurements)
        , "tokenization_ms="
            <> renderNanoseconds
                (Felix.parseMeasurementTokenizationNanoseconds
                    parseMeasurements)
        , "scanning_ms="
            <> renderNanoseconds
                (Felix.parseMeasurementScanningNanoseconds
                    parseMeasurements)
        , "syntax_interface_ms="
            <> renderNanoseconds
                (Felix.parseMeasurementSyntaxInterfaceNanoseconds
                    parseMeasurements)
        , "parsing_ms="
            <> renderNanoseconds
                (Felix.parseMeasurementParsingNanoseconds
                    parseMeasurements)
        , "parsed_hits=" <> renderIntegral
            (Felix.parseMeasurementParsedHitCount parseMeasurements)
        , "parsed_misses=" <> renderIntegral
            (Felix.parseMeasurementParsedMissCount parseMeasurements)
        , "parser_tables=" <> renderIntegral
            (Felix.parseMeasurementParserTableMaterializationCount
                parseMeasurements)
        , "modules=" <> renderIntegral
            (verificationModuleCount measurements)
        , "detected_processors="
            <> maybe
                "unavailable"
                renderIntegral
                (verificationDetectedProcessorCount measurements)
        , "effective_jobs=" <> renderIntegral
            (verificationEffectiveJobs measurements)
        , "jobs_overridden="
            <> if verificationJobsOverridden measurements
                then "yes"
                else "no"
        , "max_module_checkers=" <> renderIntegral
            (verificationMaximumLiveModuleCheckers measurements)
        , "max_vampire_processes=" <> renderIntegral
            (verificationMaximumLiveVampireProcesses measurements)
        , "files_read=" <> renderIntegral
            (Felix.parseMeasurementModuleCount
                parseMeasurements)
        , "import_occurrences=" <> renderIntegral
            (Felix.parseMeasurementImportOccurrenceCount
                parseMeasurements)
        , "chunks=" <> renderIntegral
            (Felix.parseMeasurementChunkCount
                parseMeasurements)
        , "source_bytes=" <> renderIntegral
            (Felix.parseMeasurementSourceByteCount
                parseMeasurements)
        , "checking_ms="
            <> renderNanoseconds
                (verificationCheckingNanoseconds
                    measurements)
        , "batches=" <> renderIntegral
            (verificationObligationBatchCount measurements)
        , "obligations=" <> renderIntegral
            (verificationPreparedObligationCount measurements)
        , "max_batch=" <> renderIntegral
            (verificationMaximumObligationBatchSize
                measurements)
        , "prepared_bytes=" <> renderIntegral
            (verificationPreparedRequestBytes measurements)
        , "request_preparation_ms="
            <> renderNanoseconds
                (verificationRequestPreparationNanoseconds measurements)
        , "vampire_runs=" <> renderIntegral
            (verificationVampireRunCount measurements)
        , "module_root_hits=" <> renderIntegral
            (verificationModuleRootHitCount measurements)
        , "module_root_misses=" <> renderIntegral
            (verificationModuleRootMissCount measurements)
        , "first_vampire_ms="
            <> maybe
                "none"
                renderNanoseconds
                (verificationFirstVampireStartNanoseconds
                    measurements)
        , "vampire_ms="
            <> renderNanoseconds
                (verificationVampireExecutionNanoseconds
                    measurements)
        , "final_submission_ms="
            <> maybe
                "none"
                renderNanoseconds
                (verificationFinalVampireSubmissionNanoseconds
                    measurements)
        , "final_completion_ms="
            <> maybe
                "none"
                renderNanoseconds
                (verificationFinalVampireCompletionNanoseconds
                    measurements)
        , "vampire_span_ms="
            <> maybe
                "none"
                renderNanoseconds
                (vampireExecutionSpan measurements)
        , "longest_vampire_ms="
            <> renderNanoseconds
                (verificationLongestVampireExecutionNanoseconds
                    measurements)
        , "max_ready_modules=" <> renderIntegral
            (verificationMaximumReadyModuleCount
                measurements)
        , "total_ms="
            <> renderNanoseconds
                (verificationInvocationNanoseconds
                    measurements)
        ]
  where
    parseMeasurements =
        verificationParseMeasurements measurements

    vampireExecutionSpan measured = do
        started <- verificationFirstVampireStartNanoseconds measured
        completed <- verificationFinalVampireCompletionNanoseconds measured
        pure (completed - started)

renderNanoseconds :: Word64 -> Text
renderNanoseconds nanoseconds =
    renderIntegral (nanoseconds `div` 1000000)

renderIntegral :: Show number => number -> Text
renderIntegral =
    StrictText.pack . show

admittedWorkspaceReport
    :: AdmittedTypedWorkspace
    -> VerificationReport
admittedWorkspaceReport (AdmittedTypedWorkspace modules) =
    VerificationReport
        { verificationDirectEscapes =
            concatMap admittedModuleEscapes modules
        }

admittedModuleEscapes
    :: AdmittedTypedModule
    -> [ReportedEscape]
admittedModuleEscapes (AdmittedTypedModule declarations) =
    concatMap admittedDeclarationEscapes declarations

admittedDeclarationEscapes
    :: AdmittedTypedDeclaration
    -> [ReportedEscape]
admittedDeclarationEscapes
        (AdmittedTypedDeclaration _slot declaration) =
    axiomEscape <> proofEscapes
  where
    axiomEscape =
        case Typed.typedSourceDeclarationHead declaration of
            Raw.BlockAxiom location _title _marker _axiom ->
                [ReportedEscape ReportedSourceAxiom location]
            _ ->
                []
    proofEscapes =
        maybe [] omittedProofEscapes
            (Typed.typedSourceDeclarationProof declaration)

omittedProofEscapes :: Raw.Proof -> [ReportedEscape]
omittedProofEscapes = \case
    Raw.Omitted location ->
        [ReportedEscape ReportedOmitted location]
    Raw.Qed{} ->
        []
    Raw.Contradiction{} ->
        []
    Raw.ByCase _location cases ->
        concatMap (omittedProofEscapes . Raw.caseProof) cases
    Raw.ByContradiction _location proof ->
        omittedProofEscapes proof
    Raw.BySetInduction _location _term proof ->
        omittedProofEscapes proof
    Raw.ByOrdInduction _location proof ->
        omittedProofEscapes proof
    Raw.Assume _location _statement proof ->
        omittedProofEscapes proof
    Raw.FixSymbolic _location _variables _bound proof ->
        omittedProofEscapes proof
    Raw.FixSuchThat _location _variables _statement proof ->
        omittedProofEscapes proof
    Raw.Calc _location _quantifier _calculation proof ->
        omittedProofEscapes proof
    Raw.TakeVar _location _variables _bound _statement _justification proof ->
        omittedProofEscapes proof
    Raw.TakeNoun _location _noun _justification proof ->
        omittedProofEscapes proof
    Raw.Have _location _condition _statement _justification proof ->
        omittedProofEscapes proof
    Raw.Suffices _location _statement _justification proof ->
        omittedProofEscapes proof
    Raw.Subclaim _location _statement subproof continuation ->
        omittedProofEscapes subproof <> omittedProofEscapes continuation
    Raw.Define _location _variable _expression proof ->
        omittedProofEscapes proof
    Raw.DefineFunction
            _location _function _argument _value _domainVariable _domain
            proof ->
        omittedProofEscapes proof
    Raw.DefineFunctionLocal
            _location _function _argument _domain _target _ruleVariable
            _rules proof ->
        omittedProofEscapes proof

completedResult
    :: VerificationReport
    -> VerificationPresentation
    -> VerificationResult
completedResult report presentation
    | any ((== ReportedOmitted) . reportedEscapeKind)
        (verificationDirectEscapes report) =
            CompletedWithExplicitGaps report presentation
    | otherwise =
        VerificationCompleted report presentation

verify
    :: (MonadUnliftIO io, MonadLogger io)
    => Vampire
    -> FilePath
    -> io (Either VerificationDriverError VerificationResult)
verify prover file =
    fmap fst <$> verifyMeasured prover file

prepareVerifiedHtmlExportResult
    :: MonadIO io
    => VerificationPresentation
    -> io (Either HtmlExport.HtmlExportError [PreparedHtmlArtifact])
prepareVerifiedHtmlExportResult
        (VerificationPresentation workspace) = liftIO do
    hintsResult <- findAndReadRendererFile "lexicon.tsv"
    pure do
        hints <- hintsResult
        HtmlExport.prepareHtmlExport
            defaultHtmlMountPrefixes
            workspace
            hints

defaultHtmlMountPrefixes :: [(SourceMountId, [Text])]
defaultHtmlMountPrefixes =
    [ (sourceMountId "project", [])
    , (sourceMountId "library", ["library"])
    , (sourceMountId "debug", ["debug"])
    ]