-
Notifications
You must be signed in to change notification settings - Fork 4
/
floats.go
136 lines (120 loc) · 2.81 KB
/
floats.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
package flagvar
import (
"fmt"
"strconv"
"strings"
)
// Float is a `flag.Value` for a float argument.
// The `BitSize` field is used for parsing when set.
type Float struct {
BitSize int
Value float64
Text string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *Float) Help() string {
var bitSize string
if fv.BitSize != 0 {
bitSize = fmt.Sprintf("%d-bit ", fv.BitSize)
}
return fmt.Sprintf("a %sfloat", bitSize)
}
// Set is flag.Value.Set
func (fv *Float) Set(v string) error {
bitSize := fv.BitSize
if bitSize == 0 {
bitSize = 64
}
n, err := strconv.ParseFloat(v, bitSize)
if err == nil {
fv.Value = n
fv.Text = v
}
return err
}
func (fv *Float) String() string {
return fv.Text
}
// Floats is a `flag.Value` for float arguments.
// The `BitSize` field is used for parsing when set.
type Floats struct {
BitSize int
Values []float64
Texts []string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *Floats) Help() string {
var bitSize string
if fv.BitSize != 0 {
bitSize = fmt.Sprintf("%d-bit ", fv.BitSize)
}
return fmt.Sprintf("a %sfloat", bitSize)
}
// Set is flag.Value.Set
func (fv *Floats) Set(v string) error {
bitSize := fv.BitSize
if bitSize == 0 {
bitSize = 64
}
n, err := strconv.ParseFloat(v, bitSize)
if err == nil {
fv.Values = append(fv.Values, n)
fv.Texts = append(fv.Texts, v)
}
return err
}
func (fv *Floats) String() string {
return strings.Join(fv.Texts, ",")
}
// FloatsCSV is a `flag.Value` for comma-separated `float` arguments.
// If `Accumulate` is set, the values of all instances of the flag are accumulated.
// The `BitSize` fields are used for parsing when set.
// The `Separator` field is used instead of the comma when set.
type FloatsCSV struct {
BitSize int
Separator string
Accumulate bool
Values []float64
Texts []string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *FloatsCSV) Help() string {
var bitSize string
if fv.BitSize != 0 {
bitSize = fmt.Sprintf("%d-bit ", fv.BitSize)
}
separator := ","
if fv.Separator != "" {
separator = fv.Separator
}
return fmt.Sprintf("%q-separated list of %sfloats", separator, bitSize)
}
// Set is flag.Value.Set
func (fv *FloatsCSV) Set(v string) error {
bitSize := fv.BitSize
if bitSize == 0 {
bitSize = 64
}
separator := fv.Separator
if separator == "" {
separator = ","
}
if !fv.Accumulate {
fv.Values = fv.Values[:0]
fv.Texts = fv.Texts[:0]
}
parts := strings.Split(v, separator)
for _, part := range parts {
part = strings.TrimSpace(part)
n, err := strconv.ParseFloat(part, bitSize)
if err != nil {
return err
}
fv.Values = append(fv.Values, n)
fv.Texts = append(fv.Texts, part)
}
return nil
}
func (fv *FloatsCSV) String() string {
return strings.Join(fv.Texts, ",")
}