forked from go-gorm/postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharray_handler.go
261 lines (237 loc) · 7.17 KB
/
array_handler.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
261
package postgres
import (
"context"
"database/sql"
"database/sql/driver"
"fmt"
"reflect"
"strconv"
"strings"
"sync"
"gorm.io/gorm/schema"
)
type PostgresArrayHandler struct{}
type arrayScanner struct {
fieldType reflect.Type
value interface{}
}
func (s *arrayScanner) Scan(src interface{}) error {
if src == nil {
s.value = reflect.MakeSlice(s.fieldType.Elem(), 0, 0).Interface()
return nil
}
switch v := src.(type) {
case string:
// Remove the curly braces
str := strings.Trim(v, "{}")
// Handle empty array
if str == "" {
s.value = reflect.MakeSlice(s.fieldType.Elem(), 0, 0).Interface()
return nil
}
// Split the string into elements
elements := strings.Split(str, ",")
// Create a new slice with the correct type
slice := reflect.MakeSlice(s.fieldType.Elem(), len(elements), len(elements))
// Convert each element to the correct type
for i, elem := range elements {
elem = strings.Trim(elem, "\"") // Remove quotes if present
switch s.fieldType.Elem().Elem().Kind() {
case reflect.String:
slice.Index(i).SetString(elem)
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if val, err := strconv.ParseInt(elem, 10, 64); err == nil {
slice.Index(i).SetInt(val)
}
case reflect.Uint, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if val, err := strconv.ParseUint(elem, 10, 64); err == nil {
slice.Index(i).SetUint(val)
}
case reflect.Float32:
if val, err := strconv.ParseFloat(elem, 32); err == nil {
slice.Index(i).SetFloat(float64(val))
}
case reflect.Float64:
if val, err := strconv.ParseFloat(elem, 64); err == nil {
slice.Index(i).SetFloat(val)
}
case reflect.Bool:
if val, err := strconv.ParseBool(elem); err == nil {
slice.Index(i).SetBool(val)
}
}
}
s.value = slice.Interface()
return nil
}
return fmt.Errorf("unsupported Scan, storing driver.Value type %T into type %s", src, s.fieldType)
}
func (s *arrayScanner) Value() (driver.Value, error) {
if s.value == nil {
return nil, nil
}
return s.value, nil
}
func (h *PostgresArrayHandler) HandleArray(field *schema.Field) error {
oldValueOf := field.ValueOf
field.ValueOf = func(ctx context.Context, v reflect.Value) (interface{}, bool) {
value, zero := oldValueOf(ctx, v)
if zero {
return value, zero
}
return h.convertArrayToPostgres(value)
}
// Mark the field as implementing Scanner interface
field.FieldType = reflect.PtrTo(field.FieldType)
oldSet := field.Set
field.Set = func(ctx context.Context, value reflect.Value, v interface{}) error {
return h.handleArraySet(field, ctx, value, v, oldSet)
}
// Add Scanner implementation
if _, ok := reflect.New(field.FieldType).Interface().(sql.Scanner); !ok {
field.NewValuePool = &sync.Pool{
New: func() interface{} {
return &arrayScanner{
fieldType: field.FieldType,
}
},
}
}
return nil
}
func (h *PostgresArrayHandler) convertArrayToPostgres(value interface{}) (interface{}, bool) {
switch slice := value.(type) {
case []string:
return "{" + strings.Join(slice, ",") + "}", false
case []int:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatInt(int64(v), 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []int8:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatInt(int64(v), 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []int16:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatInt(int64(v), 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []int32:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatInt(int64(v), 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []int64:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatInt(v, 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []uint:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatUint(uint64(v), 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []uint16:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatUint(uint64(v), 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []uint32:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatUint(uint64(v), 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []uint64:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatUint(v, 10)
}
return "{" + strings.Join(strs, ",") + "}", false
case []float32:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatFloat(float64(v), 'f', -1, 32)
}
return "{" + strings.Join(strs, ",") + "}", false
case []float64:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatFloat(v, 'f', -1, 64)
}
return "{" + strings.Join(strs, ",") + "}", false
case []bool:
strs := make([]string, len(slice))
for i, v := range slice {
strs[i] = strconv.FormatBool(v)
}
return "{" + strings.Join(strs, ",") + "}", false
}
return value, false
}
func (h *PostgresArrayHandler) handleArraySet(field *schema.Field, ctx context.Context, value reflect.Value, v interface{}, oldSet func(context.Context, reflect.Value, interface{}) error) error {
if v == nil {
field.ReflectValueOf(ctx, value).Set(reflect.MakeSlice(field.FieldType.Elem(), 0, 0))
return nil
}
switch data := v.(type) {
case *arrayScanner:
if data.value != nil {
field.ReflectValueOf(ctx, value).Set(reflect.ValueOf(data.value))
}
return nil
case string:
// Remove the curly braces
str := strings.Trim(data, "{}")
// Handle empty array
if str == "" {
field.ReflectValueOf(ctx, value).Set(reflect.MakeSlice(field.FieldType.Elem(), 0, 0))
return nil
}
// Split the string into elements
elements := strings.Split(str, ",")
// Create a new slice with the correct type
slice := reflect.MakeSlice(field.FieldType.Elem(), len(elements), len(elements))
// Convert each element to the correct type
for i, elem := range elements {
elem = strings.Trim(elem, "\"") // Remove quotes if present
switch field.FieldType.Elem().Elem().Kind() {
case reflect.String:
slice.Index(i).SetString(elem)
case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
if val, err := strconv.ParseInt(elem, 10, 64); err == nil {
slice.Index(i).SetInt(val)
}
case reflect.Uint, reflect.Uint16, reflect.Uint32, reflect.Uint64:
if val, err := strconv.ParseUint(elem, 10, 64); err == nil {
slice.Index(i).SetUint(val)
}
case reflect.Float32:
if val, err := strconv.ParseFloat(elem, 32); err == nil {
slice.Index(i).SetFloat(val)
}
case reflect.Float64:
if val, err := strconv.ParseFloat(elem, 64); err == nil {
slice.Index(i).SetFloat(val)
}
case reflect.Bool:
if val, err := strconv.ParseBool(elem); err == nil {
slice.Index(i).SetBool(val)
}
}
}
field.ReflectValueOf(ctx, value).Set(slice)
return nil
default:
return oldSet(ctx, value, v)
}
}