-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathlist_units.go
More file actions
146 lines (133 loc) · 3.25 KB
/
list_units.go
File metadata and controls
146 lines (133 loc) · 3.25 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
139
140
141
142
143
144
145
146
package client
import (
"fmt"
"os"
"sort"
"strings"
"text/tabwriter"
"github.com/coreos/fleet/machine"
"github.com/coreos/fleet/schema"
"github.com/deis/deisctl/utils"
)
// 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 sortable sort.StringSlice
states := make(map[string]*schema.UnitState, 0)
unitStates, err := cAPI.UnitStates()
if err != nil {
return err
}
for _, us := range unitStates {
if strings.HasPrefix(us.Name, "deis-") {
states[us.Name] = us
sortable = append(sortable, us.Name)
}
}
sortable.Sort()
printUnits(states, sortable)
return
}
func (c *FleetClient) GetLocaljobs() sort.StringSlice {
var sortable sort.StringSlice
unitStates, err := c.Fleet.UnitStates()
if err != nil {
return sortable
}
for _, us := range unitStates {
if strings.HasPrefix(us.Name, "deis-") && us.MachineID == utils.GetMachineID("/") {
sortable = append(sortable, us.Name)
}
}
return sortable
}
// printUnits writes units to stdout using a tabwriter
func printUnits(states map[string]*schema.UnitState, sortable sort.StringSlice) {
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 _, name := range sortable {
var f []string
us := states[name]
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
}