mirror of https://github.com/containers/podman.git
33 lines
434 B
Go
33 lines
434 B
Go
package define
|
|
|
|
import "fmt"
|
|
|
|
type ImageFormat int64
|
|
|
|
const (
|
|
Qcow ImageFormat = iota
|
|
Vhdx
|
|
Tar
|
|
Raw
|
|
)
|
|
|
|
func (imf ImageFormat) Kind() string {
|
|
switch imf {
|
|
case Vhdx:
|
|
return "vhdx"
|
|
case Tar:
|
|
return "tar"
|
|
case Raw:
|
|
return "raw"
|
|
}
|
|
return "qcow2"
|
|
}
|
|
|
|
func (imf ImageFormat) KindWithCompression() string {
|
|
// Tar uses xz; all others use zstd
|
|
if imf == Tar {
|
|
return "tar.xz"
|
|
}
|
|
return fmt.Sprintf("%s.zst", imf.Kind())
|
|
}
|