forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
formatter.go
124 lines (106 loc) · 2.77 KB
/
formatter.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
/*
Copyright 2017 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 explain
import (
"fmt"
"io"
"strings"
)
// Formatter helps you write with indentation, and can wrap text as needed.
type Formatter struct {
IndentLevel int
Wrap int
Writer io.Writer
}
// Indent creates a new Formatter that will indent the code by that much more.
func (f Formatter) Indent(indent int) *Formatter {
f.IndentLevel = f.IndentLevel + indent
return &f
}
// Write writes a string with the indentation set for the
// Formatter. This is not wrapping text.
func (f *Formatter) Write(str string, a ...interface{}) error {
// Don't indent empty lines
if str == "" {
_, err := io.WriteString(f.Writer, "\n")
return err
}
indent := ""
for i := 0; i < f.IndentLevel; i++ {
indent = indent + " "
}
if len(a) > 0 {
str = fmt.Sprintf(str, a...)
}
_, err := io.WriteString(f.Writer, indent+str+"\n")
return err
}
// WriteWrapped writes a string with the indentation set for the
// Formatter, and wraps as needed.
func (f *Formatter) WriteWrapped(str string, a ...interface{}) error {
if f.Wrap == 0 {
return f.Write(str, a...)
}
text := fmt.Sprintf(str, a...)
strs := wrapString(text, f.Wrap-f.IndentLevel)
for _, substr := range strs {
if err := f.Write(substr); err != nil {
return err
}
}
return nil
}
type line struct {
wrap int
words []string
}
func (l *line) String() string {
return strings.Join(l.words, " ")
}
func (l *line) Empty() bool {
return len(l.words) == 0
}
func (l *line) Len() int {
return len(l.String())
}
// Add adds the word to the line, returns true if we could, false if we
// didn't have enough room. It's always possible to add to an empty line.
func (l *line) Add(word string) bool {
newLine := line{
wrap: l.wrap,
words: append(l.words, word),
}
if newLine.Len() <= l.wrap || len(l.words) == 0 {
l.words = newLine.words
return true
}
return false
}
func wrapString(str string, wrap int) []string {
words := strings.Fields(str)
wrapped := []string{}
l := line{wrap: wrap}
for _, word := range words {
if !l.Add(word) {
wrapped = append(wrapped, l.String())
l = line{wrap: wrap}
if !l.Add(word) {
panic("Couldn't add to empty line.")
}
}
}
if !l.Empty() {
wrapped = append(wrapped, l.String())
}
return wrapped
}