-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathutils.go
46 lines (43 loc) · 1.16 KB
/
utils.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
package qstring
import (
"reflect"
"strings"
"time"
)
// isEmptyValue returns true if the provided reflect.Value
func isEmptyValue(v reflect.Value) bool {
switch v.Kind() {
case reflect.Array, reflect.Map, reflect.Slice, reflect.String:
return v.Len() == 0
case reflect.Bool:
return !v.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return v.Int() == 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
return v.Uint() == 0
case reflect.Float32, reflect.Float64:
return v.Float() == 0
case reflect.Interface, reflect.Ptr:
return v.IsNil()
case reflect.Struct:
switch t := v.Interface().(type) {
case time.Time:
return t.IsZero()
case ComparativeTime:
return t.Time.IsZero()
}
}
return false
}
// parseTag splits a struct field's qstring tag into its name and, if an
// optional omitempty option was provided, a boolean indicating this is
// returned
func parseTag(tag string) (string, bool) {
if idx := strings.Index(tag, ","); idx != -1 {
if tag[idx+1:] == "omitempty" {
return tag[:idx], true
}
return tag[:idx], false
}
return tag, false
}