-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlist.go
More file actions
138 lines (129 loc) · 2.94 KB
/
list.go
File metadata and controls
138 lines (129 loc) · 2.94 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
131
132
133
134
135
136
137
138
package deisctl
import (
"fmt"
"os"
"sort"
"strings"
"text/tabwriter"
"github.com/coreos/fleet/job"
"github.com/coreos/fleet/machine"
)
const (
defaultListUnitFields = "unit,state,load,active,sub,desc,machine"
)
type jobToField func(j *job.Job, full bool) string
var (
out *tabwriter.Writer
listUnitsFields = map[string]jobToField{
"unit": func(j *job.Job, full bool) string {
return j.Name
},
"state": func(j *job.Job, full bool) string {
js := j.State
if js != nil {
return string(*js)
}
return "-"
},
"dstate": func(j *job.Job, full bool) string {
return string(j.TargetState)
},
"load": func(j *job.Job, full bool) string {
us := j.UnitState
if us == nil {
return "-"
}
return us.LoadState
},
"active": func(j *job.Job, full bool) string {
us := j.UnitState
if us == nil {
return "-"
}
return us.ActiveState
},
"sub": func(j *job.Job, full bool) string {
us := j.UnitState
if us == nil {
return "-"
}
return us.SubState
},
"desc": func(j *job.Job, full bool) string {
d := j.Unit.Description()
if d == "" {
return "-"
}
return d
},
"machine": func(j *job.Job, full bool) string {
us := j.UnitState
if us == nil || us.MachineID == "" {
return "-"
}
ms := cachedMachineState(us.MachineID)
if ms == nil {
ms = &machine.MachineState{ID: us.MachineID}
}
return machineFullLegend(*ms, full)
},
"tmachine": func(j *job.Job, full bool) string {
if j.TargetMachineID == "" {
return "-"
}
ms := cachedMachineState(j.TargetMachineID)
if ms == nil {
ms = &machine.MachineState{ID: j.TargetMachineID}
}
return machineFullLegend(*ms, full)
},
"hash": func(j *job.Job, full bool) string {
us := j.UnitState
if us == nil || us.UnitHash == "" {
return "-"
}
if !full {
return us.UnitHash[:7]
}
return us.UnitHash
},
}
)
// initialize tabwriter on stdout
func init() {
out = new(tabwriter.Writer)
out.Init(os.Stdout, 0, 8, 1, '\t', 0)
}
// printList writes units to stdout using a tabwriter
func printList(jobs map[string]job.Job, sortable sort.StringSlice) {
cols := strings.Split(defaultListUnitFields, ",")
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 _, name := range sortable {
var f []string
j := jobs[name]
for _, c := range cols {
f = append(f, listUnitsFields[c](&j, 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
}