-
Notifications
You must be signed in to change notification settings - Fork 2
/
adapter.go
249 lines (211 loc) · 6.49 KB
/
adapter.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
package spellsql
import (
"context"
"database/sql"
"fmt"
)
const (
PriFlag = "PRI" // 主键标识
NotNullFlag = "NO" // 非空标识
)
var (
_ TableMetaer = &CommonTable{}
_ TableMetaer = &MysqlTable{}
_ TableMetaer = &PgTable{}
)
// TableColInfo 表列详情
type TableColInfo struct {
Index int // 字段在表的位置
Field string // 字段名(必须)
Type string // 数据库类型
Null string // 是否为 NULL(建议)
Key string // 索引名(建议)
Default sql.NullString // 默认值
Extra string // 预留字段
}
// IsPri 是否为主键
func (t *TableColInfo) IsPri() bool {
return t.Key == PriFlag
}
// NotNull 数据库字段非空约束, NO 不能为 NULL, YES 能为 NULL
func (t *TableColInfo) NotNull() bool {
return t.Null == NotNullFlag
}
type SortByTableColInfo []*TableColInfo
func (a SortByTableColInfo) Len() int { return len(a) }
func (a SortByTableColInfo) Swap(i, j int) { a[i], a[j] = a[j], a[i] }
func (a SortByTableColInfo) Less(i, j int) bool { return a[i].Index < a[j].Index }
// Tmer 设置不同数据库表初始化表方式, 调用的时候应该首先调用
// 说明: 此方法为局部方法, 如果要全局设置可以 GlobalTmer
// 如: NewTable(db).Tmer(Pg("man")).xxx
func (t *Table) Tmer(obj TableMetaer) *Table {
if obj != nil { // 出现了修改, 打印下 log
var old TableMetaer
if t.tmer != nil {
old = t.tmer
}
if old != nil && old.GetAdapterName() != obj.GetAdapterName() {
sLog.Warning(t.ctx, fmt.Sprintf("Tmer old %q to new %q", old.GetAdapterName(), obj.GetAdapterName()))
}
t.tmer = obj
}
return t
}
// 以下为适配多个不同类型的 db
// CommonTable 基类
type CommonTable struct {
}
func (c *CommonTable) GetValueStrSymbol() byte {
return '"'
}
func (c *CommonTable) GetValueEscapeMap() map[byte][]byte {
return GetValueEscapeMap()
}
func (c *CommonTable) GetParcelFieldSymbol() byte {
return '`'
}
func (c *CommonTable) GetAdapterName() string {
c.noImplement("GetAdapterName")
return ""
}
func (c *CommonTable) SetTableName(tableName string) {
c.noImplement("SetTableName")
}
func (c *CommonTable) SetCtx(ctx context.Context) {
c.noImplement("SetCtx")
}
func (c *CommonTable) GetField2ColInfoMap(db DBer, printLog bool) (map[string]*TableColInfo, error) {
c.noImplement("GetField2ColInfoMap")
return nil, nil
}
func (c *CommonTable) noImplement(name string) {
sLog.Error(context.Background(), name, "no implement")
}
// *******************************************************************************
// * mysql *
// *******************************************************************************
type MysqlTable struct {
CommonTable
ctx context.Context
initArgs []string
}
// Mysql
func Mysql() *MysqlTable {
return &MysqlTable{}
}
func (m *MysqlTable) GetAdapterName() string {
return "mysql"
}
func (m *MysqlTable) SetTableName(name string) {
m.initArgs = []string{name}
}
func (m *MysqlTable) SetCtx(ctx context.Context) {
m.ctx = ctx
}
func (m *MysqlTable) GetField2ColInfoMap(db DBer, printLog bool) (map[string]*TableColInfo, error) {
if len(m.initArgs) != 1 {
return nil, fmt.Errorf(getField2ColInfoMapErr, m.GetAdapterName())
}
sqlStr := NewCacheSql("SHOW COLUMNS FROM ?v", m.initArgs[0]).SetCtx(m.ctx).SetPrintLog(printLog).GetSqlStr()
rows, err := db.QueryContext(m.ctx, sqlStr)
if err != nil {
return nil, fmt.Errorf("mysql query is failed, err: %v, sqlStr: %v", err, sqlStr)
}
defer rows.Close()
cacheCol2InfoMap := make(map[string]*TableColInfo)
var index int
for rows.Next() {
var info TableColInfo
err = rows.Scan(&info.Field, &info.Type, &info.Null, &info.Key, &info.Default, &info.Extra)
if err != nil {
return nil, fmt.Errorf("mysql scan is failed, err: %v", err)
}
info.Index = index
cacheCol2InfoMap[info.Field] = &info
index++
}
return cacheCol2InfoMap, nil
}
// *******************************************************************************
// * pg *
// *******************************************************************************
type PgTable struct {
CommonTable
ctx context.Context
initArgs []string
}
// Pg, 默认模式: public
// initArgs 允许自定义两个参数
// initArgs[0] 为 schema
// initArgs[1] 为 table name (此参数可以忽略, 因为 orm 内部会处理该值)
func Pg(initArgs ...string) *PgTable {
obj := &PgTable{initArgs: make([]string, 2)}
l := len(initArgs)
switch l {
case 1:
obj.initArgs[0] = initArgs[0]
case 2:
obj.initArgs[0] = initArgs[0]
obj.initArgs[1] = initArgs[1]
}
if l == 0 {
obj.initArgs[0] = "public"
}
return obj
}
func (p *PgTable) GetAdapterName() string {
return "pg"
}
func (p *PgTable) SetTableName(name string) {
p.initArgs[1] = name
}
func (p *PgTable) SetCtx(ctx context.Context) {
p.ctx = ctx
}
func (p *PgTable) GetParcelFieldSymbol() byte {
return '"'
}
func (p *PgTable) GetValueEscapeMap() map[byte][]byte {
escapeMap := GetValueEscapeMap()
// 将 "'" 进行转义
escapeMap['\''] = []byte{'\'', '\''}
return escapeMap
}
func (p *PgTable) GetValueStrSymbol() byte {
return '\''
}
func (p *PgTable) GetField2ColInfoMap(db DBer, printLog bool) (map[string]*TableColInfo, error) {
if len(p.initArgs) != 2 {
return nil, fmt.Errorf(getField2ColInfoMapErr, p.GetAdapterName())
}
sqlStr := NewCacheSql(
"SELECT c.column_name,c.data_type,c.is_nullable,tc.constraint_type,c.column_default FROM information_schema.columns AS c "+
"LEFT JOIN information_schema.constraint_column_usage AS ccu USING (column_name,table_name) "+
"LEFT JOIN information_schema.table_constraints tc ON tc.constraint_name=ccu.constraint_name "+
"WHERE c.table_schema='?v' AND c.table_name='?v'", p.initArgs[0], p.initArgs[1]).
SetCtx(p.ctx).SetPrintLog(printLog).GetSqlStr()
rows, err := db.QueryContext(p.ctx, sqlStr)
if err != nil {
return nil, fmt.Errorf("mysql query is failed, err: %v, sqlStr: %v", err, sqlStr)
}
defer rows.Close()
cacheCol2InfoMap := make(map[string]*TableColInfo)
var index int
for rows.Next() {
var (
info TableColInfo
key sql.NullString
)
err = rows.Scan(&info.Field, &info.Type, &info.Null, &key, &info.Default)
if err != nil {
return nil, fmt.Errorf("mysql scan is failed, err: %v", err)
}
if key.String == "PRIMARY KEY" {
info.Key = PriFlag
}
info.Index = index
cacheCol2InfoMap[info.Field] = &info
index++
}
return cacheCol2InfoMap, nil
}