-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
mysql.go
276 lines (220 loc) · 6.38 KB
/
mysql.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
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
// Package mysql is the implementation of the mysql data store.
package mysql
import (
"context"
"database/sql"
"errors"
"fmt"
"time"
"github.com/italolelis/outboxer/lock"
"github.com/italolelis/outboxer"
)
const (
// DefaultEventStoreTable is the default table name.
DefaultEventStoreTable = "event_store"
)
var (
// ErrLocked is used when we can't acquire an explicit lock.
ErrLocked = errors.New("can't acquire lock")
// ErrNoDatabaseName is used when the database name is blank.
ErrNoDatabaseName = errors.New("no database name")
)
// MySQL is the implementation of the data store.
type MySQL struct {
conn *sql.Conn
DatabaseName string
EventStoreTable string
isLocked bool
}
// WithInstance creates a mysql data store with an existing db connection.
func WithInstance(ctx context.Context, db *sql.DB) (*MySQL, error) {
conn, err := db.Conn(ctx)
if err != nil {
return nil, fmt.Errorf("failed to connect to data storage: %w", err)
}
p := MySQL{conn: conn}
if err := conn.PingContext(ctx); err != nil {
return nil, fmt.Errorf("could not ping to MySQL database: %w", err)
}
var databaseName sql.NullString
if err := db.QueryRow(`SELECT DATABASE()`).Scan(&databaseName); err != nil {
return nil, err
}
if databaseName.String == "" {
return nil, ErrNoDatabaseName
}
p.DatabaseName = databaseName.String
if p.EventStoreTable == "" {
p.EventStoreTable = DefaultEventStoreTable
}
if err := p.ensureTable(ctx); err != nil {
return nil, err
}
return &p, nil
}
// Close closes the db connection.
func (p *MySQL) Close() error {
if err := p.conn.Close(); err != nil {
return fmt.Errorf("failed to close connection: %w", err)
}
return nil
}
// GetEvents retrieves all the relevant events.
func (p *MySQL) GetEvents(ctx context.Context, batchSize int32) ([]*outboxer.OutboxMessage, error) {
events := make([]*outboxer.OutboxMessage, 0, batchSize)
// nolint
rows, err := p.conn.QueryContext(ctx, fmt.Sprintf("SELECT * FROM %s WHERE dispatched = false LIMIT %d", p.EventStoreTable, batchSize))
if err != nil {
return events, fmt.Errorf("failed to get messages from store: %w", err)
}
for rows.Next() {
var e outboxer.OutboxMessage
err = rows.Scan(&e.ID, &e.Dispatched, &e.DispatchedAt, &e.Payload, &e.Options, &e.Headers)
if err != nil {
return events, fmt.Errorf("failed to scan message: %w", err)
}
events = append(events, &e)
}
return events, nil
}
// Add adds the message to the data store.
func (p *MySQL) Add(ctx context.Context, evt *outboxer.OutboxMessage) error {
// nolint
query := fmt.Sprintf(`INSERT INTO %s (payload, options, headers) VALUES (?, ?, ?)`, p.EventStoreTable)
if _, err := p.conn.ExecContext(ctx, query, evt.Payload, evt.Options, evt.Headers); err != nil {
return fmt.Errorf("failed to insert message into the data store: %w", err)
}
return nil
}
// AddWithinTx creates a transaction and then tries to execute anything within it.
func (p *MySQL) AddWithinTx(ctx context.Context, evt *outboxer.OutboxMessage, fn func(outboxer.ExecerContext) error) error {
tx, err := p.conn.BeginTx(ctx, &sql.TxOptions{})
if err != nil {
return fmt.Errorf("transaction start failed: %w", err)
}
if err := fn(tx); err != nil {
return err
}
// nolint
query := fmt.Sprintf(`INSERT INTO %s (payload, options, headers) VALUES (?, ?, ?)`, p.EventStoreTable)
if _, err := tx.ExecContext(ctx, query, evt.Payload, evt.Options, evt.Headers); err != nil {
if err := tx.Rollback(); err != nil {
return err
}
return fmt.Errorf("failed to insert message into the data store: %w", err)
}
if err := tx.Commit(); err != nil {
return fmt.Errorf("transaction commit failed: %w", err)
}
return nil
}
// SetAsDispatched sets one message as dispatched.
func (p *MySQL) SetAsDispatched(ctx context.Context, id int64) error {
query := fmt.Sprintf(`
update %s
set
dispatched = true,
dispatched_at = now(),
options = '{}',
headers = '{}'
where id = ?;
`, p.EventStoreTable)
if _, err := p.conn.ExecContext(ctx, query, id); err != nil {
return fmt.Errorf("failed to set message as dispatched: %w", err)
}
return nil
}
// Remove removes old messages from the data store.
func (p *MySQL) Remove(ctx context.Context, dispatchedBefore time.Time, batchSize int32) error {
tx, err := p.conn.BeginTx(ctx, &sql.TxOptions{})
if err != nil {
return fmt.Errorf("transaction start failed: %w", err)
}
q := `
DELETE FROM %[1]s
WHERE ctid IN
(
select ctid
from %[1]s
where
dispatched = true and
dispatched_at < ?
limit %d
)
`
query := fmt.Sprintf(q, p.EventStoreTable, batchSize)
if _, err := tx.ExecContext(ctx, query, dispatchedBefore); err != nil {
if err := tx.Rollback(); err != nil {
return err
}
return fmt.Errorf("failed to remove messages from the data store: %w", err)
}
if err := tx.Commit(); err != nil {
return fmt.Errorf("transaction commit failed: %w", err)
}
return nil
}
// Lock implements explicit locking.
func (p *MySQL) lock(ctx context.Context) error {
if p.isLocked {
return ErrLocked
}
aid, err := lock.Generate(p.DatabaseName, p.EventStoreTable)
if err != nil {
return err
}
query := "SELECT GET_LOCK(?, 10)"
var success bool
if err := p.conn.QueryRowContext(ctx, query, aid).Scan(&success); err != nil {
return fmt.Errorf("failed to acquire lock: %w", err)
}
if success {
p.isLocked = true
return nil
}
return ErrLocked
}
// Unlock is the implementation of the unlock for explicit locking.
func (p *MySQL) unlock(ctx context.Context) error {
if !p.isLocked {
return nil
}
aid, err := lock.Generate(p.DatabaseName, p.EventStoreTable)
if err != nil {
return err
}
query := `SELECT RELEASE_LOCK(?)`
if _, err := p.conn.ExecContext(ctx, query, aid); err != nil {
return err
}
p.isLocked = false
return nil
}
func (p *MySQL) ensureTable(ctx context.Context) (err error) {
if err := p.lock(ctx); err != nil {
return err
}
defer func() {
if e := p.unlock(ctx); e != nil {
if err == nil {
err = e
} else {
err = fmt.Errorf("failed to unlock table: %w", err)
}
}
}()
query := fmt.Sprintf(`
CREATE TABLE IF NOT EXISTS %[1]s (
id BIGINT AUTO_INCREMENT not null primary key,
dispatched BOOL not null default false,
dispatched_at DATETIME,
payload BLOB not null,
options json,
headers json
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
`, p.EventStoreTable)
if _, err = p.conn.ExecContext(ctx, query); err != nil {
return err
}
return nil
}