-
Notifications
You must be signed in to change notification settings - Fork 184
/
Copy pathhandler.go
598 lines (509 loc) · 26.8 KB
/
handler.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
package backend
import (
"context"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
"google.golang.org/protobuf/types/known/timestamppb"
"github.com/onflow/flow/protobuf/go/flow/entities"
"github.com/onflow/flow/protobuf/go/flow/executiondata"
"github.com/onflow/flow-go/engine/access/state_stream"
"github.com/onflow/flow-go/engine/access/subscription"
"github.com/onflow/flow-go/engine/common/rpc"
"github.com/onflow/flow-go/engine/common/rpc/convert"
"github.com/onflow/flow-go/model/flow"
"github.com/onflow/flow-go/module/counters"
)
type Handler struct {
subscription.StreamingData
api state_stream.API
chain flow.Chain
eventFilterConfig state_stream.EventFilterConfig
defaultHeartbeatInterval uint64
}
// sendSubscribeEventsResponseFunc is a callback function used to send
// SubscribeEventsResponse to the client stream.
type sendSubscribeEventsResponseFunc func(*executiondata.SubscribeEventsResponse) error
// sendSubscribeExecutionDataResponseFunc is a callback function used to send
// SubscribeExecutionDataResponse to the client stream.
type sendSubscribeExecutionDataResponseFunc func(*executiondata.SubscribeExecutionDataResponse) error
var _ executiondata.ExecutionDataAPIServer = (*Handler)(nil)
func NewHandler(api state_stream.API, chain flow.Chain, config Config) *Handler {
h := &Handler{
StreamingData: subscription.NewStreamingData(config.MaxGlobalStreams),
api: api,
chain: chain,
eventFilterConfig: config.EventFilterConfig,
defaultHeartbeatInterval: config.HeartbeatInterval,
}
return h
}
func (h *Handler) GetExecutionDataByBlockID(ctx context.Context, request *executiondata.GetExecutionDataByBlockIDRequest) (*executiondata.GetExecutionDataByBlockIDResponse, error) {
blockID, err := convert.BlockID(request.GetBlockId())
if err != nil {
return nil, status.Errorf(codes.InvalidArgument, "could not convert block ID: %v", err)
}
execData, err := h.api.GetExecutionDataByBlockID(ctx, blockID)
if err != nil {
return nil, rpc.ConvertError(err, "could no get execution data", codes.Internal)
}
message, err := convert.BlockExecutionDataToMessage(execData)
if err != nil {
return nil, status.Errorf(codes.Internal, "could not convert execution data to entity: %v", err)
}
err = convert.BlockExecutionDataEventPayloadsToVersion(message, request.GetEventEncodingVersion())
if err != nil {
return nil, status.Errorf(codes.Internal, "could not convert execution data event payloads to JSON: %v", err)
}
return &executiondata.GetExecutionDataByBlockIDResponse{BlockExecutionData: message}, nil
}
// SubscribeExecutionData is deprecated and will be removed in a future version.
// Use SubscribeExecutionDataFromStartBlockID, SubscribeExecutionDataFromStartBlockHeight or SubscribeExecutionDataFromLatest.
//
// SubscribeExecutionData handles subscription requests for execution data starting at the specified block ID or block height.
// The handler manages the subscription and sends the subscribed information to the client via the provided stream.
//
// Expected errors during normal operation:
// - codes.InvalidArgument - if request contains invalid startBlockID.
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - if stream got unexpected response or could not send response.
func (h *Handler) SubscribeExecutionData(request *executiondata.SubscribeExecutionDataRequest, stream executiondata.ExecutionDataAPI_SubscribeExecutionDataServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
startBlockID := flow.ZeroID
if request.GetStartBlockId() != nil {
blockID, err := convert.BlockID(request.GetStartBlockId())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not convert start block ID: %v", err)
}
startBlockID = blockID
}
sub := h.api.SubscribeExecutionData(stream.Context(), startBlockID, request.GetStartBlockHeight())
return subscription.HandleSubscription(sub, handleSubscribeExecutionData(stream.Send, request.GetEventEncodingVersion()))
}
// SubscribeExecutionDataFromStartBlockID handles subscription requests for
// execution data starting at the specified block ID. The handler manages the
// subscription and sends the subscribed information to the client via the
// provided stream.
//
// Expected errors during normal operation:
// - codes.InvalidArgument - if request contains invalid startBlockID.
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - if stream got unexpected response or could not send response.
func (h *Handler) SubscribeExecutionDataFromStartBlockID(request *executiondata.SubscribeExecutionDataFromStartBlockIDRequest, stream executiondata.ExecutionDataAPI_SubscribeExecutionDataFromStartBlockIDServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
startBlockID, err := convert.BlockID(request.GetStartBlockId())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not convert start block ID: %v", err)
}
sub := h.api.SubscribeExecutionDataFromStartBlockID(stream.Context(), startBlockID)
return subscription.HandleSubscription(sub, handleSubscribeExecutionData(stream.Send, request.GetEventEncodingVersion()))
}
// SubscribeExecutionDataFromStartBlockHeight handles subscription requests for
// execution data starting at the specified block height. The handler manages the
// subscription and sends the subscribed information to the client via the
// provided stream.
//
// Expected errors during normal operation:
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - if stream got unexpected response or could not send response.
func (h *Handler) SubscribeExecutionDataFromStartBlockHeight(request *executiondata.SubscribeExecutionDataFromStartBlockHeightRequest, stream executiondata.ExecutionDataAPI_SubscribeExecutionDataFromStartBlockHeightServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
sub := h.api.SubscribeExecutionDataFromStartBlockHeight(stream.Context(), request.GetStartBlockHeight())
return subscription.HandleSubscription(sub, handleSubscribeExecutionData(stream.Send, request.GetEventEncodingVersion()))
}
// SubscribeExecutionDataFromLatest handles subscription requests for
// execution data starting at the latest block. The handler manages the
// subscription and sends the subscribed information to the client via the
// provided stream.
//
// Expected errors during normal operation:
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - if stream got unexpected response or could not send response.
func (h *Handler) SubscribeExecutionDataFromLatest(request *executiondata.SubscribeExecutionDataFromLatestRequest, stream executiondata.ExecutionDataAPI_SubscribeExecutionDataFromLatestServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
sub := h.api.SubscribeExecutionDataFromLatest(stream.Context())
return subscription.HandleSubscription(sub, handleSubscribeExecutionData(stream.Send, request.GetEventEncodingVersion()))
}
// SubscribeEvents is deprecated and will be removed in a future version.
// Use SubscribeEventsFromStartBlockID, SubscribeEventsFromStartHeight or SubscribeEventsFromLatest.
//
// SubscribeEvents handles subscription requests for events starting at the specified block ID or block height.
// The handler manages the subscription and sends the subscribed information to the client via the provided stream.
//
// Responses are returned for each block containing at least one event that matches the filter. Additionally,
// heartbeat responses (SubscribeEventsResponse with no events) are returned periodically to allow
// clients to track which blocks were searched. Clients can use this
// information to determine which block to start from when reconnecting.
//
// Expected errors during normal operation:
// - codes.InvalidArgument - if provided both startBlockID and startHeight, if invalid startBlockID is provided, if invalid event filter is provided.
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - could not convert events to entity, if stream encountered an error, if stream got unexpected response or could not send response.
func (h *Handler) SubscribeEvents(request *executiondata.SubscribeEventsRequest, stream executiondata.ExecutionDataAPI_SubscribeEventsServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
startBlockID := flow.ZeroID
if request.GetStartBlockId() != nil {
blockID, err := convert.BlockID(request.GetStartBlockId())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not convert start block ID: %v", err)
}
startBlockID = blockID
}
filter, err := h.getEventFilter(request.GetFilter())
if err != nil {
return err
}
sub := h.api.SubscribeEvents(stream.Context(), startBlockID, request.GetStartBlockHeight(), filter)
return subscription.HandleSubscription(sub, h.handleEventsResponse(stream.Send, request.HeartbeatInterval, request.GetEventEncodingVersion()))
}
// SubscribeEventsFromStartBlockID handles subscription requests for events starting at the specified block ID.
// The handler manages the subscription and sends the subscribed information to the client via the provided stream.
//
// Responses are returned for each block containing at least one event that matches the filter. Additionally,
// heartbeat responses (SubscribeEventsResponse with no events) are returned periodically to allow
// clients to track which blocks were searched. Clients can use this
// information to determine which block to start from when reconnecting.
//
// Expected errors during normal operation:
// - codes.InvalidArgument - if invalid startBlockID is provided, if invalid event filter is provided.
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - could not convert events to entity, if stream encountered an error, if stream got unexpected response or could not send response.
func (h *Handler) SubscribeEventsFromStartBlockID(request *executiondata.SubscribeEventsFromStartBlockIDRequest, stream executiondata.ExecutionDataAPI_SubscribeEventsFromStartBlockIDServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
startBlockID, err := convert.BlockID(request.GetStartBlockId())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not convert start block ID: %v", err)
}
filter, err := h.getEventFilter(request.GetFilter())
if err != nil {
return err
}
sub := h.api.SubscribeEventsFromStartBlockID(stream.Context(), startBlockID, filter)
return subscription.HandleSubscription(sub, h.handleEventsResponse(stream.Send, request.HeartbeatInterval, request.GetEventEncodingVersion()))
}
// SubscribeEventsFromStartHeight handles subscription requests for events starting at the specified block height.
// The handler manages the subscription and sends the subscribed information to the client via the provided stream.
//
// Responses are returned for each block containing at least one event that matches the filter. Additionally,
// heartbeat responses (SubscribeEventsResponse with no events) are returned periodically to allow
// clients to track which blocks were searched. Clients can use this
// information to determine which block to start from when reconnecting.
//
// Expected errors during normal operation:
// - codes.InvalidArgument - if invalid event filter is provided.
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - could not convert events to entity, if stream encountered an error, if stream got unexpected response or could not send response.
func (h *Handler) SubscribeEventsFromStartHeight(request *executiondata.SubscribeEventsFromStartHeightRequest, stream executiondata.ExecutionDataAPI_SubscribeEventsFromStartHeightServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
filter, err := h.getEventFilter(request.GetFilter())
if err != nil {
return err
}
sub := h.api.SubscribeEventsFromStartHeight(stream.Context(), request.GetStartBlockHeight(), filter)
return subscription.HandleSubscription(sub, h.handleEventsResponse(stream.Send, request.HeartbeatInterval, request.GetEventEncodingVersion()))
}
// SubscribeEventsFromLatest handles subscription requests for events started from latest sealed block..
// The handler manages the subscription and sends the subscribed information to the client via the provided stream.
//
// Responses are returned for each block containing at least one event that matches the filter. Additionally,
// heartbeat responses (SubscribeEventsResponse with no events) are returned periodically to allow
// clients to track which blocks were searched. Clients can use this
// information to determine which block to start from when reconnecting.
//
// Expected errors during normal operation:
// - codes.InvalidArgument - if invalid event filter is provided.
// - codes.ResourceExhausted - if the maximum number of streams is reached.
// - codes.Internal - could not convert events to entity, if stream encountered an error, if stream got unexpected response or could not send response.
func (h *Handler) SubscribeEventsFromLatest(request *executiondata.SubscribeEventsFromLatestRequest, stream executiondata.ExecutionDataAPI_SubscribeEventsFromLatestServer) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
filter, err := h.getEventFilter(request.GetFilter())
if err != nil {
return err
}
sub := h.api.SubscribeEventsFromLatest(stream.Context(), filter)
return subscription.HandleSubscription(sub, h.handleEventsResponse(stream.Send, request.HeartbeatInterval, request.GetEventEncodingVersion()))
}
// handleSubscribeExecutionData handles the subscription to execution data and sends it to the client via the provided stream.
// This function is designed to be used as a callback for execution data updates in a subscription.
//
// Parameters:
// - send: The function responsible for sending execution data in response to the client.
//
// Returns a function that can be used as a callback for execution data updates.
//
// Expected errors during normal operation:
// - codes.Internal - could not convert execution data to entity or could not convert execution data event payloads to JSON.
func handleSubscribeExecutionData(send sendSubscribeExecutionDataResponseFunc, eventEncodingVersion entities.EventEncodingVersion) func(response *ExecutionDataResponse) error {
return func(resp *ExecutionDataResponse) error {
execData, err := convert.BlockExecutionDataToMessage(resp.ExecutionData)
if err != nil {
return status.Errorf(codes.Internal, "could not convert execution data to entity: %v", err)
}
err = convert.BlockExecutionDataEventPayloadsToVersion(execData, eventEncodingVersion)
if err != nil {
return status.Errorf(codes.Internal, "could not convert execution data event payloads to JSON: %v", err)
}
err = send(&executiondata.SubscribeExecutionDataResponse{
BlockHeight: resp.Height,
BlockExecutionData: execData,
BlockTimestamp: timestamppb.New(resp.BlockTimestamp),
})
return err
}
}
// handleEventsResponse handles the event subscription and sends subscribed events to the client via the provided stream.
// This function is designed to be used as a callback for events updates in a subscription.
// It takes a EventsResponse, processes it, and sends the corresponding response to the client using the provided send function.
//
// Parameters:
// - send: The function responsible for sending events response to the client.
//
// Returns a function that can be used as a callback for events updates.
//
// Expected errors during normal operation:
// - codes.Internal - could not convert events to entity or the stream could not send a response.
func (h *Handler) handleEventsResponse(send sendSubscribeEventsResponseFunc, heartbeatInterval uint64, eventEncodingVersion entities.EventEncodingVersion) func(*EventsResponse) error {
if heartbeatInterval == 0 {
heartbeatInterval = h.defaultHeartbeatInterval
}
blocksSinceLastMessage := uint64(0)
messageIndex := counters.NewMonotonousCounter(0)
return func(resp *EventsResponse) error {
// check if there are any events in the response. if not, do not send a message unless the last
// response was more than HeartbeatInterval blocks ago
if len(resp.Events) == 0 {
blocksSinceLastMessage++
if blocksSinceLastMessage < heartbeatInterval {
return nil
}
blocksSinceLastMessage = 0
}
// BlockExecutionData contains CCF encoded events, and the Access API returns JSON-CDC events.
// convert event payload formats.
// This is a temporary solution until the Access API supports specifying the encoding in the request
events, err := convert.EventsToMessagesWithEncodingConversion(resp.Events, entities.EventEncodingVersion_CCF_V0, eventEncodingVersion)
if err != nil {
return status.Errorf(codes.Internal, "could not convert events to entity: %v", err)
}
index := messageIndex.Increment()
err = send(&executiondata.SubscribeEventsResponse{
BlockHeight: resp.Height,
BlockId: convert.IdentifierToMessage(resp.BlockID),
Events: events,
BlockTimestamp: timestamppb.New(resp.BlockTimestamp),
MessageIndex: index,
})
if err != nil {
return rpc.ConvertError(err, "could not send response", codes.Internal)
}
return nil
}
}
// getEventFilter returns an event filter based on the provided event filter configuration.
// If the event filter is nil, it returns an empty filter.
// Otherwise, it initializes a new event filter using the provided filter parameters,
// including the event type, address, and contract. It then validates the filter configuration
// and returns the constructed event filter or an error if the filter configuration is invalid.
// The event filter is used for subscription to events.
//
// Parameters:
// - eventFilter: executiondata.EventFilter object containing filter parameters.
//
// Expected errors during normal operation:
// - codes.InvalidArgument - if the provided event filter is invalid.
func (h *Handler) getEventFilter(eventFilter *executiondata.EventFilter) (state_stream.EventFilter, error) {
if eventFilter == nil {
return state_stream.EventFilter{}, nil
}
filter, err := state_stream.NewEventFilter(
h.eventFilterConfig,
h.chain,
eventFilter.GetEventType(),
eventFilter.GetAddress(),
eventFilter.GetContract(),
)
if err != nil {
return filter, status.Errorf(codes.InvalidArgument, "invalid event filter: %v", err)
}
return filter, nil
}
func (h *Handler) GetRegisterValues(_ context.Context, request *executiondata.GetRegisterValuesRequest) (*executiondata.GetRegisterValuesResponse, error) {
// Convert data
registerIDs, err := convert.MessagesToRegisterIDs(request.GetRegisterIds(), h.chain)
if err != nil {
return nil, status.Errorf(codes.InvalidArgument, "could not convert register IDs: %v", err)
}
// get payload from store
values, err := h.api.GetRegisterValues(registerIDs, request.GetBlockHeight())
if err != nil {
return nil, rpc.ConvertError(err, "could not get register values", codes.Internal)
}
return &executiondata.GetRegisterValuesResponse{Values: values}, nil
}
// convertAccountsStatusesResultsToMessage converts account status responses to the message
func convertAccountsStatusesResultsToMessage(
eventVersion entities.EventEncodingVersion,
resp *AccountStatusesResponse,
) ([]*executiondata.SubscribeAccountStatusesResponse_Result, error) {
var results []*executiondata.SubscribeAccountStatusesResponse_Result
for address, events := range resp.AccountEvents {
convertedEvent, err := convert.EventsToMessagesWithEncodingConversion(events, entities.EventEncodingVersion_CCF_V0, eventVersion)
if err != nil {
return nil, status.Errorf(codes.Internal, "could not convert events to entity: %v", err)
}
results = append(results, &executiondata.SubscribeAccountStatusesResponse_Result{
Address: flow.HexToAddress(address).Bytes(),
Events: convertedEvent,
})
}
return results, nil
}
// sendSubscribeAccountStatusesResponseFunc defines the function signature for sending account status responses
type sendSubscribeAccountStatusesResponseFunc func(*executiondata.SubscribeAccountStatusesResponse) error
// handleAccountStatusesResponse handles account status responses by converting them to the message and sending them to the subscriber.
func (h *Handler) handleAccountStatusesResponse(
heartbeatInterval uint64,
evenVersion entities.EventEncodingVersion,
send sendSubscribeAccountStatusesResponseFunc,
) func(resp *AccountStatusesResponse) error {
if heartbeatInterval == 0 {
heartbeatInterval = h.defaultHeartbeatInterval
}
blocksSinceLastMessage := uint64(0)
messageIndex := counters.NewMonotonousCounter(0)
return func(resp *AccountStatusesResponse) error {
// check if there are any events in the response. if not, do not send a message unless the last
// response was more than HeartbeatInterval blocks ago
if len(resp.AccountEvents) == 0 {
blocksSinceLastMessage++
if blocksSinceLastMessage < heartbeatInterval {
return nil
}
blocksSinceLastMessage = 0
}
results, err := convertAccountsStatusesResultsToMessage(evenVersion, resp)
if err != nil {
return err
}
index := messageIndex.Increment()
err = send(&executiondata.SubscribeAccountStatusesResponse{
BlockId: convert.IdentifierToMessage(resp.BlockID),
BlockHeight: resp.Height,
Results: results,
MessageIndex: index,
})
if err != nil {
return rpc.ConvertError(err, "could not send response", codes.Internal)
}
return nil
}
}
// SubscribeAccountStatusesFromStartBlockID streams account statuses for all blocks starting at the requested
// start block ID, up until the latest available block. Once the latest is
// reached, the stream will remain open and responses are sent for each new
// block as it becomes available.
func (h *Handler) SubscribeAccountStatusesFromStartBlockID(
request *executiondata.SubscribeAccountStatusesFromStartBlockIDRequest,
stream executiondata.ExecutionDataAPI_SubscribeAccountStatusesFromStartBlockIDServer,
) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
startBlockID, err := convert.BlockID(request.GetStartBlockId())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not convert start block ID: %v", err)
}
statusFilter := request.GetFilter()
filter, err := state_stream.NewAccountStatusFilter(h.eventFilterConfig, h.chain, statusFilter.GetEventType(), statusFilter.GetAddress())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not create account status filter: %v", err)
}
sub := h.api.SubscribeAccountStatusesFromStartBlockID(stream.Context(), startBlockID, filter)
return subscription.HandleSubscription(sub, h.handleAccountStatusesResponse(request.HeartbeatInterval, request.GetEventEncodingVersion(), stream.Send))
}
// SubscribeAccountStatusesFromStartHeight streams account statuses for all blocks starting at the requested
// start block height, up until the latest available block. Once the latest is
// reached, the stream will remain open and responses are sent for each new
// block as it becomes available.
func (h *Handler) SubscribeAccountStatusesFromStartHeight(
request *executiondata.SubscribeAccountStatusesFromStartHeightRequest,
stream executiondata.ExecutionDataAPI_SubscribeAccountStatusesFromStartHeightServer,
) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
statusFilter := request.GetFilter()
filter, err := state_stream.NewAccountStatusFilter(h.eventFilterConfig, h.chain, statusFilter.GetEventType(), statusFilter.GetAddress())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not create account status filter: %v", err)
}
sub := h.api.SubscribeAccountStatusesFromStartHeight(stream.Context(), request.GetStartBlockHeight(), filter)
return subscription.HandleSubscription(sub, h.handleAccountStatusesResponse(request.HeartbeatInterval, request.GetEventEncodingVersion(), stream.Send))
}
// SubscribeAccountStatusesFromLatestBlock streams account statuses for all blocks starting
// at the last sealed block, up until the latest available block. Once the latest is
// reached, the stream will remain open and responses are sent for each new
// block as it becomes available.
func (h *Handler) SubscribeAccountStatusesFromLatestBlock(
request *executiondata.SubscribeAccountStatusesFromLatestBlockRequest,
stream executiondata.ExecutionDataAPI_SubscribeAccountStatusesFromLatestBlockServer,
) error {
// check if the maximum number of streams is reached
if h.StreamCount.Load() >= h.MaxStreams {
return status.Errorf(codes.ResourceExhausted, "maximum number of streams reached")
}
h.StreamCount.Add(1)
defer h.StreamCount.Add(-1)
statusFilter := request.GetFilter()
filter, err := state_stream.NewAccountStatusFilter(h.eventFilterConfig, h.chain, statusFilter.GetEventType(), statusFilter.GetAddress())
if err != nil {
return status.Errorf(codes.InvalidArgument, "could not create account status filter: %v", err)
}
sub := h.api.SubscribeAccountStatusesFromLatestBlock(stream.Context(), filter)
return subscription.HandleSubscription(sub, h.handleAccountStatusesResponse(request.HeartbeatInterval, request.GetEventEncodingVersion(), stream.Send))
}