-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcolumntype.go
262 lines (218 loc) · 6.98 KB
/
columntype.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
262
package godatabend
import (
"database/sql/driver"
"fmt"
"reflect"
"strconv"
"time"
)
type ColumnType interface {
Desc() *TypeDesc
DatabaseTypeName() string
Nullable() (bool, bool)
ScanType() reflect.Type
Parse(s string) (driver.Value, error)
Length() (int64, bool)
PrecisionScale() (int64, int64, bool)
}
type columnTypeDefault struct{}
func (columnTypeDefault) Length() (int64, bool) {
return 0, false
}
func (columnTypeDefault) PrecisionScale() (int64, int64, bool) {
return 0, 0, false
}
type unknownColumnType struct {
columnTypeDefault
dbType string
desc *TypeDesc
}
func (c unknownColumnType) ScanType() reflect.Type {
return reflectTypeString
}
func (c unknownColumnType) Nullable() (bool, bool) {
return false, false
}
func (c unknownColumnType) DatabaseTypeName() string {
return c.dbType
}
func (c unknownColumnType) Parse(s string) (driver.Value, error) {
return s, nil
}
func (c unknownColumnType) Desc() *TypeDesc {
return c.desc
}
type isNullable bool
func (b isNullable) Nullable() (bool, bool) {
return bool(b), true
}
func (b isNullable) wrapName(s string) string {
if bool(b) {
return s + " NULL"
}
return s
}
func (b isNullable) checkNull(s string) bool {
return bool(b) && s == "NULL"
}
type simpleColumnType struct {
dbType string
scanType reflect.Type
nullable bool
parseNull bool
}
func (*simpleColumnType) PrecisionScale() (int64, int64, bool) {
return 0, 0, false
}
func (c *simpleColumnType) DatabaseTypeName() string {
return c.dbType
}
func (c *simpleColumnType) Nullable() (bool, bool) {
return c.nullable, true
}
func (c *simpleColumnType) Desc() *TypeDesc {
return &TypeDesc{Name: c.dbType, Nullable: c.nullable}
}
func (*simpleColumnType) Length() (int64, bool) {
return 0, false
}
func (c *simpleColumnType) Parse(s string) (driver.Value, error) {
if c.nullable && c.parseNull && s == "NULL" {
return nil, nil
}
return s, nil
}
func (c *simpleColumnType) ScanType() reflect.Type {
return c.scanType
}
type timestampColumnType struct {
tz *time.Location
columnTypeDefault
isNullable
}
func (c timestampColumnType) Parse(s string) (driver.Value, error) {
if c.checkNull(s) {
return nil, nil
}
return time.ParseInLocation("2006-01-02 15:04:05.999999", s, c.tz)
}
func (c timestampColumnType) ScanType() reflect.Type {
return reflectTypeTime
}
func (c timestampColumnType) DatabaseTypeName() string {
return c.wrapName("Timestamp")
}
func (c timestampColumnType) Desc() *TypeDesc {
return &TypeDesc{Name: "Timestamp", Nullable: bool(c.isNullable)}
}
type dateColumnType struct {
tz *time.Location
columnTypeDefault
isNullable
}
func (c dateColumnType) Parse(s string) (driver.Value, error) {
if c.checkNull(s) {
return nil, nil
}
return time.ParseInLocation("2006-01-02", s, c.tz)
}
func (c dateColumnType) ScanType() reflect.Type {
return reflectTypeTime
}
func (c dateColumnType) DatabaseTypeName() string {
return c.wrapName("Date")
}
func (c dateColumnType) Desc() *TypeDesc {
return &TypeDesc{Name: "Date", Nullable: bool(c.isNullable)}
}
type decimalColumnType struct {
precision int64
scale int64
columnTypeDefault
isNullable
}
func (c *decimalColumnType) DatabaseTypeName() string {
return c.wrapName(fmt.Sprintf("Decimal(%d, %d)", c.precision, c.scale))
}
func (c *decimalColumnType) Desc() *TypeDesc {
return &TypeDesc{Name: "Decimal", Nullable: bool(c.isNullable), Args: []*TypeDesc{{Name: strconv.Itoa(int(c.precision))}, {Name: strconv.Itoa(int(c.scale))}}}
}
func (*decimalColumnType) Parse(s string) (driver.Value, error) {
return s, nil
}
func (c *decimalColumnType) PrecisionScale() (int64, int64, bool) {
return c.precision, c.scale, true
}
func (*decimalColumnType) ScanType() reflect.Type {
return reflectTypeString
}
func NewColumnType(dbType string, opts *ColumnTypeOptions) (ColumnType, error) {
if opts == nil {
opts = defaultColumnTypeOptions()
}
desc, err := ParseTypeDesc(dbType)
if err != nil {
return nil, err
}
desc = desc.Normalize()
nullable := isNullable(desc.Nullable)
parseNull := opts.formatNullAsStr
switch desc.Name {
case "String":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeString, nullable: desc.Nullable, parseNull: false}, nil
case "Boolean":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeBool, nullable: desc.Nullable, parseNull: parseNull}, nil
case "Int8":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeInt8, nullable: desc.Nullable, parseNull: parseNull}, nil
case "Int16":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeInt16, nullable: desc.Nullable, parseNull: parseNull}, nil
case "Int32":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeInt32, nullable: desc.Nullable, parseNull: parseNull}, nil
case "Int64":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeInt64, nullable: desc.Nullable, parseNull: parseNull}, nil
case "UInt8":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeUInt8, nullable: desc.Nullable, parseNull: parseNull}, nil
case "UInt16":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeUInt16, nullable: desc.Nullable, parseNull: parseNull}, nil
case "UInt32":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeUInt32, nullable: desc.Nullable, parseNull: parseNull}, nil
case "UInt64":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeUInt64, nullable: desc.Nullable, parseNull: parseNull}, nil
case "Float32":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeFloat32, nullable: desc.Nullable, parseNull: parseNull}, nil
case "Float64":
return &simpleColumnType{dbType: nullable.wrapName(desc.Name), scanType: reflectTypeFloat64, nullable: desc.Nullable, parseNull: parseNull}, nil
case "Timestamp":
return ×tampColumnType{isNullable: nullable, tz: opts.timezone}, nil
case "Date":
return &dateColumnType{isNullable: nullable, tz: opts.timezone}, nil
case "Decimal":
precision, err := strconv.ParseInt(desc.Args[0].Name, 10, 64)
if err != nil {
return nil, fmt.Errorf("malformed precision specified for Decimal: %v", err)
}
scale, err := strconv.ParseInt(desc.Args[1].Name, 10, 64)
if err != nil {
return nil, fmt.Errorf("malformed scale specified for Decimal: %v", err)
}
return &decimalColumnType{isNullable: nullable, precision: precision, scale: scale}, nil
default:
return unknownColumnType{dbType: dbType, desc: desc}, nil
}
}
type ColumnTypeOptions struct {
formatNullAsStr bool
timezone *time.Location
}
func defaultColumnTypeOptions() *ColumnTypeOptions {
return &ColumnTypeOptions{
formatNullAsStr: false,
timezone: time.UTC,
}
}
func (opt *ColumnTypeOptions) SetFormatNullAsStr(v bool) {
opt.formatNullAsStr = v
}
func (opt *ColumnTypeOptions) SetTimezone(v *time.Location) {
opt.timezone = v
}