forked from coreos/fleet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list_unit_files.go
147 lines (131 loc) · 3.81 KB
/
list_unit_files.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
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
147
// Copyright 2014 CoreOS, Inc.
//
// 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"
"sort"
"strconv"
"strings"
"github.com/coreos/fleet/machine"
"github.com/coreos/fleet/schema"
)
const (
defaultListUnitFilesFields = "unit,hash,dstate,state,target"
)
func mapTargetField(u schema.Unit, full bool) string {
if suToGlobal(u) {
return "global"
}
if u.MachineID == "" {
return "-"
}
ms := cachedMachineState(u.MachineID)
if ms == nil {
ms = &machine.MachineState{ID: u.MachineID}
}
return machineFullLegend(*ms, full)
}
var (
listUnitFilesFieldsFlag string
cmdListUnitFiles = &Command{
Name: "list-unit-files",
Summary: "List the units that exist in the cluster.",
Usage: "[--fields]",
Description: `Lists all unit files that exist in the cluster (whether or not they are loaded onto a machine).`,
Run: runListUnitFiles,
}
listUnitFilesFields = map[string]unitToField{
"unit": func(u schema.Unit, full bool) string {
return u.Name
},
"global": func(u schema.Unit, full bool) string {
return strconv.FormatBool(suToGlobal(u))
},
"dstate": func(u schema.Unit, full bool) string {
if u.DesiredState == "" {
return "-"
}
return u.DesiredState
},
"target": mapTargetField,
"tmachine": mapTargetField,
"state": func(u schema.Unit, full bool) string {
if suToGlobal(u) || u.CurrentState == "" {
return "-"
}
return u.CurrentState
},
"hash": func(u schema.Unit, full bool) string {
uf := schema.MapSchemaUnitOptionsToUnitFile(u.Options)
if !full {
return uf.Hash().Short()
}
return uf.Hash().String()
},
"desc": func(u schema.Unit, full bool) string {
uf := schema.MapSchemaUnitOptionsToUnitFile(u.Options)
d := uf.Description()
if d == "" {
return "-"
}
return d
},
}
)
type unitToField func(u schema.Unit, full bool) string
func init() {
cmdListUnitFiles.Flags.BoolVar(&sharedFlags.Full, "full", false, "Do not ellipsize fields on output")
cmdListUnitFiles.Flags.BoolVar(&sharedFlags.NoLegend, "no-legend", false, "Do not print a legend (column headers)")
cmdListUnitFiles.Flags.StringVar(&listUnitFilesFieldsFlag, "fields", defaultListUnitFilesFields, fmt.Sprintf("Columns to print for each Unit file. Valid fields are %q", strings.Join(unitToFieldKeys(listUnitFilesFields), ",")))
}
func runListUnitFiles(args []string) (exit int) {
if listUnitFilesFieldsFlag == "" {
stderr("Must define output format")
return 1
}
cols := strings.Split(listUnitFilesFieldsFlag, ",")
for _, s := range cols {
if _, ok := listUnitFilesFields[s]; !ok {
stderr("Invalid key in output format: %q", s)
return 1
}
if s == "tmachine" {
stderr("WARNING: The \"tmachine\" field is deprecated. Use \"target\" instead")
}
}
units, err := cAPI.Units()
if err != nil {
stderr("Error retrieving list of units from repository: %v", err)
return 1
}
if !sharedFlags.NoLegend {
fmt.Fprintln(out, strings.ToUpper(strings.Join(cols, "\t")))
}
for _, u := range units {
var f []string
for _, c := range cols {
f = append(f, listUnitFilesFields[c](*u, sharedFlags.Full))
}
fmt.Fprintln(out, strings.Join(f, "\t"))
}
out.Flush()
return
}
func unitToFieldKeys(m map[string]unitToField) (keys []string) {
for k := range m {
keys = append(keys, k)
}
sort.Strings(keys)
return
}