summaryrefslogtreecommitdiff
path: root/source/Checking/Module.hs
blob: de292c434c41879330b1020a6e758597f2d5a090 (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
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE NoImplicitPrelude #-}

-- | Explicit inputs and sealed outputs for the typed module driver.
module Checking.Module
    ( LiveModuleBinding(..)
    , IdentifiedModuleInput
    , identifiedPhysicalModule
    , identifiedReservedPrelude
    , identifiedModuleOwner
    , identifiedModuleBinding
    , identifiedModuleParsed
    , SealedTypedModule
    , sealedTypedModuleOwner
    , sealedTypedModuleSyntax
    , sealedTypedModuleSemantic
    , sealedTypedModuleEvidence
    , CachedTypedModuleError(..)
    , renderCachedTypedModuleError
    , cachedSealedTypedModule
    , sealedTypedModulePrefix
    , MigrationPreludeSession
    , migrationPreludeInput
    , migrationPreludeModule
    , BootstrapWalkingReadiness
    , bootstrapWalkingReadiness
    , bootstrapWalkingReadinessFromSealed
    , BootstrapCompilerReadiness
    , bootstrapCompilerReadiness
    , BootstrapError(..)
    , buildBootstrapPreludeSession
    , TypedModuleInput
    , TypedModuleInputError(..)
    , renderTypedModuleInputError
    , typedModuleInput
    , TypedPathError(..)
    , TypedModuleFailure(..)
    , typedModuleFailureLocation
    , renderTypedModuleFailure
    , TypedModuleResult(..)
    , runTypedModule
    ) where

import Base
import Checking.Declaration qualified as Declaration
import Checking.Foundation
import Checking.Identity
import Checking.Semantic
import Felix.Module
import Felix.Parse
import Felix.Prelude qualified as Prelude
import Felix.Source
import Report.Location
import Syntax.Interface

import Control.Monad (unless)
import Data.Bifunctor (first)
import Data.Text qualified as Text


data LiveModuleBinding
    = PhysicalModuleBinding !ResolvedSource
    | ReservedModuleBinding !FileId !FilePath
    deriving stock (Show, Eq)

data IdentifiedModuleInput = IdentifiedModuleInput
    !ModuleName
    !LiveModuleBinding
    !FreshParsedModule

identifiedPhysicalModule :: ParsedModule -> IdentifiedModuleInput
identifiedPhysicalModule parsed =
    IdentifiedModuleInput
        (moduleName (parsedModuleAddress parsed))
        (PhysicalModuleBinding (parsedModuleResolved parsed))
        (parsedModuleFresh parsed)

identifiedReservedPrelude
    :: Prelude.ReservedParsedPrelude
    -> IdentifiedModuleInput
identifiedReservedPrelude reserved =
    IdentifiedModuleInput
        (freshModuleInputOwner input)
        (ReservedModuleBinding
            (freshModuleInputFileId input)
            (freshModuleInputLocationPath input))
        (Prelude.reservedParsedPreludeModule reserved)
  where
    input = Prelude.reservedParsedPreludeInput reserved

identifiedModuleOwner :: IdentifiedModuleInput -> ModuleName
identifiedModuleOwner (IdentifiedModuleInput owner _binding _parsed) =
    owner

identifiedModuleBinding
    :: IdentifiedModuleInput
    -> LiveModuleBinding
identifiedModuleBinding
        (IdentifiedModuleInput _owner binding _parsed) =
    binding

identifiedModuleParsed
    :: IdentifiedModuleInput
    -> FreshParsedModule
identifiedModuleParsed
        (IdentifiedModuleInput _owner _binding parsed) =
    parsed


data SealedTypedModule = SealedTypedModule
    !ModuleName
    !ModuleSyntaxInterface
    !SemanticInterface
    !Declaration.PendingModulePrefix
    !Declaration.ImportedModuleEvidence

sealedTypedModuleOwner :: SealedTypedModule -> ModuleName
sealedTypedModuleOwner (SealedTypedModule owner _syntax _semantic _prefix _evidence) =
    owner

sealedTypedModuleSyntax
    :: SealedTypedModule
    -> ModuleSyntaxInterface
sealedTypedModuleSyntax
        (SealedTypedModule _owner syntax _semantic _prefix _evidence) =
    syntax

sealedTypedModuleSemantic
    :: SealedTypedModule
    -> SemanticInterface
sealedTypedModuleSemantic
        (SealedTypedModule _owner _syntax semantic _prefix _evidence) =
    semantic

sealedTypedModulePrefix
    :: SealedTypedModule
    -> Declaration.PendingModulePrefix
sealedTypedModulePrefix
        (SealedTypedModule _owner _syntax _semantic prefix _evidence) =
    prefix

sealedTypedModuleEvidence
    :: SealedTypedModule
    -> Declaration.ImportedModuleEvidence
sealedTypedModuleEvidence
        (SealedTypedModule _owner _syntax _semantic _prefix evidence) =
    evidence

data CachedTypedModuleError
    = CachedTypedModuleOwnerMismatch !ModuleName !ModuleName
    | CachedTypedModulePrefixError !PrefixContextError
    | CachedTypedModuleMissingEvidence
    deriving stock (Show, Eq)

renderCachedTypedModuleError :: CachedTypedModuleError -> Text
renderCachedTypedModuleError = \case
    CachedTypedModuleOwnerMismatch expected actual ->
        "cached semantic owner mismatch: expected "
            <> Text.pack (show expected)
            <> ", found " <> Text.pack (show actual)
    CachedTypedModulePrefixError{} ->
        "cached semantic module has an invalid initial prefix"
    CachedTypedModuleMissingEvidence ->
        "cached semantic module is missing proposition evidence"

cachedSealedTypedModule
    :: CheckedFoundation
    -> ModuleName
    -> ModuleSyntaxInterface
    -> SemanticInterface
    -> [SealedTypedModule]
    -> [AssertedObject]
    -> [CheckedPropositionContent]
    -> Either CachedTypedModuleError SealedTypedModule
cachedSealedTypedModule
        foundation owner syntax semantic parents objects propositions = do
    unless
        (semanticInterfaceOwner semantic == owner)
        (Left
            (CachedTypedModuleOwnerMismatch
                owner
                (semanticInterfaceOwner semantic)))
    prefix <-
        first CachedTypedModulePrefixError
            (initialPrefixContextId
                (theoryId foundation)
                owner
                (semanticInterfaceDirectInputs semantic))
    evidence <-
        maybe
            (Left CachedTypedModuleMissingEvidence)
            Right
            (Declaration.validatedImportedModuleEvidence
                (theoryId foundation)
                (sealedTypedModuleEvidence <$> parents)
                semantic
                objects
                propositions)
    pure
        (SealedTypedModule
            owner
            syntax
            semantic
            (Declaration.emptyPendingModulePrefix prefix)
            evidence)


data MigrationPreludeSession = MigrationPreludeSession
    !IdentifiedModuleInput
    !SealedTypedModule

migrationPreludeInput
    :: MigrationPreludeSession
    -> IdentifiedModuleInput
migrationPreludeInput (MigrationPreludeSession input _module) =
    input

migrationPreludeModule
    :: MigrationPreludeSession
    -> SealedTypedModule
migrationPreludeModule (MigrationPreludeSession _input sealed) =
    sealed

-- These fixture-only seams are discarded with the final-prelude cutover.
newtype BootstrapWalkingReadiness = BootstrapWalkingReadiness
    SealedTypedModule

bootstrapWalkingReadiness
    :: MigrationPreludeSession
    -> BootstrapWalkingReadiness
bootstrapWalkingReadiness =
    BootstrapWalkingReadiness . migrationPreludeModule

-- | Fixture seam for exercising a nonempty distinguished prelude before the
-- final source prelude is constructed.
bootstrapWalkingReadinessFromSealed
    :: SealedTypedModule
    -> BootstrapWalkingReadiness
bootstrapWalkingReadinessFromSealed =
    BootstrapWalkingReadiness

newtype BootstrapCompilerReadiness = BootstrapCompilerReadiness
    MigrationPreludeSession

bootstrapCompilerReadiness
    :: MigrationPreludeSession
    -> BootstrapCompilerReadiness
bootstrapCompilerReadiness =
    BootstrapCompilerReadiness

data BootstrapError
    = BootstrapParseFailed !Prelude.PreludeParseError
    | BootstrapDriverOpenFailed !Declaration.DriverOpenError
    | BootstrapDeclarationFailed !Declaration.DeclarationError
    | BootstrapSealFailed !SemanticInterfaceError
    deriving stock (Show)

buildBootstrapPreludeSession
    :: CheckedFoundation
    -> Declaration.VampireResolver
    -> IO (Either BootstrapError MigrationPreludeSession)
buildBootstrapPreludeSession foundation resolver = do
    parsedResult <-
        Prelude.parseReservedPreludeSource
            Prelude.emptyBootstrapSourceInput
    case parsedResult of
        Left err ->
            pure (Left (BootstrapParseFailed err))
        Right reserved -> do
            let input = identifiedReservedPrelude reserved
                syntax =
                    freshParsedModuleSyntaxInterface
                        (identifiedModuleParsed input)
            driver <-
                Declaration.runModuleDriver
                    foundation
                    preludeModuleName
                    []
                    resolver
                    Declaration.FreshValidation
                    emptyDriver
            pure case driver of
                Left err ->
                    Left (BootstrapDriverOpenFailed err)
                Right succeeded@(Declaration.DriverSucceeded
                        () semantic prefix _closure) ->
                    case Declaration.driverImportedModuleEvidence
                            (theoryId foundation)
                            []
                            succeeded of
                        Just evidence ->
                            Right
                                (MigrationPreludeSession
                                    input
                                    (SealedTypedModule
                                        preludeModuleName
                                        syntax
                                        semantic
                                        prefix
                                        evidence))
                        Nothing ->
                            impossible
                                "sealed bootstrap omitted import evidence"
                Right
                    (Declaration.DriverFailed
                        (Declaration.DriverDeclarationFailed err)
                        _prefix) ->
                            Left (BootstrapDeclarationFailed err)
                Right (Declaration.DriverSealFailed err _prefix) ->
                    Left (BootstrapSealFailed err)
  where
    emptyDriver :: Declaration.ModuleDriver Void ()
    emptyDriver = pure ()


data TypedModuleInput = TypedModuleInput
    !ModuleName
    !IdentifiedModuleInput
    !ModuleSyntaxInterface
    !CheckedFoundation
    !BootstrapWalkingReadiness
    ![SealedTypedModule]
    !Declaration.VampireResolver
    !Declaration.ValidationRun

data TypedModuleInputError
    = TypedDirectModuleMismatch ![ModuleName] ![ModuleName]
    | TypedSyntaxInputMismatch ![SyntaxInterfaceId] ![SyntaxInterfaceId]
    deriving stock (Show, Eq)

renderTypedModuleInputError :: TypedModuleInputError -> Text
renderTypedModuleInputError = \case
    TypedDirectModuleMismatch expected actual ->
        "direct module inputs differ: expected " <> shown expected
            <> ", found " <> shown actual
    TypedSyntaxInputMismatch expected actual ->
        "direct syntax inputs differ: expected " <> shown expected
            <> ", found " <> shown actual
  where
    shown :: Show value => value -> Text
    shown = Text.pack . show

typedModuleInput
    :: CheckedFoundation
    -> BootstrapWalkingReadiness
    -> Declaration.VampireResolver
    -> Declaration.ValidationRun
    -> ParsedModule
    -> [SealedTypedModule]
    -> Either TypedModuleInputError TypedModuleInput
typedModuleInput
        foundation readiness resolver validationRun parsed direct = do
    unless (expectedOwners == actualOwners)
        (Left
            (TypedDirectModuleMismatch
                expectedOwners
                actualOwners))
    unless (expectedSyntax == actualSyntax)
        (Left
            (TypedSyntaxInputMismatch
                expectedSyntax
                actualSyntax))
    pure
        (TypedModuleInput
            owner
            identified
            syntax
            foundation
            readiness
            direct
            resolver
            validationRun)
  where
    identified = identifiedPhysicalModule parsed
    owner = identifiedModuleOwner identified
    syntax = freshParsedModuleSyntaxInterface (identifiedModuleParsed identified)
    expectedOwners =
        moduleName
            <$> nubOrd
                (parsedImportedAddress
                    <$> parsedModuleImports parsed)
    actualOwners = sealedTypedModuleOwner <$> direct
    expectedSyntax =
        nubOrd
            ( moduleSyntaxAssertedId
                (sealedTypedModuleSyntax prelude)
              : ( moduleSyntaxAssertedId
                    . sealedTypedModuleSyntax
                    <$> direct
                )
            )
    actualSyntax = moduleSyntaxDirectInputs syntax
    BootstrapWalkingReadiness prelude = readiness

data TypedPathError
    = TypedUnsupportedBlock !Location
    deriving stock (Show, Eq)

data TypedModuleFailure
    = TypedDeclarationFailed !Declaration.DeclarationError
    | TypedActionFailed !TypedPathError
    | TypedSealFailed !SemanticInterfaceError
    deriving stock (Show, Eq)

typedModuleFailureLocation :: TypedModuleFailure -> Maybe Location
typedModuleFailureLocation = \case
    TypedActionFailed (TypedUnsupportedBlock location) ->
        Just location
    TypedDeclarationFailed{} ->
        Nothing
    TypedSealFailed{} ->
        Nothing

renderTypedModuleFailure :: TypedModuleFailure -> Text
renderTypedModuleFailure = \case
    TypedDeclarationFailed failure ->
        Declaration.renderDeclarationError failure
    TypedActionFailed (TypedUnsupportedBlock location) ->
        locationToText location
            <> ": this source block is not yet supported by the typed checker"
    TypedSealFailed failure ->
        renderSemanticInterfaceError failure

data TypedModuleResult
    = TypedModuleOpenFailed !Declaration.DriverOpenError
    | TypedModuleSucceeded !SealedTypedModule
    | TypedModuleFailed
        !TypedModuleFailure
        !Declaration.PendingModulePrefix

runTypedModule :: TypedModuleInput -> IO TypedModuleResult
runTypedModule
        (TypedModuleInput
            owner identified syntax foundation readiness direct resolver
            validationRun) = do
    let BootstrapWalkingReadiness prelude = readiness
        action = do
            traverse_
                (Declaration.importSealedModuleDriver
                    . sealedTypedModuleEvidence)
                effectiveDirect
            case freshParsedModuleBlocks
                    (identifiedModuleParsed identified) of
                [] -> pure ()
                block : _ ->
                    Declaration.failModuleDriver
                        (TypedUnsupportedBlock (locate block))
        semanticDirect =
            semanticInterfaceAssertedId
                (sealedTypedModuleSemantic prelude)
                : ( semanticInterfaceAssertedId
                        . sealedTypedModuleSemantic
                        <$> direct
                  )
        effectiveDirect =
            prelude : direct
    result <-
        Declaration.runModuleDriver
            foundation
            owner
            semanticDirect
            resolver
            validationRun
            action
    pure case result of
        Left err ->
            TypedModuleOpenFailed err
        Right succeeded@(Declaration.DriverSucceeded () semantic prefix _closure) ->
            case Declaration.driverImportedModuleEvidence
                    (theoryId foundation)
                    (sealedTypedModuleEvidence <$> effectiveDirect)
                    succeeded of
                Just evidence ->
                    TypedModuleSucceeded
                        (SealedTypedModule
                            owner
                            syntax
                            semantic
                            prefix
                            evidence)
                Nothing ->
                    impossible
                        "sealed typed module omitted import evidence"
        Right
            (Declaration.DriverFailed failure prefix) ->
                TypedModuleFailed
                    (case failure of
                        Declaration.DriverDeclarationFailed err ->
                            TypedDeclarationFailed err
                        Declaration.DriverActionFailed err ->
                            TypedActionFailed err)
                    prefix
        Right (Declaration.DriverSealFailed err prefix) ->
            TypedModuleFailed (TypedSealFailed err) prefix