forked from docker-archive/classicswarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.go
60 lines (53 loc) · 1.31 KB
/
options.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
package cluster
import (
"net"
"os"
"strconv"
"strings"
)
// DriverOpts are key=values options
type DriverOpts []string
// String returns a string from the driver options
func (do DriverOpts) String(key, env string) (string, bool) {
for _, opt := range do {
kv := strings.SplitN(opt, "=", 2)
if kv[0] == key {
return kv[1], true
}
}
if env := os.Getenv(env); env != "" {
return env, true
}
return "", false
}
// Int returns an int64 from the driver options
func (do DriverOpts) Int(key, env string) (int64, bool) {
if value, ok := do.String(key, env); ok {
v, _ := strconv.ParseInt(value, 0, 64)
return v, true
}
return 0, false
}
// Uint returns an int64 from the driver options
func (do DriverOpts) Uint(key, env string) (uint64, bool) {
if value, ok := do.String(key, env); ok {
v, _ := strconv.ParseUint(value, 0, 64)
return v, true
}
return 0, false
}
// Float returns a float64 from the driver options
func (do DriverOpts) Float(key, env string) (float64, bool) {
if value, ok := do.String(key, env); ok {
v, _ := strconv.ParseFloat(value, 64)
return v, true
}
return 0.0, false
}
// IP returns an IP address from the driver options
func (do DriverOpts) IP(key, env string) (net.IP, bool) {
if value, ok := do.String(key, env); ok {
return net.ParseIP(value), true
}
return nil, false
}