File: mutate.go

package info (click to toggle)
singularity-container 4.1.5%2Bds4-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 43,876 kB
  • sloc: asm: 14,840; sh: 3,190; ansic: 1,751; awk: 414; makefile: 413; python: 99
file content (50 lines) | stat: -rw-r--r-- 1,369 bytes parent folder | download | duplicates (3)
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
package sourcepolicy

import (
	"context"

	"github.com/moby/buildkit/solver/pb"
	spb "github.com/moby/buildkit/sourcepolicy/pb"
	"github.com/moby/buildkit/util/bklog"
	"github.com/pkg/errors"
)

// mutate is a MutateFn which converts the source operation to the identifier and attributes provided by the policy.
// If there is no change, then the return value should be false and is not considered an error.
func mutate(ctx context.Context, op *pb.SourceOp, rule *spb.Rule, selector *selectorCache, ref string) (bool, error) {
	if rule.Updates == nil {
		return false, errors.Errorf("missing destination for convert rule")
	}

	dest := rule.Updates.Identifier
	if dest == "" {
		dest = rule.Selector.Identifier
	}
	dest, err := selector.Format(ref, dest)
	if err != nil {
		return false, errors.Wrap(err, "error formatting destination")
	}

	bklog.G(ctx).Debugf("sourcepolicy: converting %s to %s, pattern: %s", ref, dest, rule.Updates.Identifier)

	var mutated bool
	if op.Identifier != dest && dest != "" {
		mutated = true
		op.Identifier = dest
	}

	if rule.Updates.Attrs != nil {
		if op.Attrs == nil {
			op.Attrs = make(map[string]string, len(rule.Updates.Attrs))
		}
		for k, v := range rule.Updates.Attrs {
			if op.Attrs[k] != v {
				bklog.G(ctx).Debugf("setting attr %s=%s", k, v)
				op.Attrs[k] = v
				mutated = true
			}
		}
	}

	return mutated, nil
}