mirror of
https://github.com/moby/buildkit.git
synced 2026-08-04 06:40:22 +00:00
Remove gogoproto in favor of the standard protobuf compiler. This removes any nonstandard extensions that were part of gogoproto such as the custom types. Signed-off-by: Jonathan A. Sternberg <jonathan.sternberg@docker.com>
48 lines
1.0 KiB
Go
48 lines
1.0 KiB
Go
package pb
|
|
|
|
import (
|
|
ocispecs "github.com/opencontainers/image-spec/specs-go/v1"
|
|
)
|
|
|
|
func (p *Platform) Spec() ocispecs.Platform {
|
|
result := ocispecs.Platform{
|
|
OS: p.OS,
|
|
Architecture: p.Architecture,
|
|
Variant: p.Variant,
|
|
OSVersion: p.OSVersion,
|
|
}
|
|
if p.OSFeatures != nil {
|
|
result.OSFeatures = append([]string{}, p.OSFeatures...)
|
|
}
|
|
return result
|
|
}
|
|
|
|
func PlatformFromSpec(p ocispecs.Platform) *Platform {
|
|
result := &Platform{
|
|
OS: p.OS,
|
|
Architecture: p.Architecture,
|
|
Variant: p.Variant,
|
|
OSVersion: p.OSVersion,
|
|
}
|
|
if p.OSFeatures != nil {
|
|
result.OSFeatures = append([]string{}, p.OSFeatures...)
|
|
}
|
|
return result
|
|
}
|
|
|
|
func ToSpecPlatforms(p []*Platform) []ocispecs.Platform {
|
|
out := make([]ocispecs.Platform, 0, len(p))
|
|
for _, pp := range p {
|
|
out = append(out, pp.Spec())
|
|
}
|
|
return out
|
|
}
|
|
|
|
func PlatformsFromSpec(p []ocispecs.Platform) []*Platform {
|
|
out := make([]*Platform, 0, len(p))
|
|
for _, pp := range p {
|
|
out = append(out, PlatformFromSpec(pp))
|
|
}
|
|
return out
|
|
}
|