forked from rpcpool/yellowstone-faithful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
multiepoch-getTransaction.go
231 lines (211 loc) · 6.58 KB
/
multiepoch-getTransaction.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
package main
import (
"context"
"errors"
"fmt"
"sort"
"time"
"github.com/gagliardetto/solana-go"
"github.com/rpcpool/yellowstone-faithful/compactindexsized"
"github.com/sourcegraph/jsonrpc2"
"k8s.io/klog/v2"
)
type SigExistsIndex interface {
Has(sig [64]byte) (bool, error)
}
func (multi *MultiEpoch) getAllBucketteers() map[uint64]SigExistsIndex {
multi.mu.RLock()
defer multi.mu.RUnlock()
bucketteers := make(map[uint64]SigExistsIndex)
for _, epoch := range multi.epochs {
if epoch.sigExists != nil {
bucketteers[epoch.Epoch()] = epoch.sigExists
}
}
return bucketteers
}
func (multi *MultiEpoch) findEpochNumberFromSignature(ctx context.Context, sig solana.Signature) (uint64, error) {
// FLOW:
// - if one epoch, just return that epoch
// - if multiple epochs, use sigToEpoch to find the epoch number
// - if sigToEpoch is not available, linear search through all epochs
ttok := time.Now()
defer func() {
klog.V(4).Infof("findEpochNumberFromSignature took %s", time.Since(ttok))
}()
if epochs := multi.GetEpochNumbers(); len(epochs) == 1 {
return epochs[0], nil
}
numbers := multi.GetEpochNumbers()
// sort from highest to lowest:
sort.Slice(numbers, func(i, j int) bool {
return numbers[i] > numbers[j]
})
buckets := multi.getAllBucketteers()
// Search all epochs in parallel:
jobGroup := NewJobGroup[uint64]()
for i := range numbers {
epochNumber := numbers[i]
jobGroup.Add(func(ctx context.Context) (uint64, error) {
if ctx.Err() != nil {
return 0, ctx.Err()
}
bucket, ok := buckets[epochNumber]
if !ok {
return 0, ErrNotFound
}
has, err := bucket.Has(sig)
if err != nil {
return 0, fmt.Errorf("failed to check if signature exists in bucket: %w", err)
}
if !has {
return 0, ErrNotFound
}
epoch, err := multi.GetEpoch(epochNumber)
if err != nil {
return 0, fmt.Errorf("failed to get epoch %d: %w", epochNumber, err)
}
if _, err := epoch.FindCidFromSignature(ctx, sig); err == nil {
return epochNumber, nil
}
// Not found in this epoch.
return 0, ErrNotFound
})
}
val, err := jobGroup.RunWithConcurrency(ctx, multi.options.EpochSearchConcurrency)
// val, err := jobGroup.RunWithConcurrency(ctx, multi.options.EpochSearchConcurrency)
if err != nil {
errs, ok := err.(ErrorSlice)
if !ok {
// An error occurred while searching one of the epochs.
return 0, err
}
// All epochs were searched, but the signature was not found.
if errs.All(func(err error) bool {
return errors.Is(err, ErrNotFound)
}) {
return 0, ErrNotFound
}
return 0, err
}
// The signature was found in one of the epochs.
return val, nil
}
func (multi *MultiEpoch) handleGetTransaction(ctx context.Context, conn *requestContext, req *jsonrpc2.Request) (*jsonrpc2.Error, error) {
if multi.CountEpochs() == 0 {
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInternalError,
Message: "no epochs available",
}, fmt.Errorf("no epochs available")
}
params, err := parseGetTransactionRequest(req.Params)
if err != nil {
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInvalidParams,
Message: "Invalid params",
}, fmt.Errorf("failed to parse params: %w", err)
}
if err := params.Validate(); err != nil {
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInvalidParams,
Message: err.Error(),
}, fmt.Errorf("failed to validate params: %w", err)
}
sig := params.Signature
startedEpochLookupAt := time.Now()
epochNumber, err := multi.findEpochNumberFromSignature(ctx, sig)
if err != nil {
if errors.Is(err, ErrNotFound) {
// solana just returns null here in case of transaction not found: {"jsonrpc":"2.0","result":null,"id":1}
return &jsonrpc2.Error{
Code: CodeNotFound,
Message: "Transaction not found",
}, fmt.Errorf("failed to find epoch number from signature %s: %w", sig, err)
}
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInternalError,
Message: "Internal error",
}, fmt.Errorf("failed to get epoch for signature %s: %w", sig, err)
}
klog.V(4).Infof("Found signature %s in epoch %d in %s", sig, epochNumber, time.Since(startedEpochLookupAt))
epochHandler, err := multi.GetEpoch(uint64(epochNumber))
if err != nil {
return &jsonrpc2.Error{
Code: CodeNotFound,
Message: fmt.Sprintf("Epoch %d is not available from this RPC", epochNumber),
}, fmt.Errorf("failed to get handler for epoch %d: %w", epochNumber, err)
}
transactionNode, transactionCid, err := epochHandler.GetTransaction(WithSubrapghPrefetch(ctx, true), sig)
if err != nil {
if errors.Is(err, compactindexsized.ErrNotFound) {
// NOTE: solana just returns null here in case of transaction not found: {"jsonrpc":"2.0","result":null,"id":1}
return &jsonrpc2.Error{
Code: CodeNotFound,
Message: "Transaction not found",
}, fmt.Errorf("transaction %s not found", sig)
}
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInternalError,
Message: "Internal error",
}, fmt.Errorf("failed to get Transaction: %w", err)
}
{
conn.ctx.Response.Header.Set("DAG-Root-CID", transactionCid.String())
}
var response GetTransactionResponse
response.Slot = ptrToUint64(uint64(transactionNode.Slot))
{
block, _, err := epochHandler.GetBlock(ctx, uint64(transactionNode.Slot))
if err != nil {
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInternalError,
Message: "Internal error",
}, fmt.Errorf("failed to get block: %w", err)
}
blocktime := uint64(block.Meta.Blocktime)
if blocktime != 0 {
response.Blocktime = &blocktime
}
}
{
pos, ok := transactionNode.GetPositionIndex()
if ok {
response.Position = uint64(pos)
}
tx, meta, err := parseTransactionAndMetaFromNode(transactionNode, epochHandler.GetDataFrameByCid)
if err != nil {
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInternalError,
Message: "Internal error",
}, fmt.Errorf("failed to decode transaction: %w", err)
}
response.Signatures = tx.Signatures
if tx.Message.IsVersioned() {
response.Version = tx.Message.GetVersion() - 1
} else {
response.Version = "legacy"
}
encodedTx, encodedMeta, err := encodeTransactionResponseBasedOnWantedEncoding(*params.Options.Encoding, tx, meta)
if err != nil {
return &jsonrpc2.Error{
Code: jsonrpc2.CodeInternalError,
Message: "Internal error",
}, fmt.Errorf("failed to encode transaction: %w", err)
}
response.Transaction = encodedTx
response.Meta = encodedMeta
}
// reply with the data
err = conn.Reply(
ctx,
req.ID,
response,
func(m map[string]any) map[string]any {
return adaptTransactionMetaToExpectedOutput(m)
},
)
if err != nil {
return nil, fmt.Errorf("failed to reply: %w", err)
}
return nil, nil
}