Skip to content

Commit 44db0ee

Browse files
authored
Improve bound and cache update checks (#343)
1 parent a21b735 commit 44db0ee

File tree

5 files changed

+37
-17
lines changed

5 files changed

+37
-17
lines changed

cmd/stellar-rpc/internal/db/cursor.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ var (
130130
//nolint:gochecknoglobals
131131
MaxCursor = Cursor{
132132
Ledger: math.MaxInt32,
133-
Tx: math.MaxInt32,
134-
Op: math.MaxInt32,
133+
Tx: toid.TransactionMask,
134+
Op: toid.OperationMask,
135135
Event: math.MaxUint32,
136136
}
137137
)

cmd/stellar-rpc/internal/db/cursor_test.go

+7
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,10 @@ func TestCursorCmp(t *testing.T) {
108108
}
109109
}
110110
}
111+
112+
func TestMaxCursor(t *testing.T) {
113+
str := MaxCursor.String()
114+
cursor, err := ParseCursor(str)
115+
require.NoError(t, err)
116+
assert.Equal(t, MaxCursor, cursor)
117+
}

cmd/stellar-rpc/internal/db/ledger.go

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package db
33
import (
44
"context"
55
"database/sql"
6+
"errors"
67
"fmt"
78

89
sq "github.com/Masterminds/squirrel"
@@ -63,6 +64,9 @@ func (l ledgerReaderTx) GetLedgerRange(ctx context.Context) (ledgerbucketwindow.
6364
func (l ledgerReaderTx) BatchGetLedgers(ctx context.Context, sequence uint32,
6465
batchSize uint,
6566
) ([]xdr.LedgerCloseMeta, error) {
67+
if batchSize < 1 {
68+
return nil, errors.New("batch size must be greater than zero")
69+
}
6670
sql := sq.Select("meta").
6771
From(ledgerCloseMetaTableName).
6872
Where(sq.And{

cmd/stellar-rpc/internal/methods/get_events.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"context"
55
"encoding/json"
66
"fmt"
7-
"math"
87
"strings"
98
"time"
109

@@ -125,6 +124,7 @@ func (g *GetEventsRequest) Valid(maxLimit uint) error {
125124
return errors.New("ledger ranges and cursor cannot both be set")
126125
}
127126
} else if g.StartLedger <= 0 {
127+
// Note: Endledger == 0 indicates it's unset (unlimited)
128128
return errors.New("startLedger must be positive")
129129
}
130130

@@ -524,7 +524,9 @@ func (h eventsRPCHandler) getEvents(ctx context.Context, request GetEventsReques
524524
// cursor represents end of the search window if events does not reach limit
525525
// here endLedger is always exclusive when fetching events
526526
// so search window is max Cursor value with endLedger - 1
527-
cursor = db.Cursor{Ledger: endLedger - 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String()
527+
maxCursor := db.MaxCursor
528+
maxCursor.Ledger = endLedger - 1
529+
cursor = maxCursor.String()
528530
}
529531

530532
return GetEventsResponse{

cmd/stellar-rpc/internal/methods/get_events_test.go

+20-13
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import (
44
"context"
55
"encoding/json"
66
"fmt"
7-
"math"
87
"path"
98
"strconv"
109
"strings"
@@ -656,8 +655,10 @@ func TestGetEvents(t *testing.T) {
656655
TransactionHash: ledgerCloseMeta.TransactionHash(i).HexString(),
657656
})
658657
}
659-
cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String()
660-
assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results)
658+
cursor := db.MaxCursor
659+
cursor.Ledger = 1
660+
cursorStr := cursor.String()
661+
assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results)
661662
})
662663

663664
t.Run("filtering by contract id", func(t *testing.T) {
@@ -803,9 +804,11 @@ func TestGetEvents(t *testing.T) {
803804
TransactionHash: ledgerCloseMeta.TransactionHash(4).HexString(),
804805
},
805806
}
806-
cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String()
807807

808-
assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results)
808+
cursor := db.MaxCursor
809+
cursor.Ledger = 1
810+
cursorStr := cursor.String()
811+
assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results)
809812

810813
results, err = handler.getEvents(ctx, GetEventsRequest{
811814
StartLedger: 1,
@@ -839,7 +842,7 @@ func TestGetEvents(t *testing.T) {
839842

840843
expected[0].ValueJSON = valueJs
841844
expected[0].TopicJSON = topicsJs
842-
require.Equal(t, GetEventsResponse{expected, 1, cursor}, results)
845+
require.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results)
843846
})
844847

845848
t.Run("filtering by both contract id and topic", func(t *testing.T) {
@@ -950,9 +953,10 @@ func TestGetEvents(t *testing.T) {
950953
TransactionHash: ledgerCloseMeta.TransactionHash(3).HexString(),
951954
},
952955
}
953-
cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String()
954-
955-
assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results)
956+
cursor := db.MaxCursor
957+
cursor.Ledger = 1
958+
cursorStr := cursor.String()
959+
assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results)
956960
})
957961

958962
t.Run("filtering by event type", func(t *testing.T) {
@@ -1027,9 +1031,10 @@ func TestGetEvents(t *testing.T) {
10271031
TransactionHash: ledgerCloseMeta.TransactionHash(0).HexString(),
10281032
},
10291033
}
1030-
cursor := db.Cursor{Ledger: 1, Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String()
1031-
1032-
assert.Equal(t, GetEventsResponse{expected, 1, cursor}, results)
1034+
cursor := db.MaxCursor
1035+
cursor.Ledger = 1
1036+
cursorStr := cursor.String()
1037+
assert.Equal(t, GetEventsResponse{expected, 1, cursorStr}, results)
10331038
})
10341039

10351040
t.Run("with limit", func(t *testing.T) {
@@ -1218,7 +1223,9 @@ func TestGetEvents(t *testing.T) {
12181223

12191224
// Note: endLedger is always exclusive when fetching events
12201225
// so search window is always max Cursor value with endLedger - 1
1221-
cursor = db.Cursor{Ledger: uint32(endLedger - 1), Tx: math.MaxUint32, Event: math.MaxUint32 - 1}.String()
1226+
rawCursor := db.MaxCursor
1227+
rawCursor.Ledger = uint32(endLedger - 1)
1228+
cursor = rawCursor.String()
12221229
assert.Equal(t, GetEventsResponse{[]EventInfo{}, 5, cursor}, results)
12231230
})
12241231
}

0 commit comments

Comments
 (0)