-
Notifications
You must be signed in to change notification settings - Fork 601
/
Copy pathpool.go
1022 lines (929 loc) · 28.9 KB
/
pool.go
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
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2020-2022 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package asserts
import (
"errors"
"fmt"
"github.com/snapcore/snapd/asserts/internal"
)
// A Grouping identifies opaquely a grouping of assertions.
// Pool uses it to label the intersection between a set of groups.
type Grouping string
// A pool helps holding and tracking a set of assertions and their
// prerequisites as they need to be updated or resolved. The
// assertions can be organized in groups. Failure can be tracked
// isolated to groups, conversely any error related to a single group
// alone will stop any work to resolve it. Independent assertions
// should not be grouped. Assertions and prerequisites that are part
// of more than one group are tracked properly only once.
//
// Typical usage involves specifying the initial assertions needing to
// be resolved or updated using AddUnresolved and AddToUpdate.
// AddUnresolvedSequence and AddSequenceToUpdate exist parallel to
// AddUnresolved/AddToUpdate to handle sequence-forming assertions,
// which cannot be used with the latter.
// At this point ToResolve can be called to get them organized in
// groupings ready for fetching. Fetched assertions can then be provided
// with Add or AddBatch. Because these can have prerequisites calling
// ToResolve and fetching needs to be repeated until ToResolve's
// result is empty. Between any two ToResolve invocations but after
// any Add or AddBatch AddUnresolved/AddToUpdate can also be used
// again.
//
// V
// |
// /-> AddUnresolved, AddToUpdate
// | |
// | V
// |------> ToResolve -> empty? done
// | |
// | V
// \ __________ Add
//
// If errors prevent from fulfilling assertions from a ToResolve,
// AddError and AddGroupingError can be used to report the errors so
// that they can be associated with groups.
//
// All the resolved assertions in a Pool from groups not in error can
// be committed to a destination database with CommitTo.
type Pool struct {
groundDB RODatabase
numbering map[string]uint16
groupings *internal.Groupings
unresolved map[string]unresolvedAssertRecord
unresolvedSequences map[string]unresolvedAssertRecord
prerequisites map[string]unresolvedAssertRecord
bs Backstore
unchanged map[string]bool
groups map[uint16]*groupRec
curPhase poolPhase
}
// NewPool creates a new Pool, groundDB is used to resolve trusted and
// predefined assertions and to provide the current revision for
// assertions to update and their prerequisites. Up to n groups can be
// used to organize the assertions.
func NewPool(groundDB RODatabase, n int) *Pool {
groupings, err := internal.NewGroupings(n)
if err != nil {
panic(fmt.Sprintf("NewPool: %v", err))
}
return &Pool{
groundDB: groundDB,
numbering: make(map[string]uint16),
groupings: groupings,
unresolved: make(map[string]unresolvedAssertRecord),
unresolvedSequences: make(map[string]unresolvedAssertRecord),
prerequisites: make(map[string]unresolvedAssertRecord),
bs: NewMemoryBackstore(),
unchanged: make(map[string]bool),
groups: make(map[uint16]*groupRec),
}
}
func (p *Pool) groupNum(group string) (gnum uint16, err error) {
if gnum, ok := p.numbering[group]; ok {
return gnum, nil
}
gnum = uint16(len(p.numbering))
if err = p.groupings.WithinRange(gnum); err != nil {
return 0, err
}
p.numbering[group] = gnum
return gnum, nil
}
func (p *Pool) ensureGroup(group string) (gnum uint16, err error) {
gnum, err = p.groupNum(group)
if err != nil {
return 0, err
}
if gRec := p.groups[gnum]; gRec == nil {
p.groups[gnum] = &groupRec{
name: group,
}
}
return gnum, nil
}
// Singleton returns a grouping containing only the given group.
// It is useful mainly for tests and to drive Add are AddBatch when the
// server is pushing assertions (instead of the usual pull scenario).
func (p *Pool) Singleton(group string) (Grouping, error) {
gnum, err := p.ensureGroup(group)
if err != nil {
return Grouping(""), nil
}
var grouping internal.Grouping
p.groupings.AddTo(&grouping, gnum)
return Grouping(p.groupings.Serialize(&grouping)), nil
}
type unresolvedAssertRecord interface {
isAssertionNewer(a Assertion) bool
groupingPtr() *internal.Grouping
label() Grouping
isRevisionNotKnown() bool
error() error
}
// An unresolvedRec tracks a single unresolved assertion until it is
// resolved or there is an error doing so. The field 'grouping' will
// grow to contain all the groups requiring this assertion while it
// is unresolved.
type unresolvedRec struct {
at *AtRevision
grouping internal.Grouping
serializedLabel Grouping
err error
}
func (u *unresolvedRec) isAssertionNewer(a Assertion) bool {
return a.Revision() > u.at.Revision
}
func (u *unresolvedRec) groupingPtr() *internal.Grouping {
return &u.grouping
}
func (u *unresolvedRec) label() Grouping {
return u.serializedLabel
}
func (u *unresolvedRec) isRevisionNotKnown() bool {
return u.at.Revision == RevisionNotKnown
}
func (u *unresolvedRec) error() error {
return u.err
}
func (u *unresolvedRec) exportTo(r map[Grouping][]*AtRevision, gr *internal.Groupings) {
serLabel := Grouping(gr.Serialize(&u.grouping))
// remember serialized label
u.serializedLabel = serLabel
r[serLabel] = append(r[serLabel], u.at)
}
func (u *unresolvedRec) merge(at *AtRevision, gnum uint16, gr *internal.Groupings) {
gr.AddTo(&u.grouping, gnum)
// assume we want to resolve/update wrt the highest revision
if at.Revision > u.at.Revision {
u.at.Revision = at.Revision
}
}
type unresolvedSeqRec struct {
at *AtSequence
grouping internal.Grouping
serializedLabel Grouping
err error
}
func (u *unresolvedSeqRec) groupingPtr() *internal.Grouping {
return &u.grouping
}
func (u *unresolvedSeqRec) label() Grouping {
return u.serializedLabel
}
func (u *unresolvedSeqRec) isAssertionNewer(a Assertion) bool {
seqf, ok := a.(SequenceMember)
if !ok {
// This should never happen because resolveWith() compares correct types.
panic(fmt.Sprintf("internal error: cannot compare assertion %v with unresolved sequence-forming assertion (wrong type)", a.Ref()))
}
if u.at.Pinned {
return seqf.Sequence() == u.at.Sequence && a.Revision() > u.at.Revision
}
// not pinned
if seqf.Sequence() == u.at.Sequence {
return a.Revision() > u.at.Revision
}
return seqf.Sequence() > u.at.Sequence
}
func (u *unresolvedSeqRec) isRevisionNotKnown() bool {
return u.at.Revision == RevisionNotKnown
}
func (u *unresolvedSeqRec) error() error {
return u.err
}
func (u *unresolvedSeqRec) exportTo(r map[Grouping][]*AtSequence, gr *internal.Groupings) {
serLabel := Grouping(gr.Serialize(&u.grouping))
// remember serialized label
u.serializedLabel = serLabel
r[serLabel] = append(r[serLabel], u.at)
}
// A groupRec keeps track of all the resolved assertions in a group
// or whether the group should be considered in error (err != nil).
type groupRec struct {
name string
err error
resolved []Ref
}
func (gRec *groupRec) hasErr() bool {
return gRec.err != nil
}
func (gRec *groupRec) setErr(e error) {
if gRec.err == nil {
gRec.err = e
}
}
func (gRec *groupRec) markResolved(ref *Ref) (marked bool) {
if gRec.hasErr() {
return false
}
gRec.resolved = append(gRec.resolved, *ref)
return true
}
// markResolved marks the assertion referenced by ref as resolved
// in all the groups in grouping, except those already in error.
func (p *Pool) markResolved(grouping *internal.Grouping, resolved *Ref) (marked bool) {
p.groupings.Iter(grouping, func(gnum uint16) error {
if p.groups[gnum].markResolved(resolved) {
marked = true
}
return nil
})
return marked
}
// setErr marks all the groups in grouping as in error with error err
// except those already in error.
func (p *Pool) setErr(grouping *internal.Grouping, err error) {
p.groupings.Iter(grouping, func(gnum uint16) error {
p.groups[gnum].setErr(err)
return nil
})
}
func (p *Pool) isPredefined(ref *Ref) (bool, error) {
_, err := ref.Resolve(p.groundDB.FindPredefined)
if err == nil {
return true, nil
}
if !errors.Is(err, &NotFoundError{}) {
return false, err
}
return false, nil
}
func (p *Pool) isResolved(ref *Ref) (bool, error) {
if p.unchanged[ref.Unique()] {
return true, nil
}
_, err := p.bs.Get(ref.Type, ref.PrimaryKey, ref.Type.MaxSupportedFormat())
if err == nil {
return true, nil
}
if !errors.Is(err, &NotFoundError{}) {
return false, err
}
return false, nil
}
func (p *Pool) curRevision(ref *Ref) (int, error) {
a, err := ref.Resolve(p.groundDB.Find)
if err != nil && !errors.Is(err, &NotFoundError{}) {
return 0, err
}
if err == nil {
return a.Revision(), nil
}
return RevisionNotKnown, nil
}
func (p *Pool) curSeqRevision(seq *AtSequence) (int, error) {
a, err := seq.Resolve(p.groundDB.Find)
if err != nil && !errors.Is(err, &NotFoundError{}) {
return 0, err
}
if err == nil {
return a.Revision(), nil
}
return RevisionNotKnown, nil
}
type poolPhase int
const (
poolPhaseAddUnresolved = iota
poolPhaseAdd
)
func (p *Pool) phase(ph poolPhase) error {
if ph == p.curPhase {
return nil
}
if ph == poolPhaseAdd {
return fmt.Errorf("internal error: cannot switch to Pool add phase without invoking ToResolve first")
}
// ph == poolPhaseAddUnresolved
p.unresolvedBookkeeping()
p.curPhase = poolPhaseAddUnresolved
return nil
}
// AddUnresolved adds the assertion referenced by unresolved
// AtRevision to the Pool as unresolved and as required by the given group.
// Usually unresolved.Revision will have been set to RevisionNotKnown.
func (p *Pool) AddUnresolved(unresolved *AtRevision, group string) error {
if unresolved.Type.SequenceForming() {
return fmt.Errorf("internal error: AddUnresolved requested for sequence-forming assertion")
}
if err := p.phase(poolPhaseAddUnresolved); err != nil {
return err
}
gnum, err := p.ensureGroup(group)
if err != nil {
return err
}
u := *unresolved
ok, err := p.isPredefined(&u.Ref)
if err != nil {
return err
}
if ok {
// predefined, nothing to do
return nil
}
return p.addUnresolved(&u, gnum)
}
// AddUnresolvedSequence adds the assertion referenced by unresolved
// AtSequence to the Pool as unresolved and as required by the given group.
// Usually unresolved.Revision will have been set to RevisionNotKnown.
// Given sequence can only be added once to the Pool.
func (p *Pool) AddUnresolvedSequence(unresolved *AtSequence, group string) error {
if err := p.phase(poolPhaseAddUnresolved); err != nil {
return err
}
if p.unresolvedSequences[unresolved.Unique()] != nil {
return fmt.Errorf("internal error: sequence %v is already being resolved", unresolved.SequenceKey)
}
gnum, err := p.ensureGroup(group)
if err != nil {
return err
}
u := *unresolved
p.addUnresolvedSeq(&u, gnum)
return nil
}
func (p *Pool) addUnresolved(unresolved *AtRevision, gnum uint16) error {
ok, err := p.isResolved(&unresolved.Ref)
if err != nil {
return err
}
if ok {
// We assume that either the resolving of
// prerequisites for the already resolved assertion in
// progress has succeeded or will. If that's not the
// case we will fail at CommitTo time. We could
// instead recurse into its prerequisites again but the
// complexity isn't clearly worth it.
// See TestParallelPartialResolutionFailure
// Mark this as resolved in the group.
p.groups[gnum].markResolved(&unresolved.Ref)
return nil
}
uniq := unresolved.Ref.Unique()
var u unresolvedAssertRecord
if u = p.unresolved[uniq]; u == nil {
u = &unresolvedRec{
at: unresolved,
}
p.unresolved[uniq] = u
}
urec := u.(*unresolvedRec)
urec.merge(unresolved, gnum, p.groupings)
return nil
}
func (p *Pool) addUnresolvedSeq(unresolved *AtSequence, gnum uint16) error {
uniq := unresolved.Unique()
u := &unresolvedSeqRec{
at: unresolved,
}
p.unresolvedSequences[uniq] = u
return p.groupings.AddTo(&u.grouping, gnum)
}
// ToResolve returns all the currently unresolved assertions in the
// Pool, organized in opaque groupings based on which set of groups
// requires each of them.
// At the next ToResolve any unresolved assertion with not known
// revision that was not added via Add or AddBatch will result in all
// groups requiring it being in error with ErrUnresolved.
// Conversely, the remaining unresolved assertions originally added
// via AddToUpdate will be assumed to still be at their current
// revisions.
func (p *Pool) ToResolve() (map[Grouping][]*AtRevision, map[Grouping][]*AtSequence, error) {
if p.curPhase == poolPhaseAdd {
p.unresolvedBookkeeping()
} else {
p.curPhase = poolPhaseAdd
}
atr := make(map[Grouping][]*AtRevision)
for _, ur := range p.unresolved {
u := ur.(*unresolvedRec)
if u.at.Revision == RevisionNotKnown {
rev, err := p.curRevision(&u.at.Ref)
if err != nil {
return nil, nil, err
}
if rev != RevisionNotKnown {
u.at.Revision = rev
}
}
u.exportTo(atr, p.groupings)
}
ats := make(map[Grouping][]*AtSequence)
for _, u := range p.unresolvedSequences {
seq := u.(*unresolvedSeqRec)
if seq.at.Revision == RevisionNotKnown {
rev, err := p.curSeqRevision(seq.at)
if err != nil {
return nil, nil, err
}
if rev != RevisionNotKnown {
seq.at.Revision = rev
}
}
seq.exportTo(ats, p.groupings)
}
return atr, ats, nil
}
func (p *Pool) addPrerequisite(pref *Ref, g *internal.Grouping) error {
uniq := pref.Unique()
u := p.unresolved[uniq]
at := &AtRevision{
Ref: *pref,
Revision: RevisionNotKnown,
}
if u == nil {
u = p.prerequisites[uniq]
}
if u != nil {
gr := p.groupings
gr.Iter(g, func(gnum uint16) error {
urec := u.(*unresolvedRec)
urec.merge(at, gnum, gr)
return nil
})
return nil
}
ok, err := p.isPredefined(pref)
if err != nil {
return err
}
if ok {
// nothing to do
return nil
}
ok, err = p.isResolved(pref)
if err != nil {
return err
}
if ok {
// nothing to do, it is anyway implied
return nil
}
p.prerequisites[uniq] = &unresolvedRec{
at: at,
grouping: g.Copy(),
}
return nil
}
func (p *Pool) add(a Assertion, g *internal.Grouping) error {
if err := p.bs.Put(a.Type(), a); err != nil {
if revErr, ok := err.(*RevisionError); ok {
if revErr.Current >= a.Revision() {
// we already got something more recent
return nil
}
}
return err
}
for _, pref := range a.Prerequisites() {
if err := p.addPrerequisite(pref, g); err != nil {
return err
}
}
keyRef := &Ref{
Type: AccountKeyType,
PrimaryKey: []string{a.SignKeyID()},
}
return p.addPrerequisite(keyRef, g)
}
func (p *Pool) resolveWith(unresolved map[string]unresolvedAssertRecord, uniq string, u unresolvedAssertRecord, a Assertion, extrag *internal.Grouping) (ok bool, err error) {
if u.isAssertionNewer(a) {
if extrag == nil {
extrag = u.groupingPtr()
} else {
p.groupings.Iter(u.groupingPtr(), func(gnum uint16) error {
p.groupings.AddTo(extrag, gnum)
return nil
})
}
ref := a.Ref()
if p.markResolved(extrag, ref) {
// remove from tracking -
// remove u from unresolved only if the assertion
// is added to the resolved backstore;
// otherwise it might resurface as unresolved;
// it will be ultimately handled in
// unresolvedBookkeeping if it stays around
delete(unresolved, uniq)
if err := p.add(a, extrag); err != nil {
p.setErr(extrag, err)
return false, err
}
}
}
return true, nil
}
// Add adds the given assertion associated with the given grouping to the
// Pool as resolved in all the groups requiring it.
// Any not already resolved prerequisites of the assertion will
// be implicitly added as unresolved and required by all of those groups.
// The grouping will usually have been associated with the assertion
// in a ToResolve's result. Otherwise the union of all groups
// requiring the assertion plus the groups in grouping will be considered.
// The latter is mostly relevant in scenarios where the server is pushing
// assertions.
// If an error is returned it refers to an immediate or local error.
// Errors related to the assertions are associated with the relevant groups
// and can be retrieved with Err, in which case ok is set to false.
func (p *Pool) Add(a Assertion, grouping Grouping) (ok bool, err error) {
if err := p.phase(poolPhaseAdd); err != nil {
return false, err
}
if !a.SupportedFormat() {
e := &UnsupportedFormatError{Ref: a.Ref(), Format: a.Format()}
p.AddGroupingError(e, grouping)
return false, nil
}
return p.addToGrouping(a, grouping, p.groupings.Deserialize)
}
func (p *Pool) addToGrouping(a Assertion, grouping Grouping, deserializeGrouping func(string) (*internal.Grouping, error)) (ok bool, err error) {
var uniq string
ref := a.Ref()
var u unresolvedAssertRecord
var extrag *internal.Grouping
var unresolved map[string]unresolvedAssertRecord
if !ref.Type.SequenceForming() {
uniq = ref.Unique()
if u = p.unresolved[uniq]; u != nil {
unresolved = p.unresolved
} else if u = p.prerequisites[uniq]; u != nil {
unresolved = p.prerequisites
} else {
ok, err := p.isPredefined(a.Ref())
if err != nil {
return false, err
}
if ok {
// nothing to do
return true, nil
}
// a is not tracked as unresolved in any way so far,
// this is an atypical scenario where something gets
// pushed but we still want to add it to the resolved
// lists of the relevant groups; in case it is
// actually already resolved most of resolveWith below will
// be a nop
rec := &unresolvedRec{
at: a.At(),
}
rec.at.Revision = RevisionNotKnown
u = rec
}
} else {
atseq := AtSequence{
Type: ref.Type,
SequenceKey: ref.PrimaryKey[:len(ref.PrimaryKey)-1],
}
uniq = atseq.Unique()
if u = p.unresolvedSequences[uniq]; u != nil {
unresolved = p.unresolvedSequences
} else {
// note: sequence-forming assertions are never prerequisites.
at := a.At()
// a is not tracked as unresolved in any way so far,
// this is an atypical scenario where something gets
// pushed but we still want to add it to the resolved
// lists of the relevant groups; in case it is
// actually already resolved most of resolveWith below will
// be a nop
rec := &unresolvedSeqRec{
at: &AtSequence{
Type: a.Type(),
SequenceKey: at.PrimaryKey[:len(at.PrimaryKey)-1],
},
}
rec.at.Revision = RevisionNotKnown
u = rec
}
}
if u.label() != grouping {
var err error
extrag, err = deserializeGrouping(string(grouping))
if err != nil {
return false, err
}
}
return p.resolveWith(unresolved, uniq, u, a, extrag)
}
// AddBatch adds all the assertions in the Batch to the Pool,
// associated with the given grouping and as resolved in all the
// groups requiring them. It is equivalent to using Add on each of them.
// If an error is returned it refers to an immediate or local error.
// Errors related to the assertions are associated with the relevant groups
// and can be retrieved with Err, in which case ok set to false.
func (p *Pool) AddBatch(b *Batch, grouping Grouping) (ok bool, err error) {
if err := p.phase(poolPhaseAdd); err != nil {
return false, err
}
// b dealt with unsupported formats already
// deserialize grouping if needed only once
var cachedGrouping *internal.Grouping
deser := func(_ string) (*internal.Grouping, error) {
if cachedGrouping != nil {
// do a copy as addToGrouping and resolveWith
// might add to their input
g := cachedGrouping.Copy()
return &g, nil
}
var err error
cachedGrouping, err = p.groupings.Deserialize(string(grouping))
return cachedGrouping, err
}
inError := false
for _, a := range b.added {
ok, err := p.addToGrouping(a, grouping, deser)
if err != nil {
return false, err
}
if !ok {
inError = true
}
}
return !inError, nil
}
var (
ErrUnresolved = errors.New("unresolved assertion")
ErrUnknownPoolGroup = errors.New("unknown pool group")
)
// unresolvedBookkeeping processes any left over unresolved assertions
// since the last ToResolve invocation and intervening calls to Add/AddBatch,
// - they were either marked as in error which will be propagated
// to all groups requiring them
// - simply unresolved, which will be propagated to groups requiring them
// as ErrUnresolved
// - unchanged (update case)
//
// unresolvedBookkeeping will also promote any recorded prerequisites
// into actively unresolved, as long as not all the groups requiring them
// are in error.
func (p *Pool) unresolvedBookkeeping() {
// any left over unresolved are either:
// * in error
// * unchanged
// * or unresolved
processUnresolved := func(unresolved map[string]unresolvedAssertRecord) {
for uniq, ur := range unresolved {
e := ur.error()
if e == nil {
if ur.isRevisionNotKnown() {
e = ErrUnresolved
} else {
// unchanged
p.unchanged[uniq] = true
}
}
if e != nil {
p.setErr(ur.groupingPtr(), e)
}
delete(unresolved, uniq)
}
}
processUnresolved(p.unresolved)
processUnresolved(p.unresolvedSequences)
// prerequisites will become the new unresolved but drop them
// if all their groups are in error
for uniq, pr := range p.prerequisites {
prereq := pr.(*unresolvedRec)
useful := false
p.groupings.Iter(&prereq.grouping, func(gnum uint16) error {
if !p.groups[gnum].hasErr() {
useful = true
}
return nil
})
if !useful {
delete(p.prerequisites, uniq)
continue
}
}
// prerequisites become the new unresolved, the emptied
// unresolved is used for prerequisites in the next round
p.unresolved, p.prerequisites = p.prerequisites, p.unresolved
}
// Err returns the error for group if group is in error, nil otherwise.
func (p *Pool) Err(group string) error {
gnum, err := p.groupNum(group)
if err != nil {
return err
}
gRec := p.groups[gnum]
if gRec == nil {
return ErrUnknownPoolGroup
}
return gRec.err
}
// Errors returns a mapping of groups in error to their errors.
func (p *Pool) Errors() map[string]error {
res := make(map[string]error)
for _, gRec := range p.groups {
if err := gRec.err; err != nil {
res[gRec.name] = err
}
}
if len(res) == 0 {
return nil
}
return res
}
// AddError associates error e with the unresolved assertion.
// The error will be propagated to all the affected groups at
// the next ToResolve.
func (p *Pool) AddError(e error, ref *Ref) error {
if err := p.phase(poolPhaseAdd); err != nil {
return err
}
uniq := ref.Unique()
if u := p.unresolved[uniq]; u != nil && u.(*unresolvedRec).err == nil {
u.(*unresolvedRec).err = e
}
return nil
}
// AddSequenceError associates error e with the unresolved sequence-forming
// assertion.
// The error will be propagated to all the affected groups at
// the next ToResolve.
func (p *Pool) AddSequenceError(e error, atSeq *AtSequence) error {
if err := p.phase(poolPhaseAdd); err != nil {
return err
}
uniq := atSeq.Unique()
if u := p.unresolvedSequences[uniq]; u != nil && u.(*unresolvedSeqRec).err == nil {
u.(*unresolvedSeqRec).err = e
}
return nil
}
// AddGroupingError puts all the groups of grouping in error, with error e.
func (p *Pool) AddGroupingError(e error, grouping Grouping) error {
if err := p.phase(poolPhaseAdd); err != nil {
return err
}
g, err := p.groupings.Deserialize(string(grouping))
if err != nil {
return err
}
p.setErr(g, e)
return nil
}
// AddToUpdate adds the assertion referenced by toUpdate and all its
// prerequisites to the Pool as unresolved and as required by the
// given group. It is assumed that the assertion is currently in the
// ground database of the Pool, otherwise this will error.
// The current revisions of the assertion and its prerequisites will
// be recorded and only higher revisions will then resolve them,
// otherwise if ultimately unresolved they will be assumed to still be
// at their current ones.
func (p *Pool) AddToUpdate(toUpdate *Ref, group string) error {
if toUpdate.Type.SequenceForming() {
return fmt.Errorf("internal error: AddToUpdate requested for sequence-forming assertion")
}
if err := p.phase(poolPhaseAddUnresolved); err != nil {
return err
}
gnum, err := p.ensureGroup(group)
if err != nil {
return err
}
retrieve := func(ref *Ref) (Assertion, error) {
return ref.Resolve(p.groundDB.Find)
}
add := func(a Assertion) error {
return p.addUnresolved(a.At(), gnum)
}
f := NewFetcher(p.groundDB, retrieve, add)
if err := f.Fetch(toUpdate); err != nil {
return err
}
return nil
}
// AddSequenceToUpdate adds the assertion referenced by toUpdate and all its
// prerequisites to the Pool as unresolved and as required by the
// given group. It is assumed that the assertion is currently in the
// ground database of the Pool, otherwise this will error.
// The current revisions of the assertion and its prerequisites will
// be recorded and only higher revisions will then resolve them,
// otherwise if ultimately unresolved they will be assumed to still be
// at their current ones. If toUpdate is pinned, then it will be resolved
// to the highest revision with same sequence point (toUpdate.Sequence).
func (p *Pool) AddSequenceToUpdate(toUpdate *AtSequence, group string) error {
if err := p.phase(poolPhaseAddUnresolved); err != nil {
return err
}
if toUpdate.Sequence <= 0 {
return fmt.Errorf("internal error: sequence to update must have a sequence number set")
}
if p.unresolvedSequences[toUpdate.Unique()] != nil {
return fmt.Errorf("internal error: sequence %v is already being resolved", toUpdate.SequenceKey)
}
gnum, err := p.ensureGroup(group)
if err != nil {
return err
}
retrieve := func(ref *Ref) (Assertion, error) {
return ref.Resolve(p.groundDB.Find)
}
retrieveSeq := func(seq *AtSequence) (Assertion, error) {
return seq.Resolve(p.groundDB.Find)
}
add := func(a Assertion) error {
if !a.Type().SequenceForming() {
return p.addUnresolved(a.At(), gnum)
}
// sequence forming assertions are never predefined, so no check for it.
// final add corresponding to toUpdate itself.
u := *toUpdate
u.Revision = a.Revision()
return p.addUnresolvedSeq(&u, gnum)
}
f := NewSequenceFormingFetcher(p.groundDB, retrieve, retrieveSeq, add)
if err := f.FetchSequence(toUpdate); err != nil {
return err
}
return nil
}
// CommitTo adds the assertions from groups without errors to the
// given assertion database. Commit errors can be retrieved via Err
// per group. An error is returned directly only if CommitTo is called
// with possible pending unresolved assertions.
func (p *Pool) CommitTo(db *Database) error {
if p.curPhase == poolPhaseAddUnresolved {
return fmt.Errorf("internal error: cannot commit Pool during add unresolved phase")
}
p.unresolvedBookkeeping()
retrieve := func(ref *Ref) (Assertion, error) {
a, err := p.bs.Get(ref.Type, ref.PrimaryKey, ref.Type.MaxSupportedFormat())
if errors.Is(err, &NotFoundError{}) {
// fallback to pre-existing assertions
a, err = ref.Resolve(db.Find)
}
if err != nil {
return nil, resolveError("cannot resolve prerequisite assertion: %s", ref, err)
}
return a, nil
}
save := func(a Assertion) error {
err := db.Add(a)
if IsUnaccceptedUpdate(err) {
// unsupported format case is handled before.
// be idempotent, db has already the same or
// newer.
return nil
}
return err
}
NextGroup:
for _, gRec := range p.groups {
if gRec.hasErr() {
// already in error, ignore
continue
}
// TODO: try to reuse fetcher
f := NewFetcher(db, retrieve, save)
for i := range gRec.resolved {
if err := f.Fetch(&gRec.resolved[i]); err != nil {
gRec.setErr(err)
continue NextGroup
}
}
}
return nil
}
// ClearGroups clears the pool in terms of information associated with groups
// while preserving information about already resolved or unchanged assertions.
// It is useful for reusing a pool once the maximum of usable groups
// that was set with NewPool has been exhausted. Group errors must be