summaryrefslogtreecommitdiff
path: root/source/Felix/Verification.hs
blob: 572f3ce98c4885d28d0679c9701ecc91207c6d8c (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
{-# LANGUAGE ExplicitForAll #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE NoImplicitPrelude #-}
{-# LANGUAGE TupleSections #-}
{-# LANGUAGE NoMonomorphismRestriction #-}
{-# LANGUAGE RankNTypes #-}

module Felix.Verification
    ( VerificationSession
    , VerificationSessionError(..)
    , withVerificationSession
    , withVerificationSessionUsingStore
    , CheckRequest(..)
    , CheckOutcome(..)
    , checkWorkspace
    , StoreValidationMode(..)
    , WorkPosition
    , workPosition
    , workPositionModuleOrdinal
    , workPositionLocalRequestOrdinal
    , VerificationRequestObserver
    , verificationRequestObserver
    , PreparedVerificationRequest
    , SlowAtpOutcome(..)
    , SlowAtpTask(..)
    , SlowAtpReport(..)
    , slowAtpOmittedTaskCount
    , ProverAnswer
        ( CounterSatisfiable
        , ContradictoryAxioms
        , Uncertain
        , Error
        )
    , pattern Yes
    , VerificationResult(..)
    , VerificationPresentation
    , verificationHtmlPresentation
    , ReportedEscapeKind(..)
    , ReportedEscape(..)
    , VerificationReport(..)
    , VerificationDriverError(..)
    , VerificationDriverErrorKind(..)
    , verificationDriverErrorKind
    , renderVerificationDriverError
    , FailedVerification(..)
    , VerificationFailureReason(..)
    ) 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 (ParseWorkspaceError(..), ParsedSourceWorkspace)
import Felix.Parse qualified as Felix
import Felix.Prelude qualified as Prelude
import Felix.Provers
import Felix.Source
import Felix.Source.Graph (ResolvedSourceGraph)
import Felix.Store qualified as Store
import Render.Html.Export qualified as HtmlExport
import Report.Location
import Syntax.Abstract qualified as Raw
import Syntax.Interface qualified as Syntax

import Control.Exception qualified as Exception
import Control.Monad (unless)
import Data.Bifunctor (first)
import Data.IORef (atomicModifyIORef', newIORef)
import Data.List.NonEmpty qualified as NonEmpty
import Data.Map.Strict qualified as Map
import Data.Text qualified as Text
import Numeric.Natural (Natural)
import UnliftIO.Async qualified as Async

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>"

verificationHtmlPresentation
    :: VerificationPresentation
    -> HtmlExport.HtmlPresentation
verificationHtmlPresentation (VerificationPresentation presentation) =
    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)

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

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

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
    | 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
    | VerificationModuleArtifactKeyError !Semantic.ModuleArtifactKeyError
    | VerificationModuleSchedulerInvariant !Text
    deriving (Show)

instance Exception.Exception VerificationDriverError

data VerificationDriverErrorKind
    = VerificationSourceFailure
    | VerificationInfrastructureFailure
    deriving (Show, Eq)

verificationDriverErrorKind
    :: VerificationDriverError
    -> VerificationDriverErrorKind
verificationDriverErrorKind = \case
    VerificationWorkspaceError{} -> VerificationSourceFailure
    VerificationTypedInputError{} -> VerificationSourceFailure
    VerificationTypedModuleError _source failure _prefix ->
        case failure of
            Typed.TypedActionFailed{} -> VerificationSourceFailure
            _ -> VerificationInfrastructureFailure
    VerificationMissingImportedModule{} -> VerificationInfrastructureFailure
    VerificationMissingRootModule{} -> VerificationInfrastructureFailure
    VerificationFinalPreludeReadinessError{} ->
        VerificationInfrastructureFailure
    VerificationTypedOpenError{} -> VerificationInfrastructureFailure
    VerificationTypedCachedModuleError{} -> VerificationInfrastructureFailure
    VerificationValidationIntegrityError{} ->
        VerificationInfrastructureFailure
    VerificationAdmittedViewError{} -> VerificationInfrastructureFailure
    VerificationParsedArtifactIntegrityError{} ->
        VerificationInfrastructureFailure
    VerificationStoreFailure{} -> VerificationInfrastructureFailure
    VerificationModuleArtifactKeyError{} ->
        VerificationInfrastructureFailure
    VerificationModuleSchedulerInvariant{} ->
        VerificationInfrastructureFailure

renderVerificationDriverError :: VerificationDriverError -> Text
renderVerificationDriverError = \case
    VerificationWorkspaceError failure ->
        "Verification input failed: "
            <> Felix.renderParseWorkspaceError failure
    VerificationTypedInputError source failure ->
        "Typed module input failed in "
            <> resolvedSourceDisplay source
            <> ": " <> Typed.renderTypedModuleInputError failure
    VerificationTypedOpenError source failure ->
        "Typed module startup failed in "
            <> resolvedSourceDisplay source
            <> ": " <> Declaration.renderDriverOpenError failure
    VerificationTypedCachedModuleError source failure ->
        "Cached typed module is invalid in "
            <> resolvedSourceDisplay source
            <> ": " <> Typed.renderCachedTypedModuleError failure
    VerificationTypedModuleError source failure _prefix ->
        "Typed module checking failed in "
            <> resolvedSourceDisplay source
            <> ": " <> Typed.renderTypedModuleFailure failure
    VerificationValidationIntegrityError source failure ->
        "Typed module validation store is inconsistent in "
            <> resolvedSourceDisplay source
            <> ": " <> Declaration.renderValidationIntegrityError failure
    VerificationAdmittedViewError source failure ->
        "Typed admitted-source association is inconsistent in "
            <> resolvedSourceDisplay source
            <> ": " <> Text.pack (show failure)
    VerificationParsedArtifactIntegrityError source failure ->
        "Parsed artifact is inconsistent in "
            <> resolvedSourceDisplay source
            <> ": " <> Text.pack (show failure)
    VerificationStoreFailure failure ->
        "Verification store failed: " <> Store.renderStoreFailure failure
    VerificationModuleArtifactKeyError{} ->
        "Typed module artifact inputs are inconsistent."
    VerificationModuleSchedulerInvariant message ->
        "Typed module scheduler invariant failed: " <> message
    VerificationMissingImportedModule address ->
        "Verification could not find checked imported module "
            <> Text.pack (show address) <> "."
    VerificationMissingRootModule address ->
        "Verification could not find checked root module "
            <> Text.pack (show address) <> "."
    VerificationFinalPreludeReadinessError{} ->
        "The packaged final prelude failed."

resolvedSourceDisplay :: ResolvedSource -> Text
resolvedSourceDisplay source =
    sourceMountIdText (resolvedSourceMount source)
        <> ":"
        <> Text.pack (resolvedSourceLocationPath source)

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)

data VerificationSession = VerificationSession
    !Foundation.CheckedFoundation
    !Store.Store

data VerificationSessionError
    = VerificationSessionFoundationError
        !(NonEmpty Foundation.FoundationManifestError)
    | VerificationSessionStoreError !Store.StoreLifecycleError
    | VerificationSessionTheoryMismatch !Identity.TheoryId !Identity.TheoryId
    deriving (Show)

withVerificationSession
    :: Store.StoreLease
    -> (VerificationSession -> IO value)
    -> IO (Either VerificationSessionError value)
withVerificationSession lease action =
    case Foundation.checkedFoundation of
        Left failure ->
            pure (Left (VerificationSessionFoundationError failure))
        Right foundation -> do
            opened <- Store.withOpenStore
                lease
                (Identity.theoryId foundation)
                (\_startup store ->
                    action (VerificationSession foundation store))
            pure (first VerificationSessionStoreError opened)

-- | Borrow an already-open store while preserving the session's
-- foundation/store identity invariant.  The caller retains ownership of the
-- store lifetime; ordinary hosts should prefer 'withVerificationSession'.
withVerificationSessionUsingStore
    :: Store.Store
    -> (VerificationSession -> IO value)
    -> IO (Either VerificationSessionError value)
withVerificationSessionUsingStore store action =
    case Foundation.checkedFoundation of
        Left failure ->
            pure (Left (VerificationSessionFoundationError failure))
        Right foundation ->
            let expected = Identity.theoryId foundation
                actual = Store.storeTheoryId store
            in if expected == actual
                then Right <$> action (VerificationSession foundation store)
                else pure
                    (Left
                        (VerificationSessionTheoryMismatch expected actual))

data CheckRequest = CheckRequest
    { checkSourceGraph :: !ResolvedSourceGraph
    , checkStoreValidationMode :: !StoreValidationMode
    , checkEffectiveJobs :: !EffectiveJobs
    , checkVampire :: !Vampire
    , checkRequestObserver :: !VerificationRequestObserver
    }

data CheckOutcome = CheckOutcome
    { checkVerificationResult :: !VerificationResult
    , checkSlowAtpReport :: !SlowAtpReport
    }
    deriving (Show)

checkWorkspace
    :: VerificationSession
    -> CheckRequest
    -> IO (Either VerificationDriverError CheckOutcome)
checkWorkspace session request =
    Exception.try (checkWorkspaceThrowing session request)

checkWorkspaceThrowing
    :: VerificationSession
    -> CheckRequest
    -> IO CheckOutcome
checkWorkspaceThrowing
        (VerificationSession foundation store)
        request = do
    memo <- Store.newStoreMemo store
    storeCoordinator <- Store.newStoreCoordinator
    withVampireExecutor
        (checkEffectiveJobs request)
        (checkVampire request)
        (observeVerificationRequest (checkRequestObserver request))
        \executor -> do
            prelude <- withVampireRequestOwner executor \owner -> do
                preludeResolver <- typedVampireResolver owner 0
                Typed.acquireFinalPreludeSession
                    memo store foundation preludeResolver
                    >>= either
                        (throwIO . VerificationFinalPreludeReadinessError)
                        pure
            let preludeSyntax =
                    Typed.sealedTypedModuleSyntax
                        (Typed.finalPreludeModule prelude)
                syntaxInputs _source = [preludeSyntax]
            parsed <-
                Felix.parseResolvedSourceGraphWithStoreAndSyntaxInputsAndGraphValidation
                    store
                    (checkSourceGraph request)
                    syntaxInputs
                    (Prelude.rejectOrdinaryPreludeSourceGraph
                        (Typed.finalPreludeSource prelude))
                    >>= either throwParseExecutionError pure
            admittedResult <-
                checkTypedWorkspace
                    memo
                    storeCoordinator
                    foundation
                    prelude
                    executor
                    (checkEffectiveJobs request)
                    (checkStoreValidationMode request)
                    parsed
                    store
            slowReport <- vampireExecutorSlowAtpReport executor
            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
                                        parsed))
            pure (CheckOutcome result slowReport)
  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
    -> ParsedSourceWorkspace
    -> Store.Store
    -> IO TypedWorkspaceOutcome
checkTypedWorkspace
        memo
        storeCoordinator
        foundation
        prelude
        executor
        selectedJobs
        validationMode
        workspace
        store = do
    let modules =
            zipWith
                makeTask
                [1..]
                (toList
                    (Felix.parsedWorkspaceImportedBeforeImporter workspace))
        rootAddress =
            Felix.parsedModuleAddress
                (Felix.parsedWorkspaceRootModule workspace)
    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
            (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
                                (checkModule task sealedByAddress)
                                :: IO
                                    (Either
                                        Exception.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)
        input <-
            either
                (throwIO . VerificationTypedInputError source)
                pure
                (Typed.typedModuleInput
                    foundation
                    (Typed.finalPreludeReadiness prelude)
                    resolver
                    validationRun
                    parsed
                    direct)
        loadCachedModule parsed direct >>= \case
            Just sealed -> do
                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
                        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
    -> IO Declaration.VampireResolver
typedVampireResolver
        requestOwner moduleOrdinal = 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]
                        ]
            pure positions
        submit requests = do
            positions <- reserve requests
            traverse
                (\(position, Declaration.VampireSubmission location request) ->
                    submitVampireRequest
                        requestOwner position location request)
                (NonEmpty.zip positions requests)
    pure (Declaration.vampireSubmissionResolver submit)

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