-
Notifications
You must be signed in to change notification settings - Fork 0
/
parser.go
254 lines (235 loc) · 5.61 KB
/
parser.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
package exql
import (
"database/sql"
"fmt"
"regexp"
"strings"
"github.com/iancoleman/strcase"
"golang.org/x/xerrors"
)
type parser struct{}
type Parser interface {
ParseTable(db *sql.DB, table string) (*Table, error)
}
func NewParser() Parser {
return &parser{}
}
type Table struct {
TableName string `json:"table_name"`
Columns []*Column `json:"columns"`
}
func (t *Table) Fields() []string {
var ret []string
for _, c := range t.Columns {
ret = append(ret, c.Field())
}
return ret
}
func (t *Table) HasNullField() bool {
for _, c := range t.Columns {
if c.Nullable {
return true
}
}
return false
}
func (t *Table) HasTimeField() bool {
for _, c := range t.Columns {
if c.GoFieldType == "time.Time" {
return true
}
}
return false
}
func (t *Table) HasJsonField() bool {
for _, c := range t.Columns {
if c.GoFieldType == "json.RawMessage" {
return true
}
}
return false
}
type Column struct {
FieldName string `json:"field_name"`
FieldType string `json:"field_type"`
FieldIndex int `json:"field_index"`
GoFieldType string `json:"go_field_type"`
Nullable bool `json:"nullable"`
DefaultValue sql.NullString `json:"default_value"`
Key sql.NullString `json:"key"`
Extra sql.NullString `json:"extra"`
}
func (c *Column) IsPrimary() bool {
return c.Key.String == "PRI"
}
func (c *Column) ParseExtra() []string {
comps := strings.Split(c.Extra.String, " ")
empty := regexp.MustCompile(`^\s*$`)
var ret []string
for i := 0; i < len(comps); i++ {
v := strings.Trim(comps[i], " ")
if empty.MatchString(v) {
continue
}
ret = append(ret, v)
}
return ret
}
func (c *Column) Field() string {
return c.field(c.GoFieldType)
}
func (c *Column) UpdateField() string {
return c.field("*" + c.GoFieldType)
}
func (c *Column) field(goFiledType string) string {
var tag []string
tag = append(tag, fmt.Sprintf("column:%s", c.FieldName))
tag = append(tag, fmt.Sprintf("type:%s", c.FieldType))
if c.IsPrimary() {
tag = append(tag, "primary")
}
if !c.Nullable {
tag = append(tag, "not null")
}
tag = append(tag, c.ParseExtra()...)
return fmt.Sprintf("%s %s `exql:\"%s\" json:\"%s\"`",
strcase.ToCamel(c.FieldName),
goFiledType,
strings.Join(tag, ";"),
strcase.ToSnake(c.FieldName),
)
}
func (p *parser) ParseTable(db *sql.DB, table string) (*Table, error) {
rows, err := db.Query(fmt.Sprintf("show columns from %s", table))
if err != nil {
return nil, err
}
defer rows.Close()
var cols []*Column
i := 0
for rows.Next() {
field := ""
_type := ""
_null := sql.NullString{}
key := sql.NullString{}
_default := sql.NullString{}
extra := sql.NullString{}
if err := rows.Scan(&field, &_type, &_null, &key, &_default, &extra); err != nil {
return nil, err
}
parsedType, err := ParseType(_type, _null.String == "YES")
if err != nil {
return nil, err
}
cols = append(cols, &Column{
FieldName: field,
FieldType: _type,
FieldIndex: i,
GoFieldType: parsedType,
Nullable: _null.String == "YES",
DefaultValue: _default,
Key: key,
Extra: extra,
})
i++
}
if err := rows.Err(); err != nil {
return nil, err
}
return &Table{
TableName: table,
Columns: cols,
}, nil
}
var (
intPat = regexp.MustCompile(`^(tiny|small|medium|big)?int(\(\d+?\))?( unsigned)?( zerofill)?$`)
floatPat = regexp.MustCompile(`^float$`)
doublePat = regexp.MustCompile(`^double$`)
charPat = regexp.MustCompile(`^(var)?char\(\d+?\)$`)
textPat = regexp.MustCompile(`^(tiny|medium|long)?text$`)
blobPat = regexp.MustCompile(`^(tiny|medium|long)?blob$`)
datePat = regexp.MustCompile(`^(date|datetime|datetime\(\d\)|timestamp|timestamp\(\d\))$`)
timePat = regexp.MustCompile(`^(time|time\(\d\))$`)
jsonPat = regexp.MustCompile(`^json$`)
)
const (
nullUint64Type = "null.Uint64"
nullInt64Type = "null.Int64"
uint64Type = "uint64"
int64Type = "int64"
nullFloat64Type = "null.Float64"
float64Type = "float64"
nullFloat32Type = "null.Float32"
float32Type = "float32"
nullTimeType = "null.Time"
timeType = "time.Time"
nullStrType = "null.String"
strType = "string"
nullBytesType = "null.Bytes"
bytesType = "[]byte"
nullJsonType = "null.JSON"
jsonType = "json.RawMessage"
)
func ParseType(t string, nullable bool) (string, error) {
if intPat.MatchString(t) {
m := intPat.FindStringSubmatch(t)
unsigned := strings.Contains(t, "unsigned")
is64 := false
if len(m) > 2 {
switch m[1] {
case "big":
is64 = true
default:
}
}
if nullable {
if unsigned && is64 {
return nullUint64Type, nil
} else {
return nullInt64Type, nil
}
} else {
if unsigned && is64 {
return uint64Type, nil
} else {
return int64Type, nil
}
}
} else if datePat.MatchString(t) {
if nullable {
return nullTimeType, nil
}
return timeType, nil
} else if timePat.MatchString(t) {
if nullable {
return nullStrType, nil
}
return strType, nil
} else if textPat.MatchString(t) || charPat.MatchString(t) {
if nullable {
return nullStrType, nil
}
return strType, nil
} else if floatPat.MatchString(t) {
if nullable {
return nullFloat32Type, nil
}
return float32Type, nil
} else if doublePat.MatchString(t) {
if nullable {
return nullFloat64Type, nil
}
return float64Type, nil
} else if blobPat.MatchString(t) {
if nullable {
return nullBytesType, nil
}
return bytesType, nil
} else if jsonPat.MatchString(t) {
if nullable {
return nullJsonType, nil
}
return jsonType, nil
}
return "", xerrors.Errorf("unknown type: %s", t)
}