-
Notifications
You must be signed in to change notification settings - Fork 0
/
updater.go
75 lines (70 loc) · 1.94 KB
/
updater.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
package sql
import (
"context"
"database/sql"
"database/sql/driver"
"fmt"
"reflect"
q "github.com/core-go/sql"
)
type Updater[T any] struct {
db *sql.DB
tableName string
BuildParam func(i int) string
Map func(T)
BoolSupport bool
VersionIndex int
schema *q.Schema
ToArray func(interface{}) interface {
driver.Valuer
sql.Scanner
}
}
func NewUpdater[T any](db *sql.DB, tableName string, options ...func(T)) *Updater[T] {
var mp func(T)
if len(options) >= 1 {
mp = options[0]
}
return NewSqlUpdater[T](db, tableName, mp, nil)
}
func NewUpdaterWithArray[T any](db *sql.DB, tableName string, toArray func(interface{}) interface {
driver.Valuer
sql.Scanner
}, options ...func(T)) *Updater[T] {
var mp func(T)
if len(options) >= 1 {
mp = options[0]
}
return NewSqlUpdater[T](db, tableName, mp, toArray)
}
func NewSqlUpdater[T any](db *sql.DB, tableName string, mp func(T), toArray func(interface{}) interface {
driver.Valuer
sql.Scanner
}, options ...func(i int) string) *Updater[T] {
var buildParam func(i int) string
if len(options) > 0 && options[0] != nil {
buildParam = options[0]
} else {
buildParam = q.GetBuild(db)
}
driver := q.GetDriver(db)
boolSupport := driver == q.DriverPostgres
var t T
modelType := reflect.TypeOf(t)
if modelType.Kind() == reflect.Ptr {
modelType = modelType.Elem()
}
schema := q.CreateSchema(modelType)
if len(schema.Keys) <= 0 {
panic(fmt.Sprintf("require primary key for table '%s'", tableName))
}
return &Updater[T]{db: db, tableName: tableName, VersionIndex: -1, BoolSupport: boolSupport, schema: schema, BuildParam: buildParam, Map: mp, ToArray: toArray}
}
func (w *Updater[T]) Write(ctx context.Context, model T) error {
if w.Map != nil {
w.Map(model)
}
query, values := q.BuildToUpdateWithVersion(w.tableName, model, w.VersionIndex, w.BuildParam, w.BoolSupport, w.ToArray, w.schema)
_, er2 := w.db.ExecContext(ctx, query, values...)
return er2
}