mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-08 01:45:43 +00:00
With the advent of Podman 2.0.0 we crossed the magical barrier of go modules. While we were able to continue importing all packages inside of the project, the project could not be vendored anymore from the outside. Move the go module to new major version and change all imports to github.com/containers/libpod/v2. The renaming of the imports was done via gomove [1]. [1] https://github.com/KSubedi/gomove Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
75 lines
1.6 KiB
Go
75 lines
1.6 KiB
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/containers/libpod/v2/pkg/domain/entities"
|
|
)
|
|
|
|
// IsDir returns true if the specified path refers to a directory.
|
|
func IsDir(path string) bool {
|
|
file, err := os.Stat(path)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return file.IsDir()
|
|
}
|
|
|
|
// FileExists returns true if path refers to an existing file.
|
|
func FileExists(path string) bool {
|
|
file, err := os.Stat(path)
|
|
// All errors return file == nil
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return !file.IsDir()
|
|
}
|
|
|
|
func PrintPodPruneResults(podPruneReports []*entities.PodPruneReport) error {
|
|
var errs OutputErrors
|
|
for _, r := range podPruneReports {
|
|
if r.Err == nil {
|
|
fmt.Println(r.Id)
|
|
} else {
|
|
errs = append(errs, r.Err)
|
|
}
|
|
}
|
|
return errs.PrintErrors()
|
|
}
|
|
|
|
func PrintContainerPruneResults(containerPruneReport *entities.ContainerPruneReport) error {
|
|
var errs OutputErrors
|
|
for k := range containerPruneReport.ID {
|
|
fmt.Println(k)
|
|
}
|
|
for _, v := range containerPruneReport.Err {
|
|
errs = append(errs, v)
|
|
}
|
|
return errs.PrintErrors()
|
|
}
|
|
|
|
func PrintVolumePruneResults(volumePruneReport []*entities.VolumePruneReport) error {
|
|
var errs OutputErrors
|
|
for _, r := range volumePruneReport {
|
|
if r.Err == nil {
|
|
fmt.Println(r.Id)
|
|
} else {
|
|
errs = append(errs, r.Err)
|
|
}
|
|
}
|
|
return errs.PrintErrors()
|
|
}
|
|
|
|
func PrintImagePruneResults(imagePruneReport *entities.ImagePruneReport) error {
|
|
for _, i := range imagePruneReport.Report.Id {
|
|
fmt.Println(i)
|
|
}
|
|
for _, e := range imagePruneReport.Report.Err {
|
|
fmt.Fprint(os.Stderr, e.Error()+"\n")
|
|
}
|
|
if imagePruneReport.Size > 0 {
|
|
fmt.Fprintf(os.Stdout, "Size: %d\n", imagePruneReport.Size)
|
|
}
|
|
return nil
|
|
}
|