-
Notifications
You must be signed in to change notification settings - Fork 2
/
incr_decr.go
146 lines (145 loc) · 4.15 KB
/
incr_decr.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
package sq
// 递增存在并发问题,现在不满意目前设计的接口,等以后在想怎么设计 2021年02月02日10:32:15 @nimoc。
// // 递减可能存在并发问题,所以只在事务中处理
// func (tx *T) DecrementIntModel(ctx context.Context, ptr Model, props IncrementInt, checkSQL ...string) (affected bool, err error) {
// field := props.Column.wrapField()
// result, err := coreUpdateModel(ctx, tx.Core, ptr, []Data{
// {
// // SET age = age - ?
// Raw: Raw{
// Query: field + " = " + field + " - ?",
// Values: []interface{}{props.Value},
// },
// OnUpdated: func() error {
// return props.OnUpdated(props.Value)
// },
// },
// }, []Condition{
// ConditionRaw(
// // WHERE age >= stock
// field + " >= " + props.AfterIncrementLessThanOrEqual.wrapField(),
// []interface{}{props.Value},
// ),
// })
// if err != nil {
// return
// }
// rowsAffected, err := result.RowsAffected() ; if err != nil {
// return
// }
// affected = rowsAffected !=0
// return
// }
// type DecrementFloat struct {
// Column Column
// Value float64
// AfterDecrementGreaterThanOrEqual Column
// OnUpdated func(value float64) error
// }
// // 递减可能存在并发问题,所以只在事务中处理
// func (tx *T) DecrementFloatModel(ctx context.Context, ptr Model, props IncrementFloat, checkSQL ...string) (affected bool, err error) {
// field := props.Column.wrapField()
// result, err := coreUpdateModel(ctx, tx.Core, ptr, []Data{
// {
// // SET age = age - ?
// Raw: Raw{
// Query: field + " = " + field + " - ?",
// Values: []interface{}{props.Value},
// },
// OnUpdated: func() error {
// return props.OnUpdated(props.Value)
// },
// },
// }, []Condition{
// ConditionRaw(
// // WHERE age >= stock
// field + " >= " + props.AfterIncrementLessThanOrEqual.wrapField(),
// []interface{}{props.Value},
// ),
// })
// if err != nil {
// return
// }
// rowsAffected, err := result.RowsAffected() ; if err != nil {
// return
// }
// affected = rowsAffected !=0
// return
// }
// type DecrementInt struct {
// Column Column
// Value uint
// AfterDecrementGreaterThanOrEqual Column
// OnUpdated func(value uint) error
// }
// type IncrementInt struct {
// Column Column
// Value uint
// AfterIncrementLessThanOrEqual Column
// OnUpdated func(value uint) error
// }
// // 递增可能存在并发问题,所以只在事务中处理
// func (tx *T) IncrementIntModel(ctx context.Context, ptr Model, props IncrementInt) (affected bool, err error) {
// field := props.Column.wrapField()
// result, err := db.UpdateModel(ctx, ptr, []Data{
// {
// // SET age = age + ?
// Raw: Raw{
// Query: field + " = " + field + " + ?",
// Values: []interface{}{props.Value},
// },
// OnUpdated: func() error {
// return props.OnUpdated(props.Value)
// },
// },
// }, []Condition{
// ConditionRaw(
// // WHERE age + ? <= stock
// field + " + ? <= " + props.AfterIncrementLessThanOrEqual.wrapField(),
// []interface{}{props.Value},
// ),
// })
// if err != nil {
// return
// }
// rowsAffected, err := result.RowsAffected() ; if err != nil {
// return
// }
// affected = rowsAffected !=0
// return
// }
// type IncrementFloat struct {
// Column Column
// Value float64
// AfterIncrementLessThanOrEqual Column
// OnUpdated func(value float64) error
// }
// func (tx *T) IncrementFloatModel(ctx context.Context, ptr Model, props IncrementFloat) (affected bool, err error) {
// field := props.Column.wrapField()
// result, err := tx.UpdateModel(ctx, ptr, []Data{
// {
// // SET age = age + ?
// Raw: Raw{
// Query: field + " = " + field + " + ?",
// Values: []interface{}{props.Value},
// },
// OnUpdated: func() error {
// return props.OnUpdated(props.Value)
// },
// },
// }, []Condition{
// ConditionRaw(
// // WHERE age + ? <= stock
// field + " + ? <= " + props.AfterIncrementLessThanOrEqual.wrapField(),
// []interface{}{props.Value},
// ),
// })
// if err != nil {
// return
// }
// rowsAffected, err := result.RowsAffected() ; if err != nil {
// return
// }
// affected = rowsAffected !=0
// return
// }