Skip to content

Commit a69a0b0

Browse files
authored
Merge pull request #2548 from ijc/platforms-must-parse
platforms: Add `MustParse`
2 parents 037fc5e + c83f977 commit a69a0b0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

platforms/platforms.go

+11
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ package platforms
109109
import (
110110
"regexp"
111111
"runtime"
112+
"strconv"
112113
"strings"
113114

114115
"github.com/containerd/containerd/errdefs"
@@ -230,6 +231,16 @@ func Parse(specifier string) (specs.Platform, error) {
230231
return specs.Platform{}, errors.Wrapf(errdefs.ErrInvalidArgument, "%q: cannot parse platform specifier", specifier)
231232
}
232233

234+
// MustParse is like Parses but panics if the specifier cannot be parsed.
235+
// Simplifies initialization of global variables.
236+
func MustParse(specifier string) specs.Platform {
237+
p, err := Parse(specifier)
238+
if err != nil {
239+
panic("platform: Parse(" + strconv.Quote(specifier) + "): " + err.Error())
240+
}
241+
return p
242+
}
243+
233244
// Format returns a string specifier from the provided platform specification.
234245
func Format(platform specs.Platform) string {
235246
if platform.OS == "" {

0 commit comments

Comments
 (0)