blob: dc9bb72dab386180cb94b67e0893df68acf2d74b (
plain) (
blame)
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
|
package dag
import (
"fmt"
"github.com/MichaelMure/git-bug/identity"
"github.com/MichaelMure/git-bug/repository"
)
// ClockLoader is the repository.ClockLoader for Entity
func ClockLoader(defs ...Definition) repository.ClockLoader {
clocks := make([]string, len(defs)*2)
for _, def := range defs {
clocks = append(clocks, fmt.Sprintf(creationClockPattern, def.Namespace))
clocks = append(clocks, fmt.Sprintf(editClockPattern, def.Namespace))
}
return repository.ClockLoader{
Clocks: clocks,
Witnesser: func(repo repository.ClockedRepo) error {
// We don't care about the actual identity so an IdentityStub will do
resolver := identity.NewStubResolver()
for _, def := range defs {
// we actually just need to read all entities,
// as that will create and update the clocks
// TODO: concurrent loading to be faster?
for b := range ReadAll(def, repo, resolver) {
if b.Err != nil {
return b.Err
}
}
}
return nil
},
}
}
|