-
Notifications
You must be signed in to change notification settings - Fork 4
/
ip.go
107 lines (92 loc) · 2.14 KB
/
ip.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
package flagvar
import (
"fmt"
"strings"
"net"
)
// IP is a `flag.Value` for IP addresses.
type IP struct {
Value net.IP
Text string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *IP) Help() string {
return "an IP address"
}
// Set is flag.Value.Set
func (fv *IP) Set(v string) error {
ip := net.ParseIP(v)
if ip == nil {
return fmt.Errorf(`not a valid IP address: "%s"`, v)
}
fv.Text = v
fv.Value = ip
return nil
}
func (fv *IP) String() string {
return fv.Text
}
// IPs is a `flag.Value` for IP addresses.
type IPs struct {
Values []net.IP
Texts []string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *IPs) Help() string {
return "an IP address"
}
// Set is flag.Value.Set
func (fv *IPs) Set(v string) error {
ip := net.ParseIP(v)
if ip == nil {
return fmt.Errorf(`not a valid IP address: "%s"`, v)
}
fv.Texts = append(fv.Texts, v)
fv.Values = append(fv.Values, ip)
return nil
}
func (fv *IPs) String() string {
return strings.Join(fv.Texts, ",")
}
// IPsCSV is a `flag.Value` for IP addresses.
// If `Accumulate` is set, the values of all instances of the flag are accumulated.
// The `Separator` field is used instead of the comma when set.
type IPsCSV struct {
Separator string
Accumulate bool
Values []net.IP
Texts []string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *IPsCSV) Help() string {
separator := ","
if fv.Separator != "" {
separator = fv.Separator
}
return fmt.Sprintf("%q-separated list of IP addresses", separator)
}
// Set is flag.Value.Set
func (fv *IPsCSV) Set(v string) error {
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)
ip := net.ParseIP(part)
if ip == nil {
return fmt.Errorf(`not a valid IP address: "%s"`, part)
}
fv.Texts = append(fv.Texts, part)
fv.Values = append(fv.Values, ip)
}
return nil
}
func (fv *IPsCSV) String() string {
return strings.Join(fv.Texts, ",")
}