forked from SUSE/zypper-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathps.go
98 lines (83 loc) · 2.71 KB
/
ps.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// Copyright (c) 2015 SUSE LLC. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"fmt"
"log"
"github.com/codegangsta/cli"
"github.com/docker/engine-api/types"
)
// zypper-docker ps
func psCmd(ctx *cli.Context) {
client := getDockerClient()
containers, err := client.ContainerList(types.ContainerListOptions{})
if err != nil {
logAndFatalf("Error while fetching running containers: %v\n", err)
return
}
cache := getCacheFile()
matches := []types.Container{}
notSuse := []types.Container{}
unknown := []types.Container{}
if len(containers) == 0 {
fmt.Println("There are no running containers to analyze.")
return
}
for _, container := range containers {
select {
case <-killChannel:
return
default:
imageID, err := getImageID(container.Image)
if err != nil {
log.Printf("Cannot analyze container %s [%s]: %s", container.ID, container.Image, err)
unknown = append(unknown, container)
continue
}
if exists, suse := cache.idExists(imageID); exists && !suse {
notSuse = append(notSuse, container)
} else if cache.isImageOutdated(imageID) {
matches = append(matches, container)
} else {
unknown = append(unknown, container)
}
}
}
if len(matches) > 0 {
fmt.Println("Running containers whose images have been updated:")
for _, container := range matches {
fmt.Printf(" - %s [%s]\n", container.ID, container.Image)
}
fmt.Println("It is recommended to stop the container and start a new instance based on the new image created with zypper-docker")
}
if len(notSuse) > 0 {
if len(matches) > 0 {
fmt.Printf("\n")
}
fmt.Println("The following containers have been ignored because are known to be based on non-SUSE systems:")
for _, container := range notSuse {
fmt.Printf(" - %s [%s]\n", container.ID, container.Image)
}
}
if len(unknown) > 0 {
if len(matches) > 0 || len(notSuse) > 0 {
fmt.Printf("\n")
}
fmt.Println("The following containers have an unknown state:")
for _, container := range unknown {
fmt.Printf(" - %s [%s]\n", container.ID, container.Image)
}
fmt.Println("Use either the \"list-patches-container\" or the \"list-updates-container\" commands to inspect them.")
}
}