mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
1b23d78113
Updated kubernetes packages to latest release. resizefs package has been included into k8s.io/mount-utils package. updated code to use the same. Updates: #1968 Signed-off-by: Rakshith R <rar@redhat.com>
87 lines
2.5 KiB
Go
87 lines
2.5 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
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 flag
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"io"
|
|
"strings"
|
|
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
// NamedFlagSets stores named flag sets in the order of calling FlagSet.
|
|
type NamedFlagSets struct {
|
|
// Order is an ordered list of flag set names.
|
|
Order []string
|
|
// FlagSets stores the flag sets by name.
|
|
FlagSets map[string]*pflag.FlagSet
|
|
// NormalizeNameFunc is the normalize function which used to initialize FlagSets created by NamedFlagSets.
|
|
NormalizeNameFunc func(f *pflag.FlagSet, name string) pflag.NormalizedName
|
|
}
|
|
|
|
// FlagSet returns the flag set with the given name and adds it to the
|
|
// ordered name list if it is not in there yet.
|
|
func (nfs *NamedFlagSets) FlagSet(name string) *pflag.FlagSet {
|
|
if nfs.FlagSets == nil {
|
|
nfs.FlagSets = map[string]*pflag.FlagSet{}
|
|
}
|
|
if _, ok := nfs.FlagSets[name]; !ok {
|
|
flagSet := pflag.NewFlagSet(name, pflag.ExitOnError)
|
|
flagSet.SetNormalizeFunc(pflag.CommandLine.GetNormalizeFunc())
|
|
if nfs.NormalizeNameFunc != nil {
|
|
flagSet.SetNormalizeFunc(nfs.NormalizeNameFunc)
|
|
}
|
|
nfs.FlagSets[name] = flagSet
|
|
nfs.Order = append(nfs.Order, name)
|
|
}
|
|
return nfs.FlagSets[name]
|
|
}
|
|
|
|
// PrintSections prints the given names flag sets in sections, with the maximal given column number.
|
|
// If cols is zero, lines are not wrapped.
|
|
func PrintSections(w io.Writer, fss NamedFlagSets, cols int) {
|
|
for _, name := range fss.Order {
|
|
fs := fss.FlagSets[name]
|
|
if !fs.HasFlags() {
|
|
continue
|
|
}
|
|
|
|
wideFS := pflag.NewFlagSet("", pflag.ExitOnError)
|
|
wideFS.AddFlagSet(fs)
|
|
|
|
var zzz string
|
|
if cols > 24 {
|
|
zzz = strings.Repeat("z", cols-24)
|
|
wideFS.Int(zzz, 0, strings.Repeat("z", cols-24))
|
|
}
|
|
|
|
var buf bytes.Buffer
|
|
fmt.Fprintf(&buf, "\n%s flags:\n\n%s", strings.ToUpper(name[:1])+name[1:], wideFS.FlagUsagesWrapped(cols))
|
|
|
|
if cols > 24 {
|
|
i := strings.Index(buf.String(), zzz)
|
|
lines := strings.Split(buf.String()[:i], "\n")
|
|
fmt.Fprint(w, strings.Join(lines[:len(lines)-1], "\n"))
|
|
fmt.Fprintln(w)
|
|
} else {
|
|
fmt.Fprint(w, buf.String())
|
|
}
|
|
}
|
|
}
|