mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
consensusproto: add logId to addLog
This commit is contained in:
parent
5f5d3c7389
commit
5c96ca4594
4 changed files with 124 additions and 68 deletions
|
@ -4,15 +4,17 @@ package consensusclient
|
|||
import (
|
||||
"context"
|
||||
"errors"
|
||||
"sync"
|
||||
"time"
|
||||
|
||||
"go.uber.org/zap"
|
||||
|
||||
"github.com/anyproto/any-sync/app"
|
||||
"github.com/anyproto/any-sync/app/logger"
|
||||
"github.com/anyproto/any-sync/consensus/consensusproto"
|
||||
"github.com/anyproto/any-sync/net/pool"
|
||||
"github.com/anyproto/any-sync/net/rpc/rpcerr"
|
||||
"github.com/anyproto/any-sync/nodeconf"
|
||||
"go.uber.org/zap"
|
||||
"sync"
|
||||
"time"
|
||||
)
|
||||
|
||||
const CName = "consensus.consensusclient"
|
||||
|
@ -36,7 +38,7 @@ type Watcher interface {
|
|||
|
||||
type Service interface {
|
||||
// AddLog adds new log to consensus servers
|
||||
AddLog(ctx context.Context, rec *consensusproto.RawRecordWithId) (err error)
|
||||
AddLog(ctx context.Context, logId string, rec *consensusproto.RawRecordWithId) (err error)
|
||||
// DeleteLog deletes the log from the consensus node
|
||||
DeleteLog(ctx context.Context, logId string) (err error)
|
||||
// AddRecord adds new record to consensus servers
|
||||
|
@ -88,9 +90,10 @@ func (s *service) doClient(ctx context.Context, fn func(cl consensusproto.DRPCCo
|
|||
return fn(consensusproto.NewDRPCConsensusClient(dc))
|
||||
}
|
||||
|
||||
func (s *service) AddLog(ctx context.Context, rec *consensusproto.RawRecordWithId) (err error) {
|
||||
func (s *service) AddLog(ctx context.Context, logId string, rec *consensusproto.RawRecordWithId) (err error) {
|
||||
return s.doClient(ctx, func(cl consensusproto.DRPCConsensusClient) error {
|
||||
if _, err = cl.LogAdd(ctx, &consensusproto.LogAddRequest{
|
||||
LogId: logId,
|
||||
Record: rec,
|
||||
}); err != nil {
|
||||
return rpcerr.Unwrap(err)
|
||||
|
|
|
@ -3,6 +3,14 @@ package consensusclient
|
|||
import (
|
||||
"context"
|
||||
"fmt"
|
||||
"sync"
|
||||
"testing"
|
||||
"time"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"go.uber.org/mock/gomock"
|
||||
|
||||
"github.com/anyproto/any-sync/app"
|
||||
"github.com/anyproto/any-sync/consensus/consensusproto"
|
||||
"github.com/anyproto/any-sync/consensus/consensusproto/consensuserr"
|
||||
|
@ -12,12 +20,6 @@ import (
|
|||
"github.com/anyproto/any-sync/nodeconf/mock_nodeconf"
|
||||
"github.com/anyproto/any-sync/testutil/accounttest"
|
||||
"github.com/anyproto/any-sync/util/cidutil"
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/require"
|
||||
"go.uber.org/mock/gomock"
|
||||
"sync"
|
||||
"testing"
|
||||
"time"
|
||||
)
|
||||
|
||||
func TestService_Watch(t *testing.T) {
|
||||
|
@ -113,7 +115,7 @@ func TestService_Init(t *testing.T) {
|
|||
func TestService_AddLog(t *testing.T) {
|
||||
fx := newFixture(t).run(t)
|
||||
defer fx.Finish()
|
||||
assert.NoError(t, fx.AddLog(ctx, &consensusproto.RawRecordWithId{}))
|
||||
assert.NoError(t, fx.AddLog(ctx, "1", &consensusproto.RawRecordWithId{}))
|
||||
}
|
||||
|
||||
func TestService_AddRecord(t *testing.T) {
|
||||
|
|
|
@ -350,8 +350,9 @@ func (m *Ok) XXX_DiscardUnknown() {
|
|||
var xxx_messageInfo_Ok proto.InternalMessageInfo
|
||||
|
||||
type LogAddRequest struct {
|
||||
LogId string `protobuf:"bytes,1,opt,name=logId,proto3" json:"logId,omitempty"`
|
||||
// first record in the log, consensus node not sign it
|
||||
Record *RawRecordWithId `protobuf:"bytes,1,opt,name=record,proto3" json:"record,omitempty"`
|
||||
Record *RawRecordWithId `protobuf:"bytes,2,opt,name=record,proto3" json:"record,omitempty"`
|
||||
}
|
||||
|
||||
func (m *LogAddRequest) Reset() { *m = LogAddRequest{} }
|
||||
|
@ -387,6 +388,13 @@ func (m *LogAddRequest) XXX_DiscardUnknown() {
|
|||
|
||||
var xxx_messageInfo_LogAddRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *LogAddRequest) GetLogId() string {
|
||||
if m != nil {
|
||||
return m.LogId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *LogAddRequest) GetRecord() *RawRecordWithId {
|
||||
if m != nil {
|
||||
return m.Record
|
||||
|
@ -991,60 +999,59 @@ func init() {
|
|||
}
|
||||
|
||||
var fileDescriptor_b8d7f1c16b400059 = []byte{
|
||||
// 833 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0x4f, 0x8f, 0xdb, 0x54,
|
||||
0x10, 0x8f, 0xed, 0x24, 0x9b, 0x4c, 0x68, 0x62, 0xa6, 0x08, 0x99, 0x88, 0xa6, 0x91, 0xb9, 0x84,
|
||||
0x0a, 0xa5, 0x10, 0x84, 0x10, 0xaa, 0x10, 0x6a, 0x43, 0x56, 0x89, 0xe4, 0x66, 0x17, 0x97, 0x52,
|
||||
0x09, 0x24, 0x24, 0xd7, 0xef, 0xc5, 0x6b, 0xd5, 0xf5, 0x33, 0xf6, 0x4b, 0xda, 0x5c, 0xe1, 0xc8,
|
||||
0x85, 0xef, 0xc1, 0x17, 0x41, 0xe2, 0xd2, 0x23, 0x47, 0xb4, 0xfb, 0x15, 0xf8, 0x00, 0xc8, 0xcf,
|
||||
0x7f, 0xe2, 0xb5, 0x93, 0x00, 0xa2, 0x97, 0x5d, 0xcf, 0xcc, 0x6f, 0x7e, 0x33, 0xf3, 0x7b, 0xef,
|
||||
0x8d, 0x02, 0x77, 0x6d, 0xe6, 0x47, 0xd4, 0x8f, 0xd6, 0xd1, 0xee, 0x2b, 0x08, 0x19, 0x67, 0x77,
|
||||
0xc5, 0xdf, 0x82, 0x77, 0x2c, 0x1c, 0xd8, 0xcd, 0x1d, 0xe7, 0xb1, 0xad, 0x9f, 0x83, 0x62, 0x30,
|
||||
0x07, 0xbb, 0x20, 0xbb, 0x44, 0x93, 0x86, 0xd2, 0xa8, 0x6d, 0xca, 0x2e, 0xc1, 0xcf, 0xe0, 0x24,
|
||||
0xa4, 0x36, 0x0b, 0x49, 0xa4, 0x29, 0x43, 0x65, 0xd4, 0x99, 0xdc, 0x1e, 0x5f, 0x4f, 0x1c, 0x9b,
|
||||
0xd6, 0x0b, 0x53, 0x20, 0x9e, 0xb8, 0xfc, 0x62, 0x41, 0xcc, 0x0c, 0xaf, 0xff, 0x2e, 0x41, 0x3b,
|
||||
0x0f, 0xa2, 0x06, 0x27, 0x81, 0xb5, 0xf5, 0x98, 0x95, 0xb0, 0xbf, 0x61, 0x66, 0x26, 0xbe, 0x0b,
|
||||
0xed, 0xc8, 0x75, 0x7c, 0x8b, 0xaf, 0x43, 0xaa, 0xc9, 0x22, 0xb6, 0x73, 0xe0, 0x1d, 0x50, 0x2d,
|
||||
0xdb, 0xa6, 0x01, 0x67, 0xe1, 0x82, 0x50, 0x9f, 0xbb, 0x7c, 0xab, 0x29, 0x02, 0x54, 0xf1, 0xe3,
|
||||
0x07, 0xf0, 0x66, 0xe6, 0x7b, 0x94, 0x33, 0xd6, 0x05, 0xb8, 0x1a, 0x28, 0xa2, 0xbf, 0x76, 0x9f,
|
||||
0xd3, 0x88, 0x5b, 0xcf, 0x03, 0xad, 0x31, 0x94, 0x46, 0x8a, 0x59, 0x0d, 0xe8, 0xf7, 0xa0, 0x57,
|
||||
0x9a, 0xf4, 0xc8, 0x48, 0x89, 0x8a, 0x72, 0xa6, 0xa2, 0xee, 0x43, 0x33, 0x95, 0xe1, 0x6d, 0x68,
|
||||
0x06, 0x21, 0xdd, 0x2c, 0x32, 0x8d, 0x53, 0x0b, 0xfb, 0xd0, 0x72, 0xb3, 0xf1, 0x12, 0x0d, 0x72,
|
||||
0x1b, 0x11, 0xea, 0xc4, 0xe2, 0x56, 0x3a, 0xb6, 0xf8, 0x8e, 0x45, 0xe3, 0x79, 0xd3, 0x75, 0xd1,
|
||||
0xf4, 0xce, 0xa1, 0xd7, 0x41, 0x3e, 0x7b, 0xa6, 0xcf, 0xe1, 0x86, 0xc1, 0x9c, 0xfb, 0x84, 0x98,
|
||||
0xf4, 0x87, 0x35, 0x8d, 0x38, 0x7e, 0x0a, 0xcd, 0xe4, 0x70, 0x44, 0xf1, 0x7f, 0x71, 0x96, 0x29,
|
||||
0x5c, 0xff, 0x0e, 0xd4, 0xc4, 0x5f, 0x20, 0x7b, 0x0b, 0x1a, 0x1e, 0x73, 0xf2, 0x41, 0x12, 0x03,
|
||||
0x3f, 0xca, 0x4b, 0xc8, 0xa2, 0xc4, 0x3b, 0x07, 0x4b, 0xe4, 0xe4, 0x0f, 0xa1, 0x67, 0x30, 0xe7,
|
||||
0x89, 0xc5, 0xed, 0x8b, 0x8c, 0xbb, 0x0f, 0xad, 0x17, 0xb1, 0xbd, 0x20, 0x91, 0x26, 0x0d, 0x95,
|
||||
0x51, 0xdb, 0xcc, 0x6d, 0x1c, 0x00, 0xac, 0xfd, 0x3c, 0x2a, 0x8b, 0x68, 0xc1, 0xa3, 0xff, 0x2c,
|
||||
0x89, 0xb1, 0x05, 0xdf, 0x6c, 0x43, 0xfd, 0x43, 0x9d, 0x16, 0x6e, 0xb6, 0xfc, 0xdf, 0x6e, 0x36,
|
||||
0xbe, 0x0f, 0x0d, 0x1a, 0x86, 0x2c, 0x14, 0x27, 0xd2, 0x99, 0xdc, 0x2c, 0x27, 0xce, 0xc2, 0xd0,
|
||||
0x4c, 0x10, 0xfa, 0x08, 0x54, 0x83, 0x39, 0x5f, 0x52, 0x8f, 0x72, 0x7a, 0x54, 0x39, 0xfd, 0x13,
|
||||
0x50, 0x66, 0x61, 0x88, 0xe3, 0x8c, 0x3b, 0x0e, 0x76, 0x27, 0xda, 0x1e, 0xee, 0x29, 0x23, 0x34,
|
||||
0xca, 0x0a, 0xfc, 0x28, 0xc3, 0x4d, 0x83, 0x39, 0x8f, 0xb6, 0xbe, 0x3d, 0x65, 0x3e, 0xa7, 0x3e,
|
||||
0xff, 0xc6, 0xf2, 0xd6, 0x14, 0xbf, 0x00, 0xb8, 0xa0, 0x16, 0x79, 0x1c, 0x10, 0x8b, 0xd3, 0xf4,
|
||||
0xbc, 0x6f, 0x95, 0xc9, 0x0c, 0xe6, 0xcc, 0x73, 0xd0, 0xbc, 0x66, 0x16, 0x52, 0x70, 0x09, 0xbd,
|
||||
0xd5, 0xda, 0xf3, 0x62, 0xe2, 0xb4, 0xf1, 0xf4, 0x48, 0xf5, 0x3d, 0x2c, 0xa7, 0xd7, 0x91, 0xf3,
|
||||
0x9a, 0x59, 0x4e, 0xc6, 0xaf, 0x40, 0xdd, 0xb9, 0xa2, 0x20, 0xa6, 0x48, 0xf5, 0x7b, 0xef, 0x28,
|
||||
0x61, 0x02, 0x9d, 0xd7, 0xcc, 0x4a, 0xfa, 0x83, 0x13, 0x68, 0x6c, 0xe2, 0x61, 0xf5, 0x2d, 0x74,
|
||||
0x53, 0x0d, 0x1e, 0xd2, 0x28, 0xb2, 0x1c, 0x5a, 0xd9, 0x63, 0x85, 0xb7, 0x2a, 0x5f, 0x7f, 0xab,
|
||||
0x9f, 0xc3, 0x89, 0x9d, 0x08, 0x77, 0xa4, 0x9d, 0xb2, 0xbc, 0x66, 0x96, 0xa3, 0x7f, 0x2f, 0x6e,
|
||||
0xdb, 0x4e, 0xc5, 0xf8, 0xb5, 0xc6, 0x2a, 0xa6, 0xb5, 0xc5, 0xf7, 0xff, 0xb8, 0x6b, 0xba, 0x0d,
|
||||
0x58, 0xd5, 0xf7, 0x75, 0x17, 0x21, 0xe2, 0x0e, 0x95, 0x35, 0x7f, 0xcd, 0x55, 0xee, 0xfc, 0x24,
|
||||
0x41, 0x2b, 0xbb, 0xbe, 0xd8, 0x05, 0x78, 0xec, 0xd3, 0x97, 0x01, 0xb5, 0x39, 0x25, 0x6a, 0x0d,
|
||||
0x6f, 0x40, 0xdb, 0x60, 0xce, 0xec, 0xa5, 0x1b, 0xf1, 0x48, 0x95, 0xb0, 0x07, 0x1d, 0x83, 0x39,
|
||||
0x4b, 0xc6, 0x4f, 0xd9, 0xda, 0x27, 0xaa, 0x8c, 0x08, 0xdd, 0x84, 0x75, 0xca, 0xfc, 0x95, 0xe7,
|
||||
0xda, 0x5c, 0x55, 0xe2, 0x9c, 0x53, 0x16, 0x3e, 0x75, 0x09, 0xa1, 0xbe, 0x5a, 0x8f, 0x21, 0x0b,
|
||||
0x7f, 0x63, 0x79, 0x2e, 0x39, 0x4f, 0xce, 0x56, 0x6d, 0xa0, 0x0a, 0x9d, 0x59, 0xfc, 0x4e, 0xce,
|
||||
0x56, 0xab, 0x88, 0x72, 0xf5, 0x2f, 0x65, 0xf2, 0xab, 0x0c, 0xed, 0x69, 0xd6, 0x31, 0xde, 0x83,
|
||||
0x66, 0xb2, 0x23, 0x71, 0xdf, 0xe3, 0xd8, 0xad, 0xbb, 0x3e, 0x96, 0xc3, 0x67, 0xcf, 0x70, 0x09,
|
||||
0xed, 0x7c, 0x2d, 0xe2, 0xb0, 0xa2, 0x43, 0x69, 0x63, 0xf6, 0xff, 0x49, 0x29, 0x5c, 0x42, 0x2b,
|
||||
0xdb, 0x5c, 0x78, 0x7b, 0x4f, 0x3b, 0xc5, 0x1d, 0xd9, 0xbf, 0x75, 0x08, 0x20, 0x96, 0xde, 0x48,
|
||||
0xfa, 0x50, 0xc2, 0xfb, 0x42, 0xd3, 0x64, 0xf9, 0x54, 0xfb, 0x2b, 0xef, 0xa5, 0x7d, 0x23, 0x3e,
|
||||
0x98, 0xfc, 0x76, 0x39, 0x90, 0x5e, 0x5d, 0x0e, 0xa4, 0x3f, 0x2f, 0x07, 0xd2, 0x2f, 0x57, 0x83,
|
||||
0xda, 0xab, 0xab, 0x41, 0xed, 0x8f, 0xab, 0x41, 0xed, 0x5b, 0xed, 0xd0, 0x2f, 0x8e, 0xa7, 0x4d,
|
||||
0xf1, 0xef, 0xe3, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x75, 0xd4, 0x24, 0x0c, 0x94, 0x08, 0x00,
|
||||
0x00,
|
||||
// 830 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xdd, 0x8e, 0xdb, 0x54,
|
||||
0x10, 0x8e, 0xed, 0xfc, 0x4e, 0x68, 0x62, 0xa6, 0x08, 0x99, 0x88, 0xa6, 0x91, 0xb9, 0x09, 0x15,
|
||||
0x4a, 0x21, 0x08, 0x21, 0x54, 0x21, 0xd4, 0x86, 0xac, 0x12, 0xc9, 0xcd, 0x2e, 0x2e, 0xa5, 0x12,
|
||||
0x48, 0x48, 0xae, 0xcf, 0x89, 0xd7, 0xaa, 0xeb, 0x63, 0xec, 0x93, 0xb4, 0xb9, 0x85, 0x4b, 0x6e,
|
||||
0x78, 0x0f, 0x5e, 0x04, 0x89, 0x9b, 0x5e, 0x72, 0x89, 0x76, 0x5f, 0x81, 0x07, 0x40, 0x3e, 0xfe,
|
||||
0x49, 0xd6, 0x4e, 0x52, 0x50, 0xf7, 0x66, 0xd7, 0x33, 0xf3, 0xcd, 0x37, 0x73, 0xbe, 0x73, 0x66,
|
||||
0x14, 0xb8, 0x6b, 0x33, 0x3f, 0xa2, 0x7e, 0xb4, 0x8a, 0xb6, 0x5f, 0x41, 0xc8, 0x38, 0xbb, 0x2b,
|
||||
0xfe, 0xee, 0x78, 0x47, 0xc2, 0x81, 0x9d, 0xdc, 0x71, 0x16, 0xdb, 0xfa, 0x19, 0x28, 0x06, 0x73,
|
||||
0xb0, 0x03, 0xb2, 0x4b, 0x34, 0x69, 0x20, 0x0d, 0x5b, 0xa6, 0xec, 0x12, 0xfc, 0x02, 0x1a, 0x21,
|
||||
0xb5, 0x59, 0x48, 0x22, 0x4d, 0x19, 0x28, 0xc3, 0xf6, 0xf8, 0xf6, 0xe8, 0x6a, 0xe2, 0xc8, 0xb4,
|
||||
0x5e, 0x98, 0x02, 0xf1, 0xc4, 0xe5, 0xe7, 0x73, 0x62, 0x66, 0x78, 0xfd, 0x4f, 0x09, 0x5a, 0x79,
|
||||
0x10, 0x35, 0x68, 0x04, 0xd6, 0xc6, 0x63, 0x56, 0xc2, 0xfe, 0x96, 0x99, 0x99, 0xf8, 0x3e, 0xb4,
|
||||
0x22, 0xd7, 0xf1, 0x2d, 0xbe, 0x0a, 0xa9, 0x26, 0x8b, 0xd8, 0xd6, 0x81, 0x77, 0x40, 0xb5, 0x6c,
|
||||
0x9b, 0x06, 0x9c, 0x85, 0x73, 0x42, 0x7d, 0xee, 0xf2, 0x8d, 0xa6, 0x08, 0x50, 0xc9, 0x8f, 0x1f,
|
||||
0xc1, 0xdb, 0x99, 0xef, 0x51, 0xce, 0x58, 0x15, 0xe0, 0x72, 0x60, 0x17, 0xfd, 0xad, 0xfb, 0x9c,
|
||||
0x46, 0xdc, 0x7a, 0x1e, 0x68, 0xb5, 0x81, 0x34, 0x54, 0xcc, 0x72, 0x40, 0xbf, 0x07, 0xdd, 0xc2,
|
||||
0x49, 0x8f, 0x1c, 0x29, 0x51, 0x51, 0xce, 0x54, 0xd4, 0x7d, 0xa8, 0xa7, 0x32, 0xbc, 0x0b, 0xf5,
|
||||
0x20, 0xa4, 0xeb, 0x79, 0xa6, 0x71, 0x6a, 0x61, 0x0f, 0x9a, 0x6e, 0x76, 0xbc, 0x44, 0x83, 0xdc,
|
||||
0x46, 0x84, 0x2a, 0xb1, 0xb8, 0x95, 0x1e, 0x5b, 0x7c, 0xc7, 0xa2, 0xf1, 0xbc, 0xe9, 0xaa, 0x68,
|
||||
0x7a, 0xeb, 0xd0, 0xab, 0x20, 0x9f, 0x3e, 0xd3, 0x7f, 0x84, 0x1b, 0x06, 0x73, 0xee, 0x13, 0x62,
|
||||
0xd2, 0x9f, 0x56, 0x34, 0xe2, 0xf8, 0x0e, 0xd4, 0x3c, 0xe6, 0xe4, 0xb5, 0x13, 0x03, 0x3f, 0x87,
|
||||
0x7a, 0x72, 0x65, 0xa2, 0xf0, 0x7f, 0xb8, 0xe1, 0x14, 0xae, 0xff, 0x00, 0x6a, 0xe2, 0x7f, 0x6d,
|
||||
0x89, 0x4f, 0x0a, 0x25, 0xde, 0x3b, 0x58, 0x22, 0x27, 0x7f, 0x08, 0x5d, 0x83, 0x39, 0x4f, 0x2c,
|
||||
0x6e, 0x9f, 0x67, 0xdc, 0x3d, 0x68, 0xbe, 0x88, 0xed, 0x39, 0x89, 0x34, 0x69, 0xa0, 0x0c, 0x5b,
|
||||
0x66, 0x6e, 0x63, 0x1f, 0x60, 0xe5, 0xe7, 0x51, 0x59, 0x44, 0x77, 0x3c, 0xfa, 0xaf, 0x92, 0x10,
|
||||
0x43, 0xf0, 0x4d, 0xd7, 0xd4, 0x3f, 0xd4, 0xe9, 0xce, 0x7b, 0x97, 0xff, 0xdf, 0x7b, 0xc7, 0x0f,
|
||||
0xa1, 0x46, 0xc3, 0x90, 0x85, 0xe2, 0x9e, 0xda, 0xe3, 0x9b, 0xc5, 0xc4, 0x69, 0x18, 0x9a, 0x09,
|
||||
0x42, 0x1f, 0x82, 0x6a, 0x30, 0xe7, 0x6b, 0xea, 0x51, 0x4e, 0x8f, 0x2a, 0xa7, 0x7f, 0x06, 0xca,
|
||||
0x34, 0x0c, 0x71, 0x94, 0x71, 0xc7, 0xc1, 0xce, 0x58, 0xdb, 0xc3, 0x3d, 0x61, 0x84, 0x46, 0x59,
|
||||
0x81, 0x9f, 0x65, 0xb8, 0x69, 0x30, 0xe7, 0xd1, 0xc6, 0xb7, 0x27, 0xcc, 0xe7, 0xd4, 0xe7, 0xdf,
|
||||
0x59, 0xde, 0x8a, 0xe2, 0x57, 0x00, 0xe7, 0xd4, 0x22, 0x8f, 0x03, 0x62, 0x71, 0x2a, 0xc8, 0xda,
|
||||
0xe3, 0x5b, 0x45, 0x32, 0x83, 0x39, 0xb3, 0x1c, 0x34, 0xab, 0x98, 0x3b, 0x29, 0xb8, 0x80, 0xee,
|
||||
0x72, 0xe5, 0x79, 0x31, 0x71, 0xda, 0x78, 0x7a, 0xa5, 0xfa, 0x1e, 0x96, 0x93, 0xab, 0xc8, 0x59,
|
||||
0xc5, 0x2c, 0x26, 0xe3, 0x37, 0xa0, 0x6e, 0x5d, 0x51, 0x10, 0x53, 0xa4, 0xfa, 0x7d, 0x70, 0x94,
|
||||
0x30, 0x81, 0xce, 0x2a, 0x66, 0x29, 0xfd, 0x41, 0x03, 0x6a, 0xeb, 0xf8, 0xb0, 0xfa, 0x06, 0x3a,
|
||||
0xa9, 0x06, 0x0f, 0x69, 0x14, 0x59, 0x0e, 0x2d, 0x6d, 0xb7, 0x9d, 0x09, 0x96, 0xaf, 0x4e, 0xf0,
|
||||
0x97, 0xd0, 0xb0, 0x13, 0xe1, 0x8e, 0xb4, 0x53, 0x94, 0xd7, 0xcc, 0x72, 0xd2, 0xd1, 0xdb, 0xaa,
|
||||
0x18, 0xcf, 0x70, 0xac, 0x62, 0x5a, 0x5b, 0x7c, 0xbf, 0xc1, 0x5b, 0xd3, 0x6d, 0xc0, 0xb2, 0xbe,
|
||||
0xd7, 0x5d, 0x84, 0x88, 0x37, 0x54, 0xd4, 0xfc, 0x9a, 0xab, 0xdc, 0xf9, 0x45, 0x82, 0x66, 0xf6,
|
||||
0x7c, 0xb1, 0x03, 0xf0, 0xd8, 0xa7, 0x2f, 0x03, 0x6a, 0x73, 0x4a, 0xd4, 0x0a, 0xde, 0x80, 0x96,
|
||||
0xc1, 0x9c, 0xe9, 0x4b, 0x37, 0xe2, 0x91, 0x2a, 0x61, 0x17, 0xda, 0x06, 0x73, 0x16, 0x8c, 0x9f,
|
||||
0xb0, 0x95, 0x4f, 0x54, 0x19, 0x11, 0x3a, 0x09, 0xeb, 0x84, 0xf9, 0x4b, 0xcf, 0xb5, 0xb9, 0xaa,
|
||||
0xc4, 0x39, 0x27, 0x2c, 0x7c, 0xea, 0x12, 0x42, 0x7d, 0xb5, 0x1a, 0x43, 0xe6, 0xfe, 0xda, 0xf2,
|
||||
0x5c, 0x72, 0x96, 0xdc, 0xad, 0x5a, 0x43, 0x15, 0xda, 0xd3, 0x78, 0x4e, 0x4e, 0x97, 0xcb, 0x88,
|
||||
0x72, 0xf5, 0x1f, 0x65, 0xfc, 0xbb, 0x0c, 0xad, 0x49, 0xd6, 0x31, 0xde, 0x83, 0x7a, 0xb2, 0x39,
|
||||
0x71, 0xdf, 0x70, 0x6c, 0xd7, 0x5d, 0x0f, 0x8b, 0xe1, 0xd3, 0x67, 0xb8, 0x80, 0x56, 0xbe, 0x16,
|
||||
0x71, 0x50, 0xd2, 0xa1, 0xb0, 0x31, 0x7b, 0xaf, 0x53, 0x0a, 0x17, 0xd0, 0xcc, 0x36, 0x17, 0xde,
|
||||
0xde, 0xd3, 0xce, 0xee, 0x8e, 0xec, 0xdd, 0x3a, 0x04, 0x10, 0x4b, 0x6f, 0x28, 0x7d, 0x2c, 0xe1,
|
||||
0x7d, 0xa1, 0x69, 0xb2, 0x7c, 0xca, 0xfd, 0x15, 0xf7, 0xd2, 0xbe, 0x23, 0x3e, 0x18, 0xff, 0x71,
|
||||
0xd1, 0x97, 0x5e, 0x5d, 0xf4, 0xa5, 0xbf, 0x2f, 0xfa, 0xd2, 0x6f, 0x97, 0xfd, 0xca, 0xab, 0xcb,
|
||||
0x7e, 0xe5, 0xaf, 0xcb, 0x7e, 0xe5, 0x7b, 0xed, 0xd0, 0xef, 0x90, 0xa7, 0x75, 0xf1, 0xef, 0xd3,
|
||||
0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x12, 0x81, 0xbd, 0x26, 0xaa, 0x08, 0x00, 0x00,
|
||||
}
|
||||
|
||||
func (m *Log) Marshal() (dAtA []byte, err error) {
|
||||
|
@ -1286,6 +1293,13 @@ func (m *LogAddRequest) MarshalToSizedBuffer(dAtA []byte) (int, error) {
|
|||
i = encodeVarintConsensus(dAtA, i, uint64(size))
|
||||
}
|
||||
i--
|
||||
dAtA[i] = 0x12
|
||||
}
|
||||
if len(m.LogId) > 0 {
|
||||
i -= len(m.LogId)
|
||||
copy(dAtA[i:], m.LogId)
|
||||
i = encodeVarintConsensus(dAtA, i, uint64(len(m.LogId)))
|
||||
i--
|
||||
dAtA[i] = 0xa
|
||||
}
|
||||
return len(dAtA) - i, nil
|
||||
|
@ -1878,6 +1892,10 @@ func (m *LogAddRequest) Size() (n int) {
|
|||
}
|
||||
var l int
|
||||
_ = l
|
||||
l = len(m.LogId)
|
||||
if l > 0 {
|
||||
n += 1 + l + sovConsensus(uint64(l))
|
||||
}
|
||||
if m.Record != nil {
|
||||
l = m.Record.Size()
|
||||
n += 1 + l + sovConsensus(uint64(l))
|
||||
|
@ -2789,6 +2807,38 @@ func (m *LogAddRequest) Unmarshal(dAtA []byte) error {
|
|||
}
|
||||
switch fieldNum {
|
||||
case 1:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field LogId", wireType)
|
||||
}
|
||||
var stringLen uint64
|
||||
for shift := uint(0); ; shift += 7 {
|
||||
if shift >= 64 {
|
||||
return ErrIntOverflowConsensus
|
||||
}
|
||||
if iNdEx >= l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
b := dAtA[iNdEx]
|
||||
iNdEx++
|
||||
stringLen |= uint64(b&0x7F) << shift
|
||||
if b < 0x80 {
|
||||
break
|
||||
}
|
||||
}
|
||||
intStringLen := int(stringLen)
|
||||
if intStringLen < 0 {
|
||||
return ErrInvalidLengthConsensus
|
||||
}
|
||||
postIndex := iNdEx + intStringLen
|
||||
if postIndex < 0 {
|
||||
return ErrInvalidLengthConsensus
|
||||
}
|
||||
if postIndex > l {
|
||||
return io.ErrUnexpectedEOF
|
||||
}
|
||||
m.LogId = string(dAtA[iNdEx:postIndex])
|
||||
iNdEx = postIndex
|
||||
case 2:
|
||||
if wireType != 2 {
|
||||
return fmt.Errorf("proto: wrong wireType = %d for field Record", wireType)
|
||||
}
|
||||
|
|
|
@ -57,8 +57,9 @@ service Consensus {
|
|||
message Ok {}
|
||||
|
||||
message LogAddRequest {
|
||||
string logId = 1;
|
||||
// first record in the log, consensus node not sign it
|
||||
RawRecordWithId record = 1;
|
||||
RawRecordWithId record = 2;
|
||||
}
|
||||
|
||||
message RecordAddRequest {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue