-
Notifications
You must be signed in to change notification settings - Fork 171
Expand file tree
/
Copy pathutils.go
More file actions
170 lines (157 loc) · 4.67 KB
/
utils.go
File metadata and controls
170 lines (157 loc) · 4.67 KB
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
package mysql
import (
"database/sql"
"github.com/shopspring/decimal"
"reflect"
"time"
"github.com/go-sql-driver/mysql"
"github.com/juju/errors"
log "github.com/sirupsen/logrus"
"github.com/moiot/gravity/pkg/config"
"github.com/moiot/gravity/pkg/schema_store"
)
func BuildPkColumns(table *schema_store.Table, tableConfig *config.TableConfig) []schema_store.Column {
if tableConfig == nil || len(tableConfig.PkOverride) == 0 {
return table.PrimaryKeyColumns
}
ret := make([]schema_store.Column, len(tableConfig.PkOverride))
for i, c := range tableConfig.PkOverride {
col, ok := table.Column(c)
if !ok {
log.Fatalf("pk override column [%s] not found on source table.", c)
}
ret[i] = *col
}
return ret
}
func GenPrimaryKeys(pkColumns []schema_store.Column, rowData map[string]interface{}) (map[string]interface{}, error) {
pks := make(map[string]interface{})
for i := 0; i < len(pkColumns); i++ {
pkName := pkColumns[i].Name
pks[pkName] = rowData[pkName]
if pks[pkName] == nil {
return nil, errors.Errorf("primary key nil, pkName: %v, data: %v", pkName, rowData)
}
}
return pks, nil
}
//
// + scanTypeFloat32 = reflect.TypeOf(float32(0))
// + scanTypeFloat64 = reflect.TypeOf(float64(0))
// + scanTypeInt8 = reflect.TypeOf(int8(0))
// + scanTypeInt16 = reflect.TypeOf(int16(0))
// + scanTypeInt32 = reflect.TypeOf(int32(0))
// + scanTypeInt64 = reflect.TypeOf(int64(0))
// + scanTypeNullFloat = reflect.TypeOf(sql.NullFloat64{})
// + scanTypeNullInt = reflect.TypeOf(sql.NullInt64{})
// + scanTypeNullTime = reflect.TypeOf(NullTime{})
// + scanTypeUint8 = reflect.TypeOf(uint8(0))
// + scanTypeUint16 = reflect.TypeOf(uint16(0))
// + scanTypeUint32 = reflect.TypeOf(uint32(0))
// + scanTypeUint64 = reflect.TypeOf(uint64(0))
// + scanTypeRawBytes = reflect.TypeOf(sql.RawBytes{})
// + scanTypeUnknown = reflect.TypeOf(new(interface{}))
func SQLDataPtrs2Val(dataPtrs []interface{}, columnTypes []*sql.ColumnType) map[string]interface{} {
ret := make(map[string]interface{})
for i := range dataPtrs {
columnName := columnTypes[i].Name()
columnData := reflect.ValueOf(dataPtrs[i]).Elem().Interface()
switch v := columnData.(type) {
case int8, int16, int32, int64, uint8, uint16, uint32, uint64:
ret[columnName] = v
case float32, float64:
ret[columnName] = v
case sql.NullInt64:
if !v.Valid {
ret[columnName] = nil
} else {
ret[columnName] = v.Int64
}
case sql.NullBool:
if !v.Valid {
ret[columnName] = nil
} else {
ret[columnName] = v.Bool
}
case sql.NullFloat64:
if !v.Valid {
ret[columnName] = nil
} else {
ret[columnName] = v.Float64
}
case sql.NullString:
if !v.Valid {
ret[columnName] = nil
} else {
ret[columnName] = v.String
}
case sql.RawBytes:
if v == nil {
ret[columnName] = nil
} else {
b := make([]byte, len(v))
copy(b, v)
ret[columnName] = b
}
case mysql.NullTime:
if !v.Valid {
ret[columnName] = nil
} else {
ret[columnName] = v.Time
}
case decimal.NullDecimal:
if !v.Valid {
ret[columnName] = nil
} else {
ret[columnName] = v.Decimal
}
default:
log.Fatalf("failed to catch columnName: %v, type: %v", columnName, reflect.TypeOf(columnData))
}
}
return ret
}
func MySQLDataEquals(a interface{}, b interface{}) bool {
if reflect.TypeOf(a) == reflect.TypeOf(b) {
return reflect.DeepEqual(a, b)
}
normalizedA := NormalizeSQLType(a)
normalizedB := NormalizeSQLType(b)
if reflect.TypeOf(normalizedA) != reflect.TypeOf(normalizedB) {
log.Fatalf("MySQLDataEquals normalized type not match, a type: %v, b type: %v", reflect.TypeOf(a), reflect.TypeOf(b))
}
if reflect.TypeOf(normalizedA) == reflect.TypeOf(mysql.NullTime{}) {
t1 := normalizedA.(mysql.NullTime).Time
t2 := normalizedB.(mysql.NullTime).Time
return t1.Equal(t2)
}
return reflect.DeepEqual(normalizedA, normalizedB)
}
func NormalizeSQLType(a interface{}) interface{} {
switch v := a.(type) {
case string:
return sql.NullString{String: v, Valid: true}
case int8:
return sql.NullInt64{Int64: int64(v), Valid: true}
case int16:
return sql.NullInt64{Int64: int64(v), Valid: true}
case int32:
return sql.NullInt64{Int64: int64(v), Valid: true}
case int64:
return sql.NullInt64{Int64: int64(v), Valid: true}
case uint8:
return sql.NullInt64{Int64: int64(v), Valid: true}
case uint16:
return sql.NullInt64{Int64: int64(v), Valid: true}
case uint32:
return sql.NullInt64{Int64: int64(v), Valid: true}
case uint64:
return sql.NullInt64{Int64: int64(v), Valid: true}
case int:
return sql.NullInt64{Int64: int64(v), Valid: true}
case time.Time:
return mysql.NullTime{Time: v, Valid: true}
default:
return a
}
}