forked from ecodeclub/eorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
insert.go
151 lines (139 loc) · 3.62 KB
/
insert.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
// Copyright 2021 ecodeclub
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package eorm
import (
"context"
"errors"
"github.com/ecodeclub/eorm/internal/errs"
"github.com/ecodeclub/eorm/internal/model"
"github.com/valyala/bytebufferpool"
)
var _ QueryBuilder = &Inserter[any]{}
// Inserter is used to construct an insert query
// More details check Build function
type Inserter[T any] struct {
inserterBuilder
db Session
values []*T
}
// NewInserter 开始构建一个 INSERT 查询
func NewInserter[T any](sess Session) *Inserter[T] {
return &Inserter[T]{
inserterBuilder: inserterBuilder{
builder: builder{
core: sess.getCore(),
buffer: bytebufferpool.Get(),
},
},
db: sess,
}
}
func (i *Inserter[T]) SkipPK() *Inserter[T] {
i.ignorePK = true
return i
}
// Build function build the query
// notes:
// - All the values from function Values should have the same type.
// - It will insert all columns including auto-increment primary key
func (i *Inserter[T]) Build() (Query, error) {
defer bytebufferpool.Put(i.buffer)
var err error
if len(i.values) == 0 {
return EmptyQuery, errors.New("插入0行")
}
i.writeString("INSERT INTO ")
i.meta, err = i.metaRegistry.Get(i.values[0])
if err != nil {
return EmptyQuery, err
}
i.quote(i.meta.TableName)
i.writeString("(")
fields, err := i.buildColumns()
if err != nil {
return EmptyQuery, err
}
i.writeString(")")
i.writeString(" VALUES")
for index, val := range i.values {
if index > 0 {
i.comma()
}
i.writeString("(")
refVal := i.valCreator.NewPrimitiveValue(val, i.meta)
for j, v := range fields {
fdVal, err := refVal.Field(v.FieldName)
if err != nil {
return EmptyQuery, err
}
i.parameter(fdVal.Interface())
if j != len(fields)-1 {
i.comma()
}
}
i.writeString(")")
}
i.end()
return Query{SQL: i.buffer.String(), Args: i.args}, nil
}
// Columns specifies the columns that need to be inserted
// if cs is empty, all columns will be inserted
// cs must be the same with the field name in model
func (i *Inserter[T]) Columns(cs ...string) *Inserter[T] {
i.columns = cs
return i
}
// Values specify the rows
// all the elements must be the same type
// and users are supposed to passing at least one element
func (i *Inserter[T]) Values(values ...*T) *Inserter[T] {
i.values = values
return i
}
// Exec 发起查询
func (i *Inserter[T]) Exec(ctx context.Context) Result {
query, err := i.Build()
if err != nil {
return Result{err: err}
}
return newQuerier[T](i.db, query, i.meta, INSERT).Exec(ctx)
}
func (i *Inserter[T]) buildColumns() ([]*model.ColumnMeta, error) {
cs := make([]*model.ColumnMeta, 0, len(i.columns))
if len(i.columns) != 0 {
for index, c := range i.columns {
v, isOk := i.meta.FieldMap[c]
if !isOk {
return cs, errs.NewInvalidFieldError(c)
}
i.quote(v.ColumnName)
if index != len(i.columns)-1 {
i.comma()
}
cs = append(cs, v)
}
} else {
for index, val := range i.meta.Columns {
if i.ignorePK && val.IsPrimaryKey {
continue
}
i.quote(val.ColumnName)
if index != len(i.meta.Columns)-1 {
i.comma()
}
cs = append(cs, val)
}
}
return cs, nil
}