-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlist_units.go
More file actions
130 lines (118 loc) · 2.79 KB
/
list_units.go
File metadata and controls
130 lines (118 loc) · 2.79 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package fleet
import (
"fmt"
"os"
"strings"
"text/tabwriter"
"github.com/coreos/fleet/machine"
"github.com/coreos/fleet/schema"
"github.com/deis/deis/deisctl/units"
)
// initialize tabwriter on stdout
func init() {
out = new(tabwriter.Writer)
out.Init(os.Stdout, 0, 8, 1, '\t', 0)
}
const (
//defaultListUnitFields = "unit,state,load,active,sub,machine"
defaultListUnitsFields = "unit,machine,load,active,sub"
)
type usToField func(us *schema.UnitState, full bool) string
var (
out *tabwriter.Writer
listUnitsFields = map[string]usToField{
"unit": func(us *schema.UnitState, full bool) string {
if us == nil {
return "-"
}
return us.Name
},
"load": func(us *schema.UnitState, full bool) string {
if us == nil {
return "-"
}
return us.SystemdLoadState
},
"active": func(us *schema.UnitState, full bool) string {
if us == nil {
return "-"
}
return us.SystemdActiveState
},
"sub": func(us *schema.UnitState, full bool) string {
if us == nil {
return "-"
}
return us.SystemdSubState
},
"machine": func(us *schema.UnitState, full bool) string {
if us == nil || us.MachineID == "" {
return "-"
}
ms := cachedMachineState(us.MachineID)
if ms == nil {
ms = &machine.MachineState{ID: us.MachineID}
}
return machineFullLegend(*ms, full)
},
"hash": func(us *schema.UnitState, full bool) string {
if us == nil || us.Hash == "" {
return "-"
}
if !full {
return us.Hash[:7]
}
return us.Hash
},
}
)
// ListUnits prints all Deis-related units to Stdout
func (c *FleetClient) ListUnits() (err error) {
var states []*schema.UnitState
unitStates, err := cAPI.UnitStates()
if err != nil {
return err
}
for _, us := range unitStates {
for _, prefix := range units.Names {
if strings.HasPrefix(us.Name, prefix) {
states = append(states, us)
break
}
}
}
printUnits(states)
return
}
// printUnits writes units to stdout using a tabwriter
func printUnits(states []*schema.UnitState) {
cols := strings.Split(defaultListUnitsFields, ",")
for _, s := range cols {
if _, ok := listUnitsFields[s]; !ok {
fmt.Fprintf(os.Stderr, "Invalid key in output format: %q\n", s)
}
}
fmt.Fprintln(out, strings.ToUpper(strings.Join(cols, "\t")))
for _, us := range states {
var f []string
for _, c := range cols {
f = append(f, listUnitsFields[c](us, false))
}
fmt.Fprintln(out, strings.Join(f, "\t"))
}
out.Flush()
}
func machineIDLegend(ms machine.MachineState, full bool) string {
legend := ms.ID
if !full {
legend = fmt.Sprintf("%s...", ms.ShortID())
}
return legend
}
func machineFullLegend(ms machine.MachineState, full bool) string {
legend := machineIDLegend(ms, full)
if len(ms.PublicIP) > 0 {
legend = fmt.Sprintf("%s/%s", legend, ms.PublicIP)
}
return legend
}