forked from Barbery/phpGo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty.go
77 lines (60 loc) · 1.54 KB
/
empty.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
package phpGo
import (
"reflect"
)
func Empty(args ...interface{}) bool {
arrVal := reflect.ValueOf(args[0])
if !arrVal.IsValid() {
return true
}
if len(args) < 2 || args[1] == nil {
return isEmptyValue(args[0])
}
switch arrVal.Kind() {
case reflect.Array, reflect.Slice:
if index, ok := args[1].(int); ok {
return isEmptyValue(arrVal.Index(index).Interface())
}
return true
case reflect.Map:
indexVal := arrVal.MapIndex(reflect.ValueOf(args[1]))
if indexVal.IsValid() == false {
return true
}
return isEmptyValue(indexVal.Interface())
case reflect.Struct:
key := reflect.ValueOf(args[1]).String()
if !arrVal.FieldByName(key).IsValid() {
return true
} else {
return isEmptyValue(arrVal.FieldByName(key).Interface())
}
}
return false
}
func isEmptyValue(value interface{}) bool {
if value == nil {
return true
}
val := reflect.ValueOf(value)
switch val.Kind() {
case reflect.Bool:
return !val.Bool()
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
return val.Int() == 0
case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
return val.Uint() == 0
case reflect.Float32, reflect.Float64:
return val.Float() == 0.00
case reflect.Complex64, reflect.Complex128:
return val.Complex() == 0+0i
case reflect.String:
realVal := val.String()
return realVal == "" || realVal == "0"
case reflect.Array, reflect.Slice, reflect.Map, reflect.Chan:
return val.Len() == 0
case reflect.Struct:
return val.NumField() == 0
}
return false
}