-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathvars.go
84 lines (71 loc) · 2.76 KB
/
vars.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
// Copyright 2023 Chainguard, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package config
import (
"fmt"
"regexp"
"chainguard.dev/melange/pkg/util"
)
const (
SubstitutionPackageName = "${{package.name}}"
SubstitutionPackageVersion = "${{package.version}}"
SubstitutionPackageFullVersion = "${{package.full-version}}"
SubstitutionPackageEpoch = "${{package.epoch}}"
SubstitutionPackageDescription = "${{package.description}}"
SubstitutionPackageSrcdir = "${{package.srcdir}}"
SubstitutionTargetsOutdir = "${{targets.outdir}}"
SubstitutionTargetsDestdir = "${{targets.destdir}}"
SubstitutionTargetsContextdir = "${{targets.contextdir}}"
SubstitutionSubPkgName = "${{subpkg.name}}"
SubstitutionSubPkgDir = "${{targets.subpkgdir}}"
SubstitutionContextName = "${{context.name}}"
SubstitutionHostTripletGnu = "${{host.triplet.gnu}}"
SubstitutionHostTripletRust = "${{host.triplet.rust}}"
SubstitutionCrossTripletGnuGlibc = "${{cross.triplet.gnu.glibc}}"
SubstitutionCrossTripletGnuMusl = "${{cross.triplet.gnu.musl}}"
SubstitutionCrossTripletRustGlibc = "${{cross.triplet.rust.glibc}}"
SubstitutionCrossTripletRustMusl = "${{cross.triplet.rust.musl}}"
SubstitutionBuildArch = "${{build.arch}}"
SubstitutionBuildGoArch = "${{build.goarch}}"
)
// Get variables from configuration and return them in a map
func (cfg Configuration) GetVarsFromConfig() (map[string]string, error) {
nw := map[string]string{}
for k, v := range cfg.Vars {
nk := fmt.Sprintf("${{vars.%s}}", k)
nv, err := util.MutateStringFromMap(nw, v)
if err != nil {
return nil, err
}
nw[nk] = nv
}
return nw, nil
}
// Perform variable substitutions from the configuration on a given map
func (cfg Configuration) PerformVarSubstitutions(nw map[string]string) error {
for _, v := range cfg.VarTransforms {
nk := fmt.Sprintf("${{vars.%s}}", v.To)
from, err := util.MutateStringFromMap(nw, v.From)
if err != nil {
return err
}
re, err := regexp.Compile(v.Match)
if err != nil {
return fmt.Errorf("match value: %s string does not compile into a regex: %w", v.Match, err)
}
output := re.ReplaceAllString(from, v.Replace)
nw[nk] = output
}
return nil
}