-
Notifications
You must be signed in to change notification settings - Fork 692
/
pgpoolstorage.go
690 lines (606 loc) · 17.3 KB
/
pgpoolstorage.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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
package pgpoolstorage
import (
"context"
"database/sql"
"errors"
"time"
"github.com/0xPolygonHermez/zkevm-node/db"
"github.com/0xPolygonHermez/zkevm-node/hex"
"github.com/0xPolygonHermez/zkevm-node/pool"
"github.com/0xPolygonHermez/zkevm-node/state"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/jackc/pgx/v4"
"github.com/jackc/pgx/v4/pgxpool"
)
// PostgresPoolStorage is an implementation of the Pool interface
// that uses a postgres database to store the data
type PostgresPoolStorage struct {
db *pgxpool.Pool
}
// NewPostgresPoolStorage creates and initializes an instance of PostgresPoolStorage
func NewPostgresPoolStorage(cfg db.Config) (*PostgresPoolStorage, error) {
poolDB, err := db.NewSQLDB(cfg)
if err != nil {
return nil, err
}
return &PostgresPoolStorage{
db: poolDB,
}, nil
}
// AddTx adds a transaction to the pool table with the provided status
func (p *PostgresPoolStorage) AddTx(ctx context.Context, tx pool.Transaction) error {
hash := tx.Hash().Hex()
b, err := tx.MarshalBinary()
if err != nil {
return err
}
encoded := hex.EncodeToHex(b)
b, err = tx.MarshalJSON()
if err != nil {
return err
}
decoded := string(b)
gasPrice := tx.GasPrice().Uint64()
nonce := tx.Nonce()
sql := `
INSERT INTO pool.transaction
(
hash,
encoded,
decoded,
status,
gas_price,
nonce,
cumulative_gas_used,
used_keccak_hashes,
used_poseidon_hashes,
used_poseidon_paddings,
used_mem_aligns,
used_arithmetics,
used_binaries,
used_steps,
received_at,
from_address,
is_wip,
ip
)
VALUES
($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15, $16, $17, $18)
ON CONFLICT (hash) DO UPDATE SET
encoded = $2,
decoded = $3,
status = $4,
gas_price = $5,
nonce = $6,
cumulative_gas_used = $7,
used_keccak_hashes = $8,
used_poseidon_hashes = $9,
used_poseidon_paddings = $10,
used_mem_aligns = $11,
used_arithmetics = $12,
used_binaries = $13,
used_steps = $14,
received_at = $15,
from_address = $16,
is_wip = $17,
ip = $18
`
// Get FromAddress from the JSON data
data, err := state.GetSender(tx.Transaction)
if err != nil {
return err
}
fromAddress := data.String()
if _, err := p.db.Exec(ctx, sql,
hash,
encoded,
decoded,
tx.Status,
gasPrice,
nonce,
tx.CumulativeGasUsed,
tx.UsedKeccakHashes,
tx.UsedPoseidonHashes,
tx.UsedPoseidonPaddings,
tx.UsedMemAligns,
tx.UsedArithmetics,
tx.UsedBinaries,
tx.UsedSteps,
tx.ReceivedAt,
fromAddress,
tx.IsWIP,
tx.IP); err != nil {
return err
}
return nil
}
// GetTxsByStatus returns an array of transactions filtered by status
// limit parameter is used to limit amount txs from the db,
// if limit = 0, then there is no limit
func (p *PostgresPoolStorage) GetTxsByStatus(ctx context.Context, status pool.TxStatus, limit uint64) ([]pool.Transaction, error) {
var (
rows pgx.Rows
err error
sql string
)
if limit == 0 {
sql = "SELECT encoded, status, received_at, is_wip, ip, failed_reason FROM pool.transaction WHERE status = $1 ORDER BY gas_price DESC"
rows, err = p.db.Query(ctx, sql, status.String())
} else {
sql = "SELECT encoded, status, received_at, is_wip, ip, failed_reason FROM pool.transaction WHERE status = $1 ORDER BY gas_price DESC LIMIT $2"
rows, err = p.db.Query(ctx, sql, status.String(), limit)
}
if err != nil {
return nil, err
}
defer rows.Close()
txs := make([]pool.Transaction, 0, len(rows.RawValues()))
for rows.Next() {
tx, err := scanTx(rows)
if err != nil {
return nil, err
}
txs = append(txs, *tx)
}
return txs, nil
}
// GetNonWIPTxsByStatus returns an array of transactions filtered by status
// limit parameter is used to limit amount txs from the db,
// if limit = 0, then there is no limit
func (p *PostgresPoolStorage) GetNonWIPTxsByStatus(ctx context.Context, status pool.TxStatus, limit uint64) ([]pool.Transaction, error) {
var (
rows pgx.Rows
err error
sql string
)
if limit == 0 {
sql = "SELECT encoded, status, received_at, is_wip, ip, failed_reason FROM pool.transaction WHERE is_wip IS FALSE and status = $1 ORDER BY gas_price DESC"
rows, err = p.db.Query(ctx, sql, status.String())
} else {
sql = "SELECT encoded, status, received_at, is_wip, ip, failed_reason FROM pool.transaction WHERE is_wip IS FALSE and status = $1 ORDER BY gas_price DESC LIMIT $2"
rows, err = p.db.Query(ctx, sql, status.String(), limit)
}
if err != nil {
return nil, err
}
defer rows.Close()
txs := make([]pool.Transaction, 0, len(rows.RawValues()))
for rows.Next() {
tx, err := scanTx(rows)
if err != nil {
return nil, err
}
txs = append(txs, *tx)
}
return txs, nil
}
// GetPendingTxHashesSince returns the pending tx since the given time.
func (p *PostgresPoolStorage) GetPendingTxHashesSince(ctx context.Context, since time.Time) ([]common.Hash, error) {
sql := "SELECT hash FROM pool.transaction WHERE status = $1 AND received_at >= $2"
rows, err := p.db.Query(ctx, sql, pool.TxStatusPending, since)
if err != nil {
return nil, err
}
defer rows.Close()
hashes := make([]common.Hash, 0, len(rows.RawValues()))
for rows.Next() {
var hash string
if err := rows.Scan(&hash); err != nil {
return nil, err
}
hashes = append(hashes, common.HexToHash(hash))
}
return hashes, nil
}
// GetTxs gets txs with the lowest nonce
func (p *PostgresPoolStorage) GetTxs(ctx context.Context, filterStatus pool.TxStatus, minGasPrice, limit uint64) ([]*pool.Transaction, error) {
query := `
SELECT
encoded,
status,
cumulative_gas_used,
used_keccak_hashes,
used_poseidon_hashes,
used_poseidon_paddings,
used_mem_aligns,
used_arithmetics,
used_binaries,
used_steps,
received_at,
nonce,
is_wip,
ip
FROM
pool.transaction p1
WHERE
status = $1 AND
gas_price >= $2
ORDER BY
nonce ASC
LIMIT $3
`
if filterStatus == pool.TxStatusFailed {
query = `
SELECT * FROM (
SELECT
encoded,
status,
cumulative_gas_used,
used_keccak_hashes,
used_poseidon_hashes,
used_poseidon_paddings,
used_mem_aligns,
used_arithmetics,
used_binaries,
used_steps,
received_at,
nonce,
is_wip,
ip
FROM
pool.transaction p1
WHERE
status = $1 AND
gas_price >= $2
ORDER BY
nonce ASC
LIMIT $3
) as tmp
ORDER BY nonce ASC
`
}
var (
encoded, status, ip string
receivedAt time.Time
cumulativeGasUsed uint64
usedKeccakHashes, usedPoseidonHashes, usedPoseidonPaddings,
usedMemAligns, usedArithmetics, usedBinaries, usedSteps uint32
nonce uint64
isWIP bool
)
args := []interface{}{filterStatus, minGasPrice, limit}
rows, err := p.db.Query(ctx, query, args...)
if errors.Is(err, pgx.ErrNoRows) {
return nil, pool.ErrNotFound
} else if err != nil {
return nil, err
}
txs := make([]*pool.Transaction, 0, len(rows.RawValues()))
for rows.Next() {
err := rows.Scan(
&encoded,
&status,
&cumulativeGasUsed,
&usedKeccakHashes,
&usedPoseidonHashes,
&usedPoseidonPaddings,
&usedMemAligns,
&usedArithmetics,
&usedBinaries,
&usedSteps,
&receivedAt,
&nonce,
&isWIP,
&ip,
)
if err != nil {
return nil, err
}
tx := new(pool.Transaction)
b, err := hex.DecodeHex(encoded)
if err != nil {
return nil, err
}
if err := tx.UnmarshalBinary(b); err != nil {
return nil, err
}
tx.Status = pool.TxStatus(status)
tx.ReceivedAt = receivedAt
tx.ZKCounters = state.ZKCounters{
CumulativeGasUsed: cumulativeGasUsed,
UsedKeccakHashes: usedKeccakHashes,
UsedPoseidonHashes: usedPoseidonHashes,
UsedPoseidonPaddings: usedPoseidonPaddings,
UsedMemAligns: usedMemAligns,
UsedArithmetics: usedArithmetics,
UsedBinaries: usedBinaries,
UsedSteps: usedSteps,
}
tx.IsWIP = isWIP
tx.IP = ip
txs = append(txs, tx)
}
return txs, nil
}
// CountTransactionsByStatus get number of transactions
// accordingly to the provided status
func (p *PostgresPoolStorage) CountTransactionsByStatus(ctx context.Context, status pool.TxStatus) (uint64, error) {
sql := "SELECT COUNT(*) FROM pool.transaction WHERE status = $1"
var counter uint64
err := p.db.QueryRow(ctx, sql, status.String()).Scan(&counter)
if err != nil {
return 0, err
}
return counter, nil
}
// UpdateTxStatus updates a transaction status accordingly to the
// provided status and hash
func (p *PostgresPoolStorage) UpdateTxStatus(ctx context.Context, updateInfo pool.TxStatusUpdateInfo) error {
sql := "UPDATE pool.transaction SET status = $1, is_wip = $2"
args := []interface{}{updateInfo.NewStatus, updateInfo.IsWIP}
if updateInfo.FailedReason != nil {
sql += ", failed_reason = $3"
args = append(args, *updateInfo.FailedReason)
sql += " WHERE hash = $4"
} else {
sql += " WHERE hash = $3"
}
args = append(args, updateInfo.Hash.Hex())
if _, err := p.db.Exec(ctx, sql, args...); err != nil {
return err
}
return nil
}
// UpdateTxsStatus updates transactions status accordingly to the provided status and hashes
func (p *PostgresPoolStorage) UpdateTxsStatus(ctx context.Context, updateInfos []pool.TxStatusUpdateInfo) error {
for _, updateInfo := range updateInfos {
if err := p.UpdateTxStatus(ctx, updateInfo); err != nil {
return err
}
}
return nil
}
// DeleteTransactionsByHashes deletes txs by their hashes
func (p *PostgresPoolStorage) DeleteTransactionsByHashes(ctx context.Context, hashes []common.Hash) error {
hh := make([]string, 0, len(hashes))
for _, h := range hashes {
hh = append(hh, h.Hex())
}
query := "DELETE FROM pool.transaction WHERE hash = ANY ($1)"
if _, err := p.db.Exec(ctx, query, hh); err != nil {
return err
}
return nil
}
// SetGasPrice allows an external component to define the gas price
func (p *PostgresPoolStorage) SetGasPrice(ctx context.Context, gasPrice uint64) error {
sql := "INSERT INTO pool.gas_price (price, timestamp) VALUES ($1, $2)"
if _, err := p.db.Exec(ctx, sql, gasPrice, time.Now().UTC()); err != nil {
return err
}
return nil
}
// GetGasPrice returns the current gas price
func (p *PostgresPoolStorage) GetGasPrice(ctx context.Context) (uint64, error) {
sql := "SELECT price FROM pool.gas_price ORDER BY item_id DESC LIMIT 1"
rows, err := p.db.Query(ctx, sql)
if errors.Is(err, pgx.ErrNoRows) {
return 0, state.ErrNotFound
} else if err != nil {
return 0, err
}
defer rows.Close()
gasPrice := uint64(0)
for rows.Next() {
err := rows.Scan(&gasPrice)
if err != nil {
return 0, err
}
}
return gasPrice, nil
}
// MinGasPriceSince returns the min gas price after given timestamp
func (p *PostgresPoolStorage) MinGasPriceSince(ctx context.Context, timestamp time.Time) (uint64, error) {
sql := "SELECT COALESCE(MIN(price), 0) FROM pool.gas_price WHERE \"timestamp\" >= $1 LIMIT 1"
var gasPrice uint64
err := p.db.QueryRow(ctx, sql, timestamp).Scan(&gasPrice)
if gasPrice == 0 || errors.Is(err, pgx.ErrNoRows) {
return 0, state.ErrNotFound
} else if err != nil {
return 0, err
}
return gasPrice, nil
}
// IsTxPending determines if the tx associated to the given hash is pending or
// not.
func (p *PostgresPoolStorage) IsTxPending(ctx context.Context, hash common.Hash) (bool, error) {
var exists bool
req := "SELECT exists (SELECT 1 FROM pool.transaction WHERE hash = $1 AND status = $2)"
err := p.db.QueryRow(ctx, req, hash.Hex(), pool.TxStatusPending).Scan(&exists)
if err != nil && err != sql.ErrNoRows {
return false, err
}
return exists, nil
}
// GetTxsByFromAndNonce get all the transactions from the pool with the same from and nonce
func (p *PostgresPoolStorage) GetTxsByFromAndNonce(ctx context.Context, from common.Address, nonce uint64) ([]pool.Transaction, error) {
sql := `SELECT encoded, status, received_at, is_wip, ip, failed_reason
FROM pool.transaction
WHERE from_address = $1
AND nonce = $2`
rows, err := p.db.Query(ctx, sql, from.String(), nonce)
if errors.Is(err, pgx.ErrNoRows) {
return nil, nil
} else if err != nil {
return nil, err
}
defer rows.Close()
txs := make([]pool.Transaction, 0, len(rows.RawValues()))
for rows.Next() {
tx, err := scanTx(rows)
if err != nil {
return nil, err
}
txs = append(txs, *tx)
}
return txs, nil
}
// GetTxFromAddressFromByHash gets tx from address by hash
func (p *PostgresPoolStorage) GetTxFromAddressFromByHash(ctx context.Context, hash common.Hash) (common.Address, uint64, error) {
query := `SELECT from_address, nonce
FROM pool.transaction
WHERE hash = $1
`
var (
fromAddr string
nonce uint64
)
err := p.db.QueryRow(ctx, query, hash.String()).Scan(&fromAddr, &nonce)
if err != nil {
return common.Address{}, 0, err
}
return common.HexToAddress(fromAddr), nonce, nil
}
// GetNonce gets the nonce to the provided address accordingly to the txs in the pool
func (p *PostgresPoolStorage) GetNonce(ctx context.Context, address common.Address) (uint64, error) {
sql := `SELECT MAX(nonce)
FROM pool.transaction
WHERE from_address = $1
AND status IN ($2, $3)`
rows, err := p.db.Query(ctx, sql, address.String(), pool.TxStatusPending, pool.TxStatusSelected)
if errors.Is(err, pgx.ErrNoRows) {
return 0, nil
} else if err != nil {
return 0, err
}
defer rows.Close()
var nonce *uint64
for rows.Next() {
err := rows.Scan(&nonce)
if err != nil {
return 0, err
} else if rows.Err() != nil {
return 0, rows.Err()
}
}
if nonce == nil {
n := uint64(0)
nonce = &n
} else {
n := *nonce + 1
nonce = &n
}
return *nonce, nil
}
// GetTxByHash gets a transaction in the pool by its hash
func (p *PostgresPoolStorage) GetTxByHash(ctx context.Context, hash common.Hash) (*pool.Transaction, error) {
var (
encoded, status, ip string
receivedAt time.Time
isWIP bool
)
sql := `SELECT encoded, status, received_at, is_wip, ip
FROM pool.transaction
WHERE hash = $1`
err := p.db.QueryRow(ctx, sql, hash.String()).Scan(&encoded, &status, &receivedAt, &isWIP, &ip)
if errors.Is(err, pgx.ErrNoRows) {
return nil, pool.ErrNotFound
} else if err != nil {
return nil, err
}
b, err := hex.DecodeHex(encoded)
if err != nil {
return nil, err
}
tx := new(types.Transaction)
if err := tx.UnmarshalBinary(b); err != nil {
return nil, err
}
poolTx := &pool.Transaction{
ReceivedAt: receivedAt,
Status: pool.TxStatus(status),
Transaction: *tx,
IsWIP: isWIP,
IP: ip,
}
return poolTx, nil
}
func scanTx(rows pgx.Rows) (*pool.Transaction, error) {
var (
encoded, status, ip string
receivedAt time.Time
isWIP bool
failedReason *string
)
if err := rows.Scan(&encoded, &status, &receivedAt, &isWIP, &ip, &failedReason); err != nil {
return nil, err
}
tx := new(pool.Transaction)
b, err := hex.DecodeHex(encoded)
if err != nil {
return nil, err
}
if err := tx.UnmarshalBinary(b); err != nil {
return nil, err
}
tx.Status = pool.TxStatus(status)
tx.ReceivedAt = receivedAt
tx.IsWIP = isWIP
tx.IP = ip
tx.FailedReason = failedReason
return tx, nil
}
// DeleteTransactionByHash deletes tx by its hash
func (p *PostgresPoolStorage) DeleteTransactionByHash(ctx context.Context, hash common.Hash) error {
query := "DELETE FROM pool.transaction WHERE hash = $1"
if _, err := p.db.Exec(ctx, query, hash); err != nil {
return err
}
return nil
}
// GetTxZkCountersByHash gets a transaction zkcounters by its hash
func (p *PostgresPoolStorage) GetTxZkCountersByHash(ctx context.Context, hash common.Hash) (*state.ZKCounters, error) {
var zkCounters state.ZKCounters
sql := `SELECT cumulative_gas_used, used_keccak_hashes, used_poseidon_hashes, used_poseidon_paddings, used_mem_aligns,
used_arithmetics, used_binaries, used_steps FROM pool.transaction WHERE hash = $1`
err := p.db.QueryRow(ctx, sql, hash.String()).Scan(&zkCounters.CumulativeGasUsed, &zkCounters.UsedKeccakHashes,
&zkCounters.UsedPoseidonHashes, &zkCounters.UsedPoseidonPaddings,
&zkCounters.UsedMemAligns, &zkCounters.UsedArithmetics, &zkCounters.UsedBinaries, &zkCounters.UsedSteps)
if errors.Is(err, pgx.ErrNoRows) {
return nil, pool.ErrNotFound
} else if err != nil {
return nil, err
}
return &zkCounters, nil
}
// MarkWIPTxsAsPending updates WIP status to non WIP
func (p *PostgresPoolStorage) MarkWIPTxsAsPending(ctx context.Context) error {
const query = `UPDATE pool.transaction SET is_wip = false WHERE is_wip = true`
if _, err := p.db.Exec(ctx, query); err != nil {
return err
}
return nil
}
// UpdateTxWIPStatus updates a transaction wip status accordingly to the
// provided WIP status and hash
func (p *PostgresPoolStorage) UpdateTxWIPStatus(ctx context.Context, hash common.Hash, isWIP bool) error {
sql := "UPDATE pool.transaction SET is_wip = $1 WHERE hash = $2"
if _, err := p.db.Exec(ctx, sql, isWIP, hash.Hex()); err != nil {
return err
}
return nil
}
// GetAllAddressesBlocked get all addresses blocked
func (p *PostgresPoolStorage) GetAllAddressesBlocked(ctx context.Context) ([]common.Address, error) {
sql := `SELECT addr FROM pool.blocked`
rows, err := p.db.Query(ctx, sql)
if err != nil {
if errors.Is(err, pgx.ErrNoRows) {
return nil, nil
} else {
return nil, err
}
}
defer rows.Close()
var addrs []common.Address
for rows.Next() {
var addr string
err := rows.Scan(&addr)
if err != nil {
return nil, err
}
addrs = append(addrs, common.HexToAddress(addr))
}
return addrs, nil
}