-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathutils.go
176 lines (131 loc) · 4.2 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
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
// Copyright 2019 Aporeto Inc.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package elemental
import (
"reflect"
"time"
)
// RemoveZeroValues reset all pointer fields that are pointing to a zero value to nil
func RemoveZeroValues(obj any) {
vo := reflect.ValueOf(obj)
vv := reflect.Indirect(vo)
for _, field := range extractFieldNames(obj) {
v := vv.FieldByName(field)
if v.Kind() != reflect.Ptr {
continue
}
if v.IsNil() {
continue
}
uv := reflect.Indirect(v)
switch uv.Kind() {
case reflect.Map, reflect.Slice, reflect.Array:
if uv.Len() == 0 {
v.Set(reflect.Zero(v.Type()))
break
}
fallthrough
default:
if uv.IsZero() {
v.Set(reflect.Zero(v.Type()))
}
}
}
}
// extractFieldNames returns all the field Name of the given
// object using reflection.
func extractFieldNames(obj any) []string {
val := reflect.Indirect(reflect.ValueOf(obj))
c := val.NumField()
fields := make([]string, c)
for i := 0; i < c; i++ {
fields[i] = val.Type().Field(i).Name
}
return fields
}
var reflectedTimeType = reflect.ValueOf(time.Time{}).Type()
// areFieldValuesEqual checks if the value of the given field name are
// equal in both given objects using reflection.
func areFieldValuesEqual(field string, o1, o2 any) bool {
field1 := reflect.Indirect(reflect.ValueOf(o1)).FieldByName(field)
field2 := reflect.Indirect(reflect.ValueOf(o2)).FieldByName(field)
if isFieldValueZero(field, o1) && isFieldValueZero(field, o2) {
return true
}
// This is to handle time structure whatever their timezone
if field1.Type() == reflectedTimeType {
return field1.Interface().(time.Time).Unix() == field2.Interface().(time.Time).Unix()
}
if field1.Kind() == reflect.Slice || field1.Kind() == reflect.Array {
if field1.Len() != field2.Len() {
return false
}
// Same stuff we need to check all time element.
if field1.Type().Elem() == reflectedTimeType {
for i := 0; i < field1.Len(); i++ {
if field1.Index(i).Interface().(time.Time).Unix() != field2.Index(i).Interface().(time.Time).Unix() {
return false
}
}
return true
}
return reflect.DeepEqual(field1.Interface(), field2.Interface())
}
if field1.Kind() == reflect.Map {
if field1.Len() != field2.Len() {
return false
}
return reflect.DeepEqual(field1.Interface(), field2.Interface())
}
return field1.Interface() == field2.Interface()
}
// isFieldValueZero check if the value of the given field is set to its zero value.
func isFieldValueZero(field string, o any) bool {
return IsZero(reflect.Indirect(reflect.ValueOf(o)).FieldByName(field).Interface())
}
// IsZero returns true if the given value is set to its Zero value.
func IsZero(o any) bool {
if o == nil {
return true
}
v := reflect.ValueOf(o)
if v.IsZero() {
return true
}
v = reflect.Indirect(v)
switch v.Kind() {
case reflect.Slice, reflect.Map:
return v.IsNil() || v.Len() == 0
default:
return v.Interface() == reflect.Zero(reflect.TypeOf(v.Interface())).Interface()
}
}
func areFieldsValueEqualValue(f string, obj any, value any) bool {
field := reflect.Indirect(reflect.ValueOf(obj)).FieldByName(f)
if value == nil {
return isFieldValueZero(f, obj)
}
v2 := reflect.ValueOf(value)
// This is to handle time structure whatever their timezone
if field.Type() == reflect.ValueOf(time.Now()).Type() {
return field.Interface().(time.Time).Unix() == v2.Interface().(time.Time).Unix()
}
if field.Kind() == reflect.Slice || field.Kind() == reflect.Array {
if field.Len() != v2.Len() {
return false
}
return reflect.DeepEqual(field.Interface(), v2.Interface())
}
if field.Kind() == reflect.Map {
return reflect.DeepEqual(field.Interface(), v2.Interface())
}
return field.Interface() == v2.Interface()
}