Skip to content

Commit

Permalink
feat: Parallel attestors per type.
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Glastra <[email protected]>
  • Loading branch information
matglas authored and jkjell committed Jun 1, 2024
1 parent 319d50a commit 88a01f4
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions attestation/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"crypto"
"fmt"
"os"
"sync"
"time"

"github.com/in-toto/go-witness/cryptoutil"
Expand Down Expand Up @@ -98,6 +99,7 @@ type AttestationContext struct {
products map[string]Product
materials map[string]cryptoutil.DigestSet
stepName string
mutex sync.RWMutex
}

type Product struct {
Expand Down Expand Up @@ -149,45 +151,68 @@ func (ctx *AttestationContext) RunAttestors() error {
}

for _, k := range order {
log.Debugf("Starting %s attestors...", k.String())
log.Infof("Starting %s attestors stage...", k.String())

var wg sync.WaitGroup
ch := make(chan int, len(attestors))

for _, att := range attestors[k] {
log.Infof("Starting %v attestor...", att.Name())
ctx.runAttestor(att)
wg.Add(1)
go func(att Attestor) {
defer func() { wg.Done(); <-ch }()
ctx.runAttestor(att)
}(att)
}
wg.Wait()
log.Infof("Completed %s attestors stage...", k.String())
}

return nil
}

func (ctx *AttestationContext) runAttestor(attestor Attestor) {
log.Infof("Starting %v attestor...", attestor.Name())

startTime := time.Now()
if err := attestor.Attest(ctx); err != nil {
ctx.mutex.Lock()
ctx.completedAttestors = append(ctx.completedAttestors, CompletedAttestor{
Attestor: attestor,
StartTime: startTime,
EndTime: time.Now(),
Error: err,
})
ctx.mutex.Unlock()
}

ctx.mutex.Lock()
ctx.completedAttestors = append(ctx.completedAttestors, CompletedAttestor{
Attestor: attestor,
StartTime: startTime,
EndTime: time.Now(),
})
ctx.mutex.Unlock()

if materialer, ok := attestor.(Materialer); ok {
ctx.mutex.Lock()
ctx.addMaterials(materialer)
ctx.mutex.Unlock()
}

if producer, ok := attestor.(Producer); ok {
ctx.mutex.Lock()
ctx.addProducts(producer)
ctx.mutex.Unlock()
}

log.Infof("Finished %v attestor... (%vs)", attestor.Name(), time.Since(startTime).Seconds())
}

func (ctx *AttestationContext) CompletedAttestors() []CompletedAttestor {
ctx.mutex.RLock()
out := make([]CompletedAttestor, len(ctx.completedAttestors))
copy(out, ctx.completedAttestors)
ctx.mutex.RUnlock()
return out
}

Expand All @@ -196,8 +221,10 @@ func (ctx *AttestationContext) WorkingDir() string {
}

func (ctx *AttestationContext) Hashes() []cryptoutil.DigestValue {
ctx.mutex.RLock()
hashes := make([]cryptoutil.DigestValue, len(ctx.hashes))
copy(hashes, ctx.hashes)
ctx.mutex.RUnlock()
return hashes
}

Expand All @@ -206,18 +233,22 @@ func (ctx *AttestationContext) Context() context.Context {
}

func (ctx *AttestationContext) Materials() map[string]cryptoutil.DigestSet {
ctx.mutex.RLock()
out := make(map[string]cryptoutil.DigestSet)
for k, v := range ctx.materials {
out[k] = v
}
ctx.mutex.RUnlock()
return out
}

func (ctx *AttestationContext) Products() map[string]Product {
ctx.mutex.RLock()
out := make(map[string]Product)
for k, v := range ctx.products {
out[k] = v
}
ctx.mutex.RUnlock()
return out
}

Expand Down

0 comments on commit 88a01f4

Please sign in to comment.