-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstrings.go
260 lines (244 loc) · 5.64 KB
/
strings.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
package typ
import (
"fmt"
"strconv"
)
// String convert interface value to string
func (t *Type) String() StringAccessor {
var nv StringAccessor
nv = &NullString{StringCommon{Error: t.err}}
if t.err != nil {
return nv
}
nv = t.toString()
transition(t, nv)
return nv
}
// StringEmpty convert interface value to string and replace zero values to empty string if needed
func (t *Type) StringEmpty() StringAccessor {
nv := &NullString{}
if nv.Error = t.err; t.err != nil {
return nv
}
r, empty := t.toString(), t.Empty()
if empty.V() {
nv = &NullString{StringCommon{Error: empty.Err()}}
transition(t, nv)
return nv
}
transition(t, r)
return r
}
// StringDefault convert interface value to string with default value if it wasn't converted or it has zero value
func (t *Type) StringDefault(defaultValue string) StringAccessor {
var nv StringAccessor
nv = &NullString{StringCommon{Error: t.err}}
if t.err != nil {
return nv
}
r, empty := t.toString(), t.Empty()
if r.V() != "" && !empty.V() {
transition(t, r)
return r
}
nv = &NullString{StringCommon{P: &defaultValue, Error: r.Err()}}
transition(t, nv)
return nv
}
// toString convert interface value to string
func (t *Type) toString() StringAccessor {
nv := &NullString{}
if !t.rv.IsValid() {
nv.Error = ErrUnexpectedValue
return nv
}
if t.IsString(true) {
v := t.rv.String()
nv.P = &v
return nv
}
if t.IsNumeric(true) {
v := NumericToString(t.rv.Interface(), *t.opts.base, *t.opts.fmtByte, *t.opts.precision)
nv.P = &v
return nv
}
if t.IsBool(true) {
if t.rv.Bool() {
v := "true"
nv.P = &v
return nv
}
v := "false"
nv.P = &v
return nv
}
v := fmt.Sprintf("%+v", t.rv.Interface())
nv.P = &v
return nv
}
// StringInt convert interface value to string represents as int
func (t *Type) StringInt() StringAccessor {
var nv StringAccessor
nv = &NullString{StringCommon{Error: t.err}}
if t.err != nil {
return nv
}
v := t.Int()
return NewType(v.V(), v.Err()).String()
}
// StringBool convert interface value to string represent as bool
func (t *Type) StringBool() StringAccessor {
var nv StringAccessor
nv = &NullString{StringCommon{Error: t.err}}
if t.err != nil {
return nv
}
v := t.Bool()
return NewType(v.V(), v.Err()).String()
}
// StringFloat convert interface value to string represent as float
func (t *Type) StringFloat(defaultValue ...float32) StringAccessor {
var nv StringAccessor
nv = &NullString{StringCommon{Error: t.err}}
if t.err != nil {
return nv
}
v := t.Float()
return NewType(v.V(), v.Err()).String()
}
// StringComplex convert interface value to string represent as complex
func (t *Type) StringComplex(defaultValue ...complex64) StringAccessor {
var nv StringAccessor
nv = &NullString{StringCommon{Error: t.err}}
if t.err != nil {
return nv
}
v := t.Complex()
return NewType(v.V(), v.Err()).String()
}
// Concat returns concatenated interface values to string
func Concat(values []interface{}, options ...Option) StringAccessor {
var opts opts
if len(options) > 0 {
for _, v := range options {
if optErr := v(&opts); optErr != nil {
return &NullString{StringCommon{Error: optErr}}
}
}
}
out := ""
for i, v := range values {
nv := Of(v, options...).String()
if nv.Err() != nil {
return &NullString{StringCommon{Error: nv.Err()}}
}
out += nv.V()
if opts.delimiter != nil && len(values) > i+1 {
out += *opts.delimiter
}
}
return &NullString{StringCommon{P: &out}}
}
// BoolString convert value from bool to string
func BoolString(from bool) StringAccessor {
nv := &NullString{}
if from {
v := "true"
nv.P = &v
return nv
}
v := "false"
nv.P = &v
return nv
}
// IntString convert value from int64 to string
func IntString(from int64, options ...IntStringOption) StringAccessor {
nv := &NullString{}
opts := intStrOpts{base: 10}
if len(options) > 0 {
for _, v := range options {
if optErr := v(&opts); optErr != nil {
nv.Error = optErr
break
}
}
}
if opts.defaultValue != nil {
v := *opts.defaultValue
nv.P = &v
return nv
}
v := strconv.FormatInt(from, opts.base)
nv.P = &v
return nv
}
// UintString convert value from uint64 to string
func UintString(from uint64, options ...UintStringOption) StringAccessor {
nv := &NullString{}
opts := uintStrOpts{base: 10}
if len(options) > 0 {
for _, v := range options {
if optErr := v(&opts); optErr != nil {
nv.Error = optErr
break
}
}
}
if opts.defaultValue != nil {
v := *opts.defaultValue
nv.P = &v
return nv
}
v := strconv.FormatUint(from, opts.base)
nv.P = &v
return nv
}
// FloatString convert value from float to string
func FloatString(from float64, options ...FloatStringOption) StringAccessor {
nv := &NullString{}
opts := floatStrOpts{fmtByte: byte('e'), precision: -1, bitSize: 64}
if len(options) > 0 {
for _, v := range options {
if optErr := v(&opts); optErr != nil {
nv.Error = optErr
break
}
}
}
if opts.defaultValue != nil {
v := *opts.defaultValue
nv.P = &v
return nv
}
v := strconv.FormatFloat(from, opts.fmtByte, opts.precision, opts.bitSize)
nv.P = &v
return nv
}
// ComplexString convert value from complex128 to string
func ComplexString(from complex128, options ...ComplexStringOption) StringAccessor {
nv := &NullString{}
opts := complexStrOpts{}
if len(options) > 0 {
for _, v := range options {
_ = v(&opts)
}
}
if opts.defaultValue != nil {
v := *opts.defaultValue
nv.P = &v
return nv
}
v := fmt.Sprintf("%v", from)
nv.P = &v
return nv
}
func transition(t *Type, nv StringAccessor) {
if t.opts.prefix != nil {
v := *t.opts.prefix + nv.V()
nv.Set(v)
}
if t.opts.suffix != nil {
v := nv.V() + *t.opts.suffix
nv.Set(v)
}
}