go fmt
This commit is contained in:
parent
b86486fdbc
commit
f8106ccec6
1 changed files with 20 additions and 30 deletions
12
images.go
12
images.go
|
@ -30,7 +30,6 @@ type ImagesCommand struct {
|
|||
|
||||
var imagesCommand ImagesCommand
|
||||
|
||||
|
||||
func (x *ImagesCommand) Execute(args []string) error {
|
||||
var images *[]Image
|
||||
|
||||
|
@ -130,7 +129,7 @@ func (x *ImagesCommand) Execute(args []string) error {
|
|||
|
||||
// build helper map (image -> children)
|
||||
var imagesByParent = make(map[string][]Image)
|
||||
imagesByParent = collectChildren(images);
|
||||
imagesByParent = collectChildren(images)
|
||||
|
||||
// image ids truncate
|
||||
// initialize image informations
|
||||
|
@ -162,7 +161,6 @@ func (x *ImagesCommand) Execute(args []string) error {
|
|||
return nil
|
||||
}
|
||||
|
||||
|
||||
func collectChildren(images *[]Image) map[string][]Image {
|
||||
var imagesByParent = make(map[string][]Image)
|
||||
for _, image := range *images {
|
||||
|
@ -176,7 +174,6 @@ func collectChildren(images *[]Image) map[string][]Image {
|
|||
return imagesByParent
|
||||
}
|
||||
|
||||
|
||||
func collectRoots(images *[]Image) []Image {
|
||||
var roots []Image
|
||||
for _, image := range *images {
|
||||
|
@ -188,7 +185,6 @@ func collectRoots(images *[]Image) []Image {
|
|||
return roots
|
||||
}
|
||||
|
||||
|
||||
func filterImages(images *[]Image, byParent *map[string][]Image) (filteredImages []Image, filteredChildren map[string][]Image) {
|
||||
for i := 0; i < len(*images); i++ {
|
||||
// image is visible
|
||||
|
@ -245,7 +241,6 @@ func jsonToText(buffer *bytes.Buffer, noTrunc bool, images []Image, byParent map
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
func PrintTreeNode(buffer *bytes.Buffer, noTrunc bool, image Image, prefix string) {
|
||||
var imageID string
|
||||
if noTrunc {
|
||||
|
@ -280,12 +275,10 @@ func humanSize(raw int64) string {
|
|||
return fmt.Sprintf("%.01f %s", rawFloat, sizes[ind])
|
||||
}
|
||||
|
||||
|
||||
func truncate(id string) string {
|
||||
return id[0:12]
|
||||
}
|
||||
|
||||
|
||||
func parseImagesJSON(rawJSON []byte) (*[]Image, error) {
|
||||
|
||||
var images []Image
|
||||
|
@ -298,7 +291,6 @@ func parseImagesJSON(rawJSON []byte) (*[]Image, error) {
|
|||
return &images, nil
|
||||
}
|
||||
|
||||
|
||||
func imagesToDot(buffer *bytes.Buffer, images []Image, byParent map[string][]Image) {
|
||||
for _, image := range images {
|
||||
if image.ParentId == "" {
|
||||
|
@ -315,7 +307,6 @@ func imagesToDot(buffer *bytes.Buffer, images []Image, byParent map[string][]Ima
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
func jsonToShort(images *[]Image) string {
|
||||
var buffer bytes.Buffer
|
||||
|
||||
|
@ -347,7 +338,6 @@ func jsonToShort(images *[]Image) string {
|
|||
return buffer.String()
|
||||
}
|
||||
|
||||
|
||||
func init() {
|
||||
parser.AddCommand("images",
|
||||
"Visualize docker images.",
|
||||
|
|
Loading…
Reference in a new issue