-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpostgres.go
294 lines (235 loc) · 7.08 KB
/
postgres.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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
// Package postgres is the implementation of the postgres data store.
package postgres
import (
"context"
"database/sql"
"errors"
"fmt"
"time"
"github.com/italolelis/outboxer"
"github.com/italolelis/outboxer/lock"
)
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")
// ErrNoSchema is used when the schema name is blank.
ErrNoSchema = errors.New("no schema")
)
// Postgres is the implementation of the data store.
type Postgres struct {
conn *sql.Conn
DatabaseName string
SchemaName string
EventStoreTable string
isLocked bool
}
// WithInstance creates a postgres data store with an existing db connection.
func WithInstance(ctx context.Context, db *sql.DB) (*Postgres, error) {
conn, err := db.Conn(ctx)
if err != nil {
return nil, err
}
p := Postgres{conn: conn}
if err := conn.QueryRowContext(ctx, `SELECT CURRENT_DATABASE()`).Scan(&p.DatabaseName); err != nil {
return nil, err
}
if p.DatabaseName == "" {
return nil, ErrNoDatabaseName
}
if err := conn.QueryRowContext(ctx, `SELECT CURRENT_SCHEMA()`).Scan(&p.SchemaName); err != nil {
return nil, err
}
if p.SchemaName == "" {
return nil, ErrNoSchema
}
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 *Postgres) 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 *Postgres) 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 the 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 *Postgres) Add(ctx context.Context, evt *outboxer.OutboxMessage) error {
tx, err := p.conn.BeginTx(ctx, &sql.TxOptions{})
if err != nil {
return fmt.Errorf("transaction start failed: %w", err)
}
// nolint
query := fmt.Sprintf(`INSERT INTO %s (payload, options, headers) VALUES ($1, $2, $3)`, 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
}
// AddWithinTx creates a transaction and then tries to execute anything within it.
func (p *Postgres) 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 ($1, $2, $3)`, 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 *Postgres) SetAsDispatched(ctx context.Context, id int64) error {
query := fmt.Sprintf(`
update %s
set
dispatched = true,
dispatched_at = now(),
options = '{}',
headers = '{}'
where id = $1;
`, 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 *Postgres) 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" < $1
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.
// https://www.postgresql.org/docs/9.6/static/explicit-locking.html#ADVISORY-LOCKS
func (p *Postgres) lock(ctx context.Context) error {
if p.isLocked {
return ErrLocked
}
aid, err := lock.Generate(p.DatabaseName, p.SchemaName)
if err != nil {
return err
}
// This will either obtain the lock immediately and return true,
// or return false if the lock cannot be acquired immediately.
query := `SELECT pg_advisory_lock($1)`
if _, err := p.conn.ExecContext(ctx, query, aid); err != nil {
return fmt.Errorf("try lock failed: %w", err)
}
p.isLocked = true
return nil
}
// Unlock is the implementation of the unlock for explicit locking.
func (p *Postgres) unlock(ctx context.Context) error {
if !p.isLocked {
return nil
}
aid, err := lock.Generate(p.DatabaseName, p.SchemaName)
if err != nil {
return err
}
query := `SELECT pg_advisory_unlock($1)`
if _, err := p.conn.ExecContext(ctx, query, aid); err != nil {
return err
}
p.isLocked = false
return nil
}
func (p *Postgres) 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 SERIAL not null primary key,
dispatched boolean not null default false,
dispatched_at timestamp,
payload bytea not null,
options jsonb,
headers jsonb
);
CREATE INDEX IF NOT EXISTS "index_dispatchedAt" ON %[1]s using btree (dispatched_at asc nulls last);
CREATE INDEX IF NOT EXISTS "index_dispatched" ON %[1]s using btree (dispatched asc nulls last);
`, p.EventStoreTable)
if _, err = p.conn.ExecContext(ctx, query); err != nil {
return err
}
return nil
}