mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2025-01-07 03:22:18 +00:00
e3f3dd3c9b
* Initial commit * Add sentry gRPC interface * p2psentry directory * Update README.md * Update README.md * Update README.md * Add go package * Correct syntax * add external downloader interface (#2) * Add txpool (#3) * Add private API (#4) * Invert control.proto, add PeerMinBlock, Separare incoming Tx message into a separate stream (#5) Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local> * Separate upload messages into its own stream (#6) Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local> * Only send changed accounts to listeners (#7) * Txpool interface doc (#9) * Add architecture diagram source and picture (#10) * Typed hashes (#11) * Typed hashes * Fix PeerId * 64-bit tx nonce * Add proper golang packages, max_block into p2p sentry Status (#12) * Add proper golang packages, max_block into p2p sentry Status * Change EtherReply to address Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local> * Add Rust infrastructure (#13) * DB stats methods removed by https://github.com/ledgerwatch/turbo-geth/pull/1665 * more p2p methods (#15) * add mining methods (#16) * First draft of Consensus gRPC interface (#14) * Update Rust build * Fix interfaces in architecture diagram (#17) * Fix KV interface provider * Fix Consensus interface provider * drop java attributes (#18) * tx pool remove unused import (#19) * ethbackend: add protocol version and client version (#20) * Add missing ethbackend I/F (#21) * Add interface versioning mechanism (#23) Add versioning in KV interface Co-authored-by: Artem Vorotnikov <artem@vorotnikov.me> * spec of tx pool method (#24) * spec of tx pool method (#25) * Update version.proto * Refactor interface versioning * Refactor interface versioning * Testing interface * Remove tree * Fix * Build testing protos * Fix * Fix * Update to the newer interfaces * Add ProtocolVersion and ClientVersion stubs * Hook up ProtocolVersion and ClientVersion * Remove service * Add compatibility checks for RPC daemon * Fix typos * Properly update DB schema version * Fix test * Add test for KV compatibility| * Info messages about compability for RPC daemon * DB schema version to be one key * Update release intructions Co-authored-by: Artem Vorotnikov <artem@vorotnikov.me> Co-authored-by: b00ris <b00ris@mail.ru> Co-authored-by: Alexey Sharp <alexeysharp@Alexeys-iMac.local> Co-authored-by: lightclient <14004106+lightclient@users.noreply.github.com> Co-authored-by: canepat <16927169+canepat@users.noreply.github.com> Co-authored-by: Alex Sharov <AskAlexSharov@gmail.com> Co-authored-by: canepat <tullio.canepa@gmail.com> Co-authored-by: Alex Sharp <alexsharp@Alexs-MacBook-Pro.local>
177 lines
4.9 KiB
Go
177 lines
4.9 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
|
|
package remote
|
|
|
|
import (
|
|
context "context"
|
|
types "github.com/ledgerwatch/turbo-geth/gointerfaces/types"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
emptypb "google.golang.org/protobuf/types/known/emptypb"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.32.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion7
|
|
|
|
// KVClient is the client API for KV service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
type KVClient interface {
|
|
// Version returns the service version number
|
|
Version(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*types.VersionReply, error)
|
|
// Tx exposes read-only transactions for the key-value store
|
|
Tx(ctx context.Context, opts ...grpc.CallOption) (KV_TxClient, error)
|
|
}
|
|
|
|
type kVClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewKVClient(cc grpc.ClientConnInterface) KVClient {
|
|
return &kVClient{cc}
|
|
}
|
|
|
|
func (c *kVClient) Version(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*types.VersionReply, error) {
|
|
out := new(types.VersionReply)
|
|
err := c.cc.Invoke(ctx, "/remote.KV/Version", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *kVClient) Tx(ctx context.Context, opts ...grpc.CallOption) (KV_TxClient, error) {
|
|
stream, err := c.cc.NewStream(ctx, &KV_ServiceDesc.Streams[0], "/remote.KV/Tx", opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
x := &kVTxClient{stream}
|
|
return x, nil
|
|
}
|
|
|
|
type KV_TxClient interface {
|
|
Send(*Cursor) error
|
|
Recv() (*Pair, error)
|
|
grpc.ClientStream
|
|
}
|
|
|
|
type kVTxClient struct {
|
|
grpc.ClientStream
|
|
}
|
|
|
|
func (x *kVTxClient) Send(m *Cursor) error {
|
|
return x.ClientStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *kVTxClient) Recv() (*Pair, error) {
|
|
m := new(Pair)
|
|
if err := x.ClientStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
// KVServer is the server API for KV service.
|
|
// All implementations must embed UnimplementedKVServer
|
|
// for forward compatibility
|
|
type KVServer interface {
|
|
// Version returns the service version number
|
|
Version(context.Context, *emptypb.Empty) (*types.VersionReply, error)
|
|
// Tx exposes read-only transactions for the key-value store
|
|
Tx(KV_TxServer) error
|
|
mustEmbedUnimplementedKVServer()
|
|
}
|
|
|
|
// UnimplementedKVServer must be embedded to have forward compatible implementations.
|
|
type UnimplementedKVServer struct {
|
|
}
|
|
|
|
func (UnimplementedKVServer) Version(context.Context, *emptypb.Empty) (*types.VersionReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Version not implemented")
|
|
}
|
|
func (UnimplementedKVServer) Tx(KV_TxServer) error {
|
|
return status.Errorf(codes.Unimplemented, "method Tx not implemented")
|
|
}
|
|
func (UnimplementedKVServer) mustEmbedUnimplementedKVServer() {}
|
|
|
|
// UnsafeKVServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to KVServer will
|
|
// result in compilation errors.
|
|
type UnsafeKVServer interface {
|
|
mustEmbedUnimplementedKVServer()
|
|
}
|
|
|
|
func RegisterKVServer(s grpc.ServiceRegistrar, srv KVServer) {
|
|
s.RegisterService(&KV_ServiceDesc, srv)
|
|
}
|
|
|
|
func _KV_Version_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(emptypb.Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(KVServer).Version(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/remote.KV/Version",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(KVServer).Version(ctx, req.(*emptypb.Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _KV_Tx_Handler(srv interface{}, stream grpc.ServerStream) error {
|
|
return srv.(KVServer).Tx(&kVTxServer{stream})
|
|
}
|
|
|
|
type KV_TxServer interface {
|
|
Send(*Pair) error
|
|
Recv() (*Cursor, error)
|
|
grpc.ServerStream
|
|
}
|
|
|
|
type kVTxServer struct {
|
|
grpc.ServerStream
|
|
}
|
|
|
|
func (x *kVTxServer) Send(m *Pair) error {
|
|
return x.ServerStream.SendMsg(m)
|
|
}
|
|
|
|
func (x *kVTxServer) Recv() (*Cursor, error) {
|
|
m := new(Cursor)
|
|
if err := x.ServerStream.RecvMsg(m); err != nil {
|
|
return nil, err
|
|
}
|
|
return m, nil
|
|
}
|
|
|
|
// KV_ServiceDesc is the grpc.ServiceDesc for KV service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var KV_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "remote.KV",
|
|
HandlerType: (*KVServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Version",
|
|
Handler: _KV_Version_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{
|
|
{
|
|
StreamName: "Tx",
|
|
Handler: _KV_Tx_Handler,
|
|
ServerStreams: true,
|
|
ClientStreams: true,
|
|
},
|
|
},
|
|
Metadata: "remote/kv.proto",
|
|
}
|