-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathref.go
140 lines (129 loc) · 2.32 KB
/
ref.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
137
138
139
140
package golib
import (
"fmt"
"math"
"time"
)
// StringRef returns a refernce to the given string
func StringRef(s string, def ...*string) *string {
switch len(def) {
case 0:
return &s
case 1:
if s == "" {
return def[0]
}
return &s
default:
panic("multiple default params")
}
}
// Int64Ref returns a refernce to the given string
func Int64Ref(i int64, def ...*int64) *int64 {
switch len(def) {
case 0:
return &i
case 1:
if i == 0 {
return def[0]
}
return &i
default:
panic("multiple default params")
}
}
// Float64Ref returns a refernce to the given float64
func Float64Ref(f float64, def ...*float64) *float64 {
switch len(def) {
case 0:
return &f
case 1:
if f == 0 {
return def[0]
}
return &f
default:
panic("multiple default params")
}
}
// BoolRef
func BoolRef(b bool, def ...*bool) *bool {
switch len(def) {
case 0:
return &b
case 1:
if !b {
return def[0]
}
return &b
default:
panic("multiple default params")
}
}
// IntRef returns a refernece to the given string
func IntRef(i int, def ...*int) *int {
switch len(def) {
case 0:
return &i
case 1:
if i == 0 {
return def[0]
}
return &i
default:
panic("multiple default params")
}
}
// TimeRef returns a refernece to the given Time
func TimeRef(t time.Time, def ...*time.Time) *time.Time {
switch len(def) {
case 0:
return &t
case 1:
if t.IsZero() {
return def[0]
}
return &t
default:
panic("multiple default params")
}
}
// DurationRef returns a refernece to the given Duration
func DurationRef(d time.Duration, def ...*time.Duration) *time.Duration {
switch len(def) {
case 0:
return &d
case 1:
if d == 0 {
return def[0]
}
default:
panic("multiple default params")
}
return &d
}
func Int64RefFromFloat64(v float64) *int64 {
intV, fractV := math.Modf(v)
if fractV == 0 {
return Int64Ref(int64(intV))
}
return nil
}
// Int64OrString checks if data is an int or any of the accepted strings.
func Int64OrString(data interface{}, accepted ...string) (*int64, string, error) {
if data == nil {
return nil, "", nil
}
switch v := data.(type) {
case string:
if StrInArray(v, accepted) {
return nil, v, nil
}
case float64:
i := Int64RefFromFloat64(v)
if i != nil {
return i, "", nil
}
}
return nil, "", fmt.Errorf("Int64OrString: %v Accepted: %v", data, accepted)
}