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
|
{-# LANGUAGE DeriveAnyClass #-}
{-# LANGUAGE DerivingStrategies #-}
{-# LANGUAGE NoImplicitPrelude #-}
-- | Content-addressed identities for checked mathematical content.
module Felix.Checking.Identity
( TheoryId
, theoryId
, theoryIdDigest
, encodeFoundationManifest
, foundationManifestTags
, encodeKernelRuleTag
, ObjectFamily(..)
, ObjectId
, objectId
, objectIdFamily
, objectIdDigest
, encodeObjectId
, OpaqueDeclarationSeed
, opaqueDeclarationSeed
, opaqueDeclarationSeedDigest
, ObjectContent(..)
, objectContentTheory
, objectContentType
, intrinsicObjectId
, transparentObjectId
, opaqueObjectId
, AssertedObject
, assertedObject
, assertedObjectId
, assertedObjectContent
, CheckedObjectClosure
, checkedObjectClosureTheory
, checkedObjectIds
, lookupCheckedObjectType
, lookupCheckedObjectContent
, validateObjectClosure
, extendObjectClosure
, ObjectValidationError(..)
, PropositionId
, propositionIdDigest
, CheckedPropositionContent
, checkedPropositionId
, checkedPropositionTerm
, validatePropositionContent
, validateAssertedPropositionContent
, propositionIdOf
, PropositionValidationError(..)
, TheoremRef
, theoremRef
, theoremRefTheory
, theoremRefProposition
, encodeTheoremRef
, TheoremId
, theoremId
, theoremIdDigest
, putTheoryIdCache
, getTheoryIdCache
, putObjectIdCache
, getObjectIdCache
, putObjectContentCache
, getObjectContentCache
, putPropositionIdCache
, getPropositionIdCache
, putTheoremRefCache
, getTheoremRefCache
) where
import Base
import Felix.Checking.Core
import Felix.Checking.Foundation
import Felix.Cache.Codec
import Felix.Math.Codec
import Felix.Module
import Control.DeepSeq (NFData)
import Control.Monad.State.Strict
import Data.Bifunctor (first)
import Data.ByteString (ByteString)
import Data.ByteString qualified as ByteString
import Data.List qualified as List
import Data.Map.Strict qualified as Map
import Data.Set qualified as Set
import Data.Word (Word8)
newtype TheoryId =
TheoryId MathematicalDigest
deriving stock (Show, Eq, Ord, Generic)
deriving newtype (Hashable, NFData)
theoryId :: CheckedFoundation -> TheoryId
theoryId foundation =
TheoryId
(codecInvariant
(hashCanonicalFields
"felix-theory"
[encodeFoundationManifest foundation]))
theoryIdDigest :: TheoryId -> MathematicalDigest
theoryIdDigest (TheoryId digest) =
digest
-- | Canonical ordered intrinsic/rule/axiom manifest. Backend classification is
-- intentionally absent.
encodeFoundationManifest :: CheckedFoundation -> ByteString
encodeFoundationManifest foundation =
codecInvariant
(encodeSequence
[ codecInvariant (encodeSequence intrinsicRows)
, codecInvariant (encodeSequence ruleRows)
, codecInvariant (encodeSequence axiomRows)
])
where
(intrinsicTags, ruleTags, axiomTags) =
foundationManifestTags
intrinsicRows =
[ encodeCoreIntrinsicTag tag
<> encodeFrame (encodeCoreType (coreIntrinsicType tag))
| tag <- intrinsicTags
]
ruleRows =
[ encodeKernelRuleTag tag
<> encodeFrame
(codecInvariant
(encodeSequence
(encodeCoreType <$> inputTypes)))
<> encodeFrame (encodeNatural binderCount)
| tag <- ruleTags
, let KernelRuleSignature inputTypes binderCount =
foundationRuleSignature foundation tag
]
axiomRows =
[ encodeFoundationAxiomTag tag
<> encodeFrame
(encodeCanonicalTerm
absurd
(frozenCoreTerm
(foundationAxiomFrozen foundation tag)))
| tag <- axiomTags
]
-- | Exhaustive foundation inventories in their stable encoded-tag order.
foundationManifestTags
:: ( [CoreIntrinsicTag]
, [KernelRuleTag]
, [FoundationAxiomTag]
)
foundationManifestTags =
( stableTagOrder
"core intrinsic"
encodeCoreIntrinsicTag
allCoreIntrinsicTags
, stableTagOrder
"kernel rule"
encodeKernelRuleTag
allKernelRuleTags
, stableTagOrder
"foundation axiom"
encodeFoundationAxiomTag
allFoundationAxiomTags
)
data ObjectFamily
= IntrinsicObject
| TransparentObject
| OpaqueObject
deriving stock (Show, Eq, Ord, Enum, Bounded, Generic)
deriving anyclass (NFData)
data ObjectId = ObjectId
!ObjectFamily
!MathematicalDigest
deriving stock (Show, Eq, Ord, Generic)
deriving anyclass (NFData)
objectId
:: ObjectFamily
-> MathematicalDigest
-> ObjectId
objectId =
ObjectId
objectIdFamily :: ObjectId -> ObjectFamily
objectIdFamily (ObjectId family _digest) =
family
objectIdDigest :: ObjectId -> MathematicalDigest
objectIdDigest (ObjectId _family digest) =
digest
encodeObjectId :: ObjectId -> ByteString
encodeObjectId (ObjectId family digest) =
ByteString.singleton (objectFamilyTag family)
<> mathematicalDigestBytes digest
newtype OpaqueDeclarationSeed =
OpaqueDeclarationSeed MathematicalDigest
deriving stock (Show, Eq, Ord, Generic)
deriving newtype (Hashable, NFData)
opaqueDeclarationSeed
:: ModuleName
-> LocalDeclarationOrdinal
-> DeclarationFamilyTag
-> GeneratedObjectSlot
-> OpaqueDeclarationSeed
opaqueDeclarationSeed
owner
declarationOrdinal
family
generatedSlot =
OpaqueDeclarationSeed
(codecInvariant
(hashCanonicalFields
"felix-opaque-declaration-v1"
[ encodeModuleName owner
, encodeNatural
(localDeclarationOrdinalValue
declarationOrdinal)
, encodeDeclarationFamilyTag family
, encodeNatural
(generatedObjectSlotValue
generatedSlot)
]))
opaqueDeclarationSeedDigest
:: OpaqueDeclarationSeed
-> MathematicalDigest
opaqueDeclarationSeedDigest
(OpaqueDeclarationSeed digest) =
digest
data ObjectContent
= IntrinsicObjectContent
!TheoryId
!CoreIntrinsicTag
!CoreType
| TransparentObjectContent
!TheoryId
!CoreType
!(CanonicalTerm ObjectId)
| OpaqueObjectContent
!TheoryId
!OpaqueDeclarationSeed
!CoreType
deriving stock (Show, Eq, Ord, Generic)
deriving anyclass (NFData)
objectContentTheory :: ObjectContent -> TheoryId
objectContentTheory = \case
IntrinsicObjectContent identity _tag _coreType ->
identity
TransparentObjectContent identity _coreType _body ->
identity
OpaqueObjectContent identity _seed _coreType ->
identity
objectContentType :: ObjectContent -> CoreType
objectContentType = \case
IntrinsicObjectContent _identity _tag coreType ->
coreType
TransparentObjectContent _identity coreType _body ->
coreType
OpaqueObjectContent _identity _seed coreType ->
coreType
intrinsicObjectId
:: TheoryId
-> CoreIntrinsicTag
-> CoreType
-> ObjectId
intrinsicObjectId identity tag coreType =
ObjectId
IntrinsicObject
(codecInvariant
(hashCanonicalFields
"felix-intrinsic-object-v1"
[ mathematicalDigestBytes
(theoryIdDigest identity)
, encodeCoreIntrinsicTag tag
, encodeCoreType coreType
]))
transparentObjectId
:: TheoryId
-> CoreType
-> CanonicalTerm ObjectId
-> ObjectId
transparentObjectId identity coreType body =
ObjectId
TransparentObject
(codecInvariant
(hashCanonicalFields
"felix-transparent-object-v1"
[ mathematicalDigestBytes
(theoryIdDigest identity)
, encodeCoreType coreType
, encodeCanonicalTerm encodeObjectId body
]))
opaqueObjectId
:: TheoryId
-> OpaqueDeclarationSeed
-> CoreType
-> ObjectId
opaqueObjectId identity seed coreType =
ObjectId
OpaqueObject
(codecInvariant
(hashCanonicalFields
"felix-opaque-object-v1"
[ mathematicalDigestBytes
(theoryIdDigest identity)
, mathematicalDigestBytes
(opaqueDeclarationSeedDigest seed)
, encodeCoreType coreType
]))
data AssertedObject = AssertedObject
!ObjectId
!ObjectContent
deriving stock (Show, Eq, Ord, Generic)
deriving anyclass (NFData)
assertedObject :: ObjectId -> ObjectContent -> AssertedObject
assertedObject =
AssertedObject
assertedObjectId :: AssertedObject -> ObjectId
assertedObjectId (AssertedObject identity _content) =
identity
assertedObjectContent :: AssertedObject -> ObjectContent
assertedObjectContent (AssertedObject _identity content) =
content
data CheckedObject = CheckedObject
!ObjectContent
!CoreType
data CheckedObjectClosure = CheckedObjectClosure
!TheoryId
!(Map ObjectId CheckedObject)
checkedObjectClosureTheory :: CheckedObjectClosure -> TheoryId
checkedObjectClosureTheory (CheckedObjectClosure identity _objects) =
identity
checkedObjectIds :: CheckedObjectClosure -> Set ObjectId
checkedObjectIds (CheckedObjectClosure _identity objects) =
Map.keysSet objects
lookupCheckedObjectType
:: ObjectId
-> CheckedObjectClosure
-> Maybe CoreType
lookupCheckedObjectType identity
(CheckedObjectClosure _theory objects) =
checkedObjectType
<$> Map.lookup identity objects
lookupCheckedObjectContent
:: ObjectId
-> CheckedObjectClosure
-> Maybe ObjectContent
lookupCheckedObjectContent identity
(CheckedObjectClosure _theory objects) =
checkedObjectContent
<$> Map.lookup identity objects
checkedObjectType :: CheckedObject -> CoreType
checkedObjectType (CheckedObject _content coreType) =
coreType
checkedObjectContent :: CheckedObject -> ObjectContent
checkedObjectContent (CheckedObject content _coreType) =
content
data ObjectValidationError
= DuplicateAssertedObjectId !ObjectId
| ObjectContentTheoryMismatch
!ObjectId
!TheoryId
!TheoryId
| ObjectContentFamilyMismatch
!ObjectId
!ObjectFamily
!ObjectFamily
| IntrinsicObjectTypeMismatch
!ObjectId
!CoreIntrinsicTag
!CoreType
!CoreType
| TransparentObjectReferenceMissing
!ObjectId
!ObjectId
| TransparentObjectCycle !(NonEmpty ObjectId)
| TransparentObjectCoreCheckError
!ObjectId
!CoreCheckError
| TransparentObjectTypeMismatch
!ObjectId
!CoreType
!CoreType
| ObjectIdPayloadMismatch
!ObjectId
!ObjectId
deriving stock (Show, Eq)
data ObjectValidationState = ObjectValidationState
{ validationStack :: ![ObjectId]
, validatedObjects :: !(Map ObjectId CheckedObject)
}
validateObjectClosure
:: TheoryId
-> [AssertedObject]
-> Either ObjectValidationError CheckedObjectClosure
validateObjectClosure expectedTheory asserted = do
inventory <- buildObjectInventory asserted
finalState <-
execStateT
(traverse_ (validateOneObject expectedTheory inventory)
(Map.keys inventory))
(ObjectValidationState [] Map.empty)
pure
(CheckedObjectClosure
expectedTheory
(validatedObjects finalState))
-- | Validate one declaration's new objects against an already checked
-- closure. The existing closure is returned unchanged for an empty batch.
extendObjectClosure
:: CheckedObjectClosure
-> [AssertedObject]
-> Either ObjectValidationError CheckedObjectClosure
extendObjectClosure closure [] =
Right closure
extendObjectClosure
(CheckedObjectClosure expectedTheory existing)
asserted = do
additions <- buildObjectInventory asserted
traverse_
(\identity ->
when
(Map.member identity existing)
(Left (DuplicateAssertedObjectId identity)))
(Map.keys additions)
let existingInventory =
checkedObjectContent <$> existing
inventory =
Map.union additions existingInventory
finalState <-
execStateT
(traverse_
(validateOneObject expectedTheory inventory)
(Map.keys additions))
(ObjectValidationState [] existing)
pure
(CheckedObjectClosure
expectedTheory
(validatedObjects finalState))
buildObjectInventory
:: [AssertedObject]
-> Either ObjectValidationError (Map ObjectId ObjectContent)
buildObjectInventory =
foldM insertOne Map.empty
where
insertOne inventory (AssertedObject identity content)
| Map.member identity inventory =
Left (DuplicateAssertedObjectId identity)
| otherwise =
Right (Map.insert identity content inventory)
validateOneObject
:: TheoryId
-> Map ObjectId ObjectContent
-> ObjectId
-> StateT
ObjectValidationState
(Either ObjectValidationError)
()
validateOneObject expectedTheory inventory identity = do
alreadyValidated <-
gets (Map.member identity . validatedObjects)
unless alreadyValidated do
stack <- gets validationStack
when (identity `elem` stack) do
lift
(Left
(TransparentObjectCycle
(cyclePath identity stack)))
content <-
case Map.lookup identity inventory of
Nothing ->
impossible
"object validation root is absent from its inventory"
Just found ->
pure found
unless
(objectContentTheory content == expectedTheory)
(lift
(Left
(ObjectContentTheoryMismatch
identity
expectedTheory
(objectContentTheory content))))
let expectedFamily =
objectContentFamily content
suppliedFamily =
objectIdFamily identity
unless
(suppliedFamily == expectedFamily)
(lift
(Left
(ObjectContentFamilyMismatch
identity
expectedFamily
suppliedFamily)))
modify'
(\validationState ->
validationState
{ validationStack =
identity
: validationStack validationState
})
checked <- case content of
IntrinsicObjectContent
theory
tag
suppliedType -> do
let expectedType =
coreIntrinsicType tag
unless
(suppliedType == expectedType)
(lift
(Left
(IntrinsicObjectTypeMismatch
identity
tag
expectedType
suppliedType)))
verifyObjectId
identity
(intrinsicObjectId
theory
tag
suppliedType)
pure
(CheckedObject content suppliedType)
TransparentObjectContent
theory
suppliedType
body -> do
traverse_
(validateDependency expectedTheory inventory identity)
(Set.toAscList (canonicalTermGlobals body))
resolvedObjects <-
gets validatedObjects
checkedBody <-
lift
(first
(TransparentObjectCoreCheckError
identity)
(checkCanonicalCore
(\reference ->
checkedObjectType
<$> Map.lookup
reference
resolvedObjects)
body))
let inferredType =
frozenCoreType checkedBody
unless
(inferredType == suppliedType)
(lift
(Left
(TransparentObjectTypeMismatch
identity
suppliedType
inferredType)))
verifyObjectId
identity
(transparentObjectId
theory
suppliedType
body)
pure
(CheckedObject content suppliedType)
OpaqueObjectContent
theory
seed
suppliedType -> do
verifyObjectId
identity
(opaqueObjectId
theory
seed
suppliedType)
pure
(CheckedObject content suppliedType)
modify'
(\validationState ->
validationState
{ validationStack =
dropCurrent
identity
(validationStack validationState)
, validatedObjects =
Map.insert
identity
checked
(validatedObjects validationState)
})
where
verifyObjectId supplied computed =
unless
(supplied == computed)
(lift
(Left
(ObjectIdPayloadMismatch
supplied
computed)))
validateDependency
:: TheoryId
-> Map ObjectId ObjectContent
-> ObjectId
-> ObjectId
-> StateT
ObjectValidationState
(Either ObjectValidationError)
()
validateDependency expectedTheory inventory parent dependency =
case Map.lookup dependency inventory of
Nothing ->
lift
(Left
(TransparentObjectReferenceMissing
parent
dependency))
Just _ ->
validateOneObject
expectedTheory
inventory
dependency
cyclePath :: ObjectId -> [ObjectId] -> NonEmpty ObjectId
cyclePath repeated stack =
case break (== repeated) stack of
(between, _repeated : _outer) ->
repeated :| (reverse between <> [repeated])
_ ->
impossible "repeated object is absent from validation stack"
dropCurrent :: ObjectId -> [ObjectId] -> [ObjectId]
dropCurrent expected = \case
current : rest
| current == expected ->
rest
_ ->
impossible "object validation stack is inconsistent"
objectContentFamily :: ObjectContent -> ObjectFamily
objectContentFamily = \case
IntrinsicObjectContent{} ->
IntrinsicObject
TransparentObjectContent{} ->
TransparentObject
OpaqueObjectContent{} ->
OpaqueObject
newtype PropositionId =
PropositionId MathematicalDigest
deriving stock (Show, Eq, Ord, Generic)
deriving newtype (Hashable, NFData)
propositionIdDigest :: PropositionId -> MathematicalDigest
propositionIdDigest (PropositionId digest) =
digest
data CheckedPropositionContent = CheckedPropositionContent
!PropositionId
!(FrozenCheckedCore ObjectId)
deriving stock (Generic)
deriving anyclass (NFData)
checkedPropositionId
:: CheckedPropositionContent
-> PropositionId
checkedPropositionId
(CheckedPropositionContent identity _term) =
identity
checkedPropositionTerm
:: CheckedPropositionContent
-> FrozenCheckedCore ObjectId
checkedPropositionTerm
(CheckedPropositionContent _identity term) =
term
data PropositionValidationError
= PropositionObjectMissing !ObjectId
| PropositionCoreCheckError !CoreCheckError
| PropositionIsNotProp !CoreType
| PropositionIdPayloadMismatch
!PropositionId
!PropositionId
deriving stock (Show, Eq)
validatePropositionContent
:: CheckedObjectClosure
-> CanonicalTerm ObjectId
-> Either
PropositionValidationError
CheckedPropositionContent
validatePropositionContent closure term = do
traverse_
(\identity ->
unless
(isJust
(lookupCheckedObjectType identity closure))
(Left (PropositionObjectMissing identity)))
(Set.toAscList (canonicalTermGlobals term))
checked <-
first PropositionCoreCheckError
(checkCanonicalCore
(\identity ->
lookupCheckedObjectType identity closure)
term)
unless
(frozenCoreType checked == TyProp)
(Left
(PropositionIsNotProp
(frozenCoreType checked)))
let identity =
propositionIdOf term
pure
(CheckedPropositionContent
identity
checked)
validateAssertedPropositionContent
:: CheckedObjectClosure
-> PropositionId
-> CanonicalTerm ObjectId
-> Either
PropositionValidationError
CheckedPropositionContent
validateAssertedPropositionContent closure supplied term = do
checked <-
validatePropositionContent closure term
let computed =
checkedPropositionId checked
unless
(supplied == computed)
(Left
(PropositionIdPayloadMismatch
supplied
computed))
pure checked
propositionIdOf
:: CanonicalTerm ObjectId
-> PropositionId
propositionIdOf term =
PropositionId
(codecInvariant
(hashCanonicalFields
"felix-proposition-v1"
[encodeCanonicalTerm encodeObjectId term]))
data TheoremRef = TheoremRef
!TheoryId
!PropositionId
deriving stock (Show, Eq, Ord, Generic)
deriving anyclass (NFData)
theoremRef :: TheoryId -> PropositionId -> TheoremRef
theoremRef =
TheoremRef
theoremRefTheory :: TheoremRef -> TheoryId
theoremRefTheory (TheoremRef identity _proposition) =
identity
theoremRefProposition :: TheoremRef -> PropositionId
theoremRefProposition (TheoremRef _identity proposition) =
proposition
encodeTheoremRef :: TheoremRef -> ByteString
encodeTheoremRef (TheoremRef identity proposition) =
encodeFrame
(mathematicalDigestBytes
(theoryIdDigest identity))
<> encodeFrame
(mathematicalDigestBytes
(propositionIdDigest proposition))
newtype TheoremId =
TheoremId MathematicalDigest
deriving stock (Show, Eq, Ord, Generic)
deriving newtype (Hashable, NFData)
theoremId :: TheoremRef -> TheoremId
theoremId reference =
TheoremId
(codecInvariant
(hashCanonicalFields
"felix-theorem"
[encodeTheoremRef reference]))
theoremIdDigest :: TheoremId -> MathematicalDigest
theoremIdDigest (TheoremId digest) =
digest
putTheoryIdCache :: TheoryId -> CachePut
putTheoryIdCache =
putMathematicalDigestCache . theoryIdDigest
getTheoryIdCache :: CacheGet TheoryId
getTheoryIdCache =
TheoryId <$> getMathematicalDigestCache
putObjectIdCache :: ObjectId -> CachePut
putObjectIdCache (ObjectId family digest) = do
putCacheTag (objectFamilyTag family)
putMathematicalDigestCache digest
getObjectIdCache :: CacheGet ObjectId
getObjectIdCache = do
family <- getCacheTag >>= \case
0x00 ->
pure IntrinsicObject
0x01 ->
pure TransparentObject
0x02 ->
pure OpaqueObject
tag ->
fail ("unknown cache object-family tag " <> show tag)
ObjectId family <$> getMathematicalDigestCache
putOpaqueDeclarationSeedCache
:: OpaqueDeclarationSeed
-> CachePut
putOpaqueDeclarationSeedCache =
putMathematicalDigestCache
. opaqueDeclarationSeedDigest
getOpaqueDeclarationSeedCache
:: CacheGet OpaqueDeclarationSeed
getOpaqueDeclarationSeedCache =
OpaqueDeclarationSeed
<$> getMathematicalDigestCache
putObjectContentCache :: ObjectContent -> CachePut
putObjectContentCache = \case
IntrinsicObjectContent identity tag coreType -> do
putCacheTag 0x00
putTheoryIdCache identity
putCoreIntrinsicTagCache tag
putCoreTypeCache coreType
TransparentObjectContent identity coreType body -> do
putCacheTag 0x01
putTheoryIdCache identity
putCoreTypeCache coreType
putCanonicalTermCache putObjectIdCache body
OpaqueObjectContent identity seed coreType -> do
putCacheTag 0x02
putTheoryIdCache identity
putOpaqueDeclarationSeedCache seed
putCoreTypeCache coreType
getObjectContentCache :: CacheGet ObjectContent
getObjectContentCache =
getCacheTag >>= \case
0x00 ->
IntrinsicObjectContent
<$> getTheoryIdCache
<*> getCoreIntrinsicTagCache
<*> getCoreTypeCache
0x01 ->
TransparentObjectContent
<$> getTheoryIdCache
<*> getCoreTypeCache
<*> getCanonicalTermCache getObjectIdCache
0x02 ->
OpaqueObjectContent
<$> getTheoryIdCache
<*> getOpaqueDeclarationSeedCache
<*> getCoreTypeCache
tag ->
fail ("unknown cache object-content tag " <> show tag)
putPropositionIdCache :: PropositionId -> CachePut
putPropositionIdCache =
putMathematicalDigestCache . propositionIdDigest
getPropositionIdCache :: CacheGet PropositionId
getPropositionIdCache =
PropositionId <$> getMathematicalDigestCache
putTheoremRefCache :: TheoremRef -> CachePut
putTheoremRefCache (TheoremRef identity proposition) = do
putTheoryIdCache identity
putPropositionIdCache proposition
getTheoremRefCache :: CacheGet TheoremRef
getTheoremRefCache =
TheoremRef
<$> getTheoryIdCache
<*> getPropositionIdCache
objectFamilyTag :: ObjectFamily -> Word8
objectFamilyTag = \case
IntrinsicObject ->
0x00
TransparentObject ->
0x01
OpaqueObject ->
0x02
encodeKernelRuleTag :: KernelRuleTag -> ByteString
encodeKernelRuleTag =
ByteString.singleton . \case
SetLfpBound ->
0x00
SetLfpLeast ->
0x01
SetLfpFixed ->
0x02
SetLfpInduct ->
0x03
encodeFoundationAxiomTag :: FoundationAxiomTag -> ByteString
encodeFoundationAxiomTag =
ByteString.singleton . \case
EmptyCharacteristic ->
0x00
PairSetCharacteristic ->
0x01
FamilyUnionCharacteristic ->
0x02
PowerSetCharacteristic ->
0x03
SeparationCharacteristic ->
0x04
ReplacementCharacteristic ->
0x05
SetChooseWitness ->
0x06
SetExtensionality ->
0x07
SetInduction ->
0x08
PropositionalExtensionality ->
0x09
DoubleNegationElim ->
0x0a
UnivOfContains ->
0x0b
UnivOfTransitive ->
0x0c
UnivOfFamilyUnionClosed ->
0x0d
UnivOfPowerSetClosed ->
0x0e
UnivOfReplacementClosed ->
0x0f
UnivOfMinimal ->
0x10
allCoreIntrinsicTags :: [CoreIntrinsicTag]
allCoreIntrinsicTags =
[minBound .. maxBound]
allKernelRuleTags :: [KernelRuleTag]
allKernelRuleTags =
[minBound .. maxBound]
allFoundationAxiomTags :: [FoundationAxiomTag]
allFoundationAxiomTags =
[minBound .. maxBound]
stableTagOrder
:: Show tag
=> String
-> (tag -> ByteString)
-> [tag]
-> [tag]
stableTagOrder description encodeTag tags
| Set.size encodedTags == length tags =
List.sortOn encodeTag tags
| otherwise =
impossible
("duplicate stable "
<> description
<> " tag in "
<> show tags)
where
encodedTags =
Set.fromList (encodeTag <$> tags)
codecInvariant
:: Either MathematicalCodecError value
-> value
codecInvariant =
either
(impossible . ("canonical codec invariant: " <>) . show)
id
|