forked from upper/db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom_types.go
214 lines (184 loc) · 5.56 KB
/
custom_types.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
// Copyright (c) 2012-present The upper.io/db authors. All rights reserved.
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package mysql
import (
"database/sql/driver"
"encoding/json"
"errors"
"reflect"
"upper.io/db.v3/lib/sqlbuilder"
)
// JSON represents a MySQL's JSON value:
// https://www.mysql.org/docs/9.6/static/datatype-json.html. JSON
// satisfies sqlbuilder.ScannerValuer.
type JSON struct {
V interface{}
}
// MarshalJSON encodes the wrapper value as JSON.
func (j JSON) MarshalJSON() ([]byte, error) {
return json.Marshal(j.V)
}
// UnmarshalJSON decodes the given JSON into the wrapped value.
func (j *JSON) UnmarshalJSON(b []byte) error {
var v interface{}
if err := json.Unmarshal(b, &v); err != nil {
return err
}
j.V = v
return nil
}
// Scan satisfies the sql.Scanner interface.
func (j *JSON) Scan(src interface{}) error {
if src == nil {
j.V = nil
return nil
}
b, ok := src.([]byte)
if !ok {
return errors.New("Scan source was not []bytes")
}
if err := json.Unmarshal(b, &j.V); err != nil {
return err
}
return nil
}
// Value satisfies the driver.Valuer interface.
func (j JSON) Value() (driver.Value, error) {
// See https://github.com/lib/pq/issues/528#issuecomment-257197239 on why are
// we returning string instead of []byte.
if j.V == nil {
return nil, nil
}
if v, ok := j.V.(json.RawMessage); ok {
return string(v), nil
}
b, err := json.Marshal(j.V)
if err != nil {
return nil, err
}
return string(b), nil
}
// JSONMap represents a map of interfaces with string keys
// (`map[string]interface{}`) that is compatible with MySQL's JSON type.
// JSONMap satisfies sqlbuilder.ScannerValuer.
type JSONMap map[string]interface{}
// Value satisfies the driver.Valuer interface.
func (m JSONMap) Value() (driver.Value, error) {
return JSONValue(m)
}
// Scan satisfies the sql.Scanner interface.
func (m *JSONMap) Scan(src interface{}) error {
*m = map[string]interface{}(nil)
return ScanJSON(m, src)
}
// JSONArray represents an array of any type (`[]interface{}`) that is
// compatible with MySQL's JSON type. JSONArray satisfies
// sqlbuilder.ScannerValuer.
type JSONArray []interface{}
// Value satisfies the driver.Valuer interface.
func (a JSONArray) Value() (driver.Value, error) {
return JSONValue(a)
}
// Scan satisfies the sql.Scanner interface.
func (a *JSONArray) Scan(src interface{}) error {
return ScanJSON(a, src)
}
// JSONValue takes an interface and provides a driver.Value that can be
// stored as a JSON column.
func JSONValue(i interface{}) (driver.Value, error) {
v := JSON{i}
return v.Value()
}
// ScanJSON decodes a JSON byte stream into the passed dst value.
func ScanJSON(dst interface{}, src interface{}) error {
v := JSON{dst}
return v.Scan(src)
}
// EncodeJSON is deprecated and going to be removed. Use ScanJSON instead.
func EncodeJSON(i interface{}) (driver.Value, error) {
return JSONValue(i)
}
// DecodeJSON is deprecated and going to be removed. Use JSONValue instead.
func DecodeJSON(dst interface{}, src interface{}) error {
return ScanJSON(dst, src)
}
// JSONConverter provides a helper method WrapValue that satisfies
// sqlbuilder.ValueWrapper, can be used to encode Go structs into JSON
// MySQL types and vice versa.
//
// Example:
//
// type MyCustomStruct struct {
// ID int64 `db:"id" json:"id"`
// Name string `db:"name" json:"name"`
// ...
// mysql.JSONConverter
// }
type JSONConverter struct {
}
// WrapValue satisfies sqlbuilder.ValueWrapper
func (obj *JSONConverter) WrapValue(src interface{}) interface{} {
return &JSON{src}
}
func autoWrap(elem reflect.Value, v interface{}) interface{} {
kind := elem.Kind()
if kind == reflect.Invalid {
return v
}
if elem.Type().Implements(sqlbuilder.ScannerType) {
return v
}
if elem.Type().Implements(sqlbuilder.ValuerType) {
return v
}
if elem.Type().Implements(sqlbuilder.ValueWrapperType) {
if elem.Type().Kind() == reflect.Ptr {
w := reflect.ValueOf(v)
if w.Kind() == reflect.Ptr {
z := reflect.Zero(w.Elem().Type())
w.Elem().Set(z)
return &JSON{v}
}
}
vw := elem.Interface().(sqlbuilder.ValueWrapper)
return vw.WrapValue(elem.Interface())
}
switch kind {
case reflect.Ptr:
return autoWrap(elem.Elem(), v)
case reflect.Slice:
return &JSON{v}
case reflect.Map:
if reflect.TypeOf(v).Kind() == reflect.Ptr {
w := reflect.ValueOf(v)
z := reflect.New(w.Elem().Type())
w.Elem().Set(z.Elem())
}
return &JSON{v}
}
return v
}
// Type checks.
var (
_ sqlbuilder.ValueWrapper = &JSONConverter{}
_ sqlbuilder.ScannerValuer = &JSONMap{}
_ sqlbuilder.ScannerValuer = &JSONArray{}
)