mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
495e92ce9f
* add maxprocs * add prereqs * add tos and version pkg * add in all runtime packages Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
133 lines
4.4 KiB
Go
133 lines
4.4 KiB
Go
package debug
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/prysmaticlabs/prysm/beacon-chain/rpc/eth/helpers"
|
|
statev2 "github.com/prysmaticlabs/prysm/beacon-chain/state/v2"
|
|
ethpbv1 "github.com/prysmaticlabs/prysm/proto/eth/v1"
|
|
ethpbv2 "github.com/prysmaticlabs/prysm/proto/eth/v2"
|
|
"github.com/prysmaticlabs/prysm/proto/migration"
|
|
"github.com/prysmaticlabs/prysm/runtime/version"
|
|
"go.opencensus.io/trace"
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
"google.golang.org/protobuf/types/known/emptypb"
|
|
)
|
|
|
|
// GetBeaconState returns the full beacon state for a given state ID.
|
|
func (ds *Server) GetBeaconState(ctx context.Context, req *ethpbv1.StateRequest) (*ethpbv1.BeaconStateResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "debug.GetBeaconState")
|
|
defer span.End()
|
|
|
|
state, err := ds.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, helpers.PrepareStateFetchGRPCError(err)
|
|
}
|
|
|
|
protoState, err := state.ToProto()
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not convert state to proto: %v", err)
|
|
}
|
|
|
|
return ðpbv1.BeaconStateResponse{
|
|
Data: protoState,
|
|
}, nil
|
|
}
|
|
|
|
// GetBeaconStateSSZ returns the SSZ-serialized version of the full beacon state object for given state ID.
|
|
func (ds *Server) GetBeaconStateSSZ(ctx context.Context, req *ethpbv1.StateRequest) (*ethpbv1.BeaconStateSSZResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "debug.GetBeaconStateSSZ")
|
|
defer span.End()
|
|
|
|
state, err := ds.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, helpers.PrepareStateFetchGRPCError(err)
|
|
}
|
|
|
|
sszState, err := state.MarshalSSZ()
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not marshal state into SSZ: %v", err)
|
|
}
|
|
|
|
return ðpbv1.BeaconStateSSZResponse{Data: sszState}, nil
|
|
}
|
|
|
|
// GetBeaconStateV2 returns the full beacon state for a given state ID.
|
|
func (ds *Server) GetBeaconStateV2(ctx context.Context, req *ethpbv2.StateRequestV2) (*ethpbv2.BeaconStateResponseV2, error) {
|
|
ctx, span := trace.StartSpan(ctx, "debug.GetBeaconStateV2")
|
|
defer span.End()
|
|
|
|
state, err := ds.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, helpers.PrepareStateFetchGRPCError(err)
|
|
}
|
|
switch state.Version() {
|
|
case version.Phase0:
|
|
protoState, err := state.ToProto()
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not convert state to proto: %v", err)
|
|
}
|
|
return ðpbv2.BeaconStateResponseV2{
|
|
Version: ethpbv2.Version_PHASE0,
|
|
Data: ðpbv2.BeaconStateContainer{
|
|
State: ðpbv2.BeaconStateContainer_Phase0State{Phase0State: protoState},
|
|
},
|
|
}, nil
|
|
case version.Altair:
|
|
altairState, ok := state.(*statev2.BeaconState)
|
|
if !ok {
|
|
return nil, status.Error(codes.Internal, "Altair state type assertion failed")
|
|
}
|
|
protoState, err := migration.BeaconStateAltairToV2(altairState)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not convert state to proto: %v", err)
|
|
}
|
|
return ðpbv2.BeaconStateResponseV2{
|
|
Version: ethpbv2.Version_ALTAIR,
|
|
Data: ðpbv2.BeaconStateContainer{
|
|
State: ðpbv2.BeaconStateContainer_AltairState{AltairState: protoState},
|
|
},
|
|
}, nil
|
|
default:
|
|
return nil, status.Error(codes.Internal, "Unsupported state version")
|
|
}
|
|
}
|
|
|
|
// GetBeaconStateSSZV2 returns the SSZ-serialized version of the full beacon state object for given state ID.
|
|
func (ds *Server) GetBeaconStateSSZV2(ctx context.Context, req *ethpbv2.StateRequestV2) (*ethpbv2.BeaconStateSSZResponseV2, error) {
|
|
ctx, span := trace.StartSpan(ctx, "debug.GetBeaconStateSSZV2")
|
|
defer span.End()
|
|
|
|
state, err := ds.StateFetcher.State(ctx, req.StateId)
|
|
if err != nil {
|
|
return nil, helpers.PrepareStateFetchGRPCError(err)
|
|
}
|
|
|
|
sszState, err := state.MarshalSSZ()
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "Could not marshal state into SSZ: %v", err)
|
|
}
|
|
|
|
return ðpbv2.BeaconStateSSZResponseV2{Data: sszState}, nil
|
|
}
|
|
|
|
// ListForkChoiceHeads retrieves the fork choice leaves for the current head.
|
|
func (ds *Server) ListForkChoiceHeads(ctx context.Context, _ *emptypb.Empty) (*ethpbv1.ForkChoiceHeadsResponse, error) {
|
|
ctx, span := trace.StartSpan(ctx, "debug.ListForkChoiceHeads")
|
|
defer span.End()
|
|
|
|
headRoots, headSlots := ds.HeadFetcher.ChainHeads()
|
|
resp := ðpbv1.ForkChoiceHeadsResponse{
|
|
Data: make([]*ethpbv1.ForkChoiceHead, len(headRoots)),
|
|
}
|
|
for i := range headRoots {
|
|
resp.Data[i] = ðpbv1.ForkChoiceHead{
|
|
Root: headRoots[i][:],
|
|
Slot: headSlots[i],
|
|
}
|
|
}
|
|
|
|
return resp, nil
|
|
}
|