mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-28 14:17:17 +00:00
118 lines
4.4 KiB
Go
118 lines
4.4 KiB
Go
|
package beacon
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
ptypes "github.com/gogo/protobuf/types"
|
||
|
"github.com/prysmaticlabs/prysm/beacon-chain/db/filters"
|
||
|
ethpb "github.com/prysmaticlabs/prysm/proto/eth/v1alpha1"
|
||
|
"github.com/prysmaticlabs/prysm/shared/bytesutil"
|
||
|
"github.com/prysmaticlabs/prysm/shared/pagination"
|
||
|
"github.com/prysmaticlabs/prysm/shared/params"
|
||
|
"google.golang.org/grpc/codes"
|
||
|
"google.golang.org/grpc/status"
|
||
|
)
|
||
|
|
||
|
// ListBlocks retrieves blocks by root, slot, or epoch.
|
||
|
//
|
||
|
// The server may return multiple blocks in the case that a slot or epoch is
|
||
|
// provided as the filter criteria. The server may return an empty list when
|
||
|
// no blocks in their database match the filter criteria. This RPC should
|
||
|
// not return NOT_FOUND. Only one filter criteria should be used.
|
||
|
func (bs *Server) ListBlocks(
|
||
|
ctx context.Context, req *ethpb.ListBlocksRequest,
|
||
|
) (*ethpb.ListBlocksResponse, error) {
|
||
|
if int(req.PageSize) > params.BeaconConfig().MaxPageSize {
|
||
|
return nil, status.Errorf(codes.InvalidArgument, "requested page size %d can not be greater than max size %d",
|
||
|
req.PageSize, params.BeaconConfig().MaxPageSize)
|
||
|
}
|
||
|
|
||
|
switch q := req.QueryFilter.(type) {
|
||
|
case *ethpb.ListBlocksRequest_Epoch:
|
||
|
startSlot := q.Epoch * params.BeaconConfig().SlotsPerEpoch
|
||
|
endSlot := startSlot + params.BeaconConfig().SlotsPerEpoch - 1
|
||
|
|
||
|
blks, err := bs.BeaconDB.Blocks(ctx, filters.NewFilter().SetStartSlot(startSlot).SetEndSlot(endSlot))
|
||
|
if err != nil {
|
||
|
return nil, status.Errorf(codes.Internal, "failed to get blocks: %v", err)
|
||
|
}
|
||
|
|
||
|
numBlks := len(blks)
|
||
|
if numBlks == 0 {
|
||
|
return ðpb.ListBlocksResponse{Blocks: make([]*ethpb.BeaconBlock, 0), TotalSize: 0}, nil
|
||
|
}
|
||
|
|
||
|
start, end, nextPageToken, err := pagination.StartAndEndPage(req.PageToken, int(req.PageSize), numBlks)
|
||
|
if err != nil {
|
||
|
return nil, status.Errorf(codes.Internal, "could not paginate blocks: %v", err)
|
||
|
}
|
||
|
|
||
|
return ðpb.ListBlocksResponse{
|
||
|
Blocks: blks[start:end],
|
||
|
TotalSize: int32(numBlks),
|
||
|
NextPageToken: nextPageToken,
|
||
|
}, nil
|
||
|
|
||
|
case *ethpb.ListBlocksRequest_Root:
|
||
|
blk, err := bs.BeaconDB.Block(ctx, bytesutil.ToBytes32(q.Root))
|
||
|
if err != nil {
|
||
|
return nil, status.Errorf(codes.Internal, "could not retrieve block: %v", err)
|
||
|
}
|
||
|
|
||
|
if blk == nil {
|
||
|
return ðpb.ListBlocksResponse{Blocks: []*ethpb.BeaconBlock{}, TotalSize: 0}, nil
|
||
|
}
|
||
|
|
||
|
return ðpb.ListBlocksResponse{
|
||
|
Blocks: []*ethpb.BeaconBlock{blk},
|
||
|
TotalSize: 1,
|
||
|
}, nil
|
||
|
|
||
|
case *ethpb.ListBlocksRequest_Slot:
|
||
|
blks, err := bs.BeaconDB.Blocks(ctx, filters.NewFilter().SetStartSlot(q.Slot).SetEndSlot(q.Slot))
|
||
|
if err != nil {
|
||
|
return nil, status.Errorf(codes.Internal, "could not retrieve blocks for slot %d: %v", q.Slot, err)
|
||
|
}
|
||
|
|
||
|
numBlks := len(blks)
|
||
|
if numBlks == 0 {
|
||
|
return ðpb.ListBlocksResponse{Blocks: []*ethpb.BeaconBlock{}, TotalSize: 0}, nil
|
||
|
}
|
||
|
|
||
|
start, end, nextPageToken, err := pagination.StartAndEndPage(req.PageToken, int(req.PageSize), numBlks)
|
||
|
if err != nil {
|
||
|
return nil, status.Errorf(codes.Internal, "could not paginate blocks: %v", err)
|
||
|
}
|
||
|
|
||
|
return ðpb.ListBlocksResponse{
|
||
|
Blocks: blks[start:end],
|
||
|
TotalSize: int32(numBlks),
|
||
|
NextPageToken: nextPageToken,
|
||
|
}, nil
|
||
|
}
|
||
|
|
||
|
return nil, status.Errorf(codes.InvalidArgument, "must satisfy one of the filter requirement")
|
||
|
}
|
||
|
|
||
|
// GetChainHead retrieves information about the head of the beacon chain from
|
||
|
// the view of the beacon chain node.
|
||
|
//
|
||
|
// This includes the head block slot and root as well as information about
|
||
|
// the most recent finalized and justified slots.
|
||
|
func (bs *Server) GetChainHead(ctx context.Context, _ *ptypes.Empty) (*ethpb.ChainHead, error) {
|
||
|
finalizedCheckpoint := bs.HeadFetcher.HeadState().FinalizedCheckpoint
|
||
|
justifiedCheckpoint := bs.HeadFetcher.HeadState().CurrentJustifiedCheckpoint
|
||
|
prevJustifiedCheckpoint := bs.HeadFetcher.HeadState().PreviousJustifiedCheckpoint
|
||
|
|
||
|
return ðpb.ChainHead{
|
||
|
BlockRoot: bs.HeadFetcher.HeadRoot(),
|
||
|
BlockSlot: bs.HeadFetcher.HeadSlot(),
|
||
|
FinalizedBlockRoot: finalizedCheckpoint.Root,
|
||
|
FinalizedSlot: finalizedCheckpoint.Epoch * params.BeaconConfig().SlotsPerEpoch,
|
||
|
JustifiedBlockRoot: justifiedCheckpoint.Root,
|
||
|
JustifiedSlot: justifiedCheckpoint.Epoch * params.BeaconConfig().SlotsPerEpoch,
|
||
|
PreviousJustifiedBlockRoot: prevJustifiedCheckpoint.Root,
|
||
|
PreviousJustifiedSlot: prevJustifiedCheckpoint.Epoch * params.BeaconConfig().SlotsPerEpoch,
|
||
|
}, nil
|
||
|
}
|