mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-03-13 11:09:23 +01:00
lnrpc add new RPC 'Quiesce' to protobuf definitions
This commit is contained in:
parent
7a5b55a473
commit
99f5ca4018
8 changed files with 398 additions and 21 deletions
|
@ -59,6 +59,103 @@ func (*ImportGraphResponse) Descriptor() ([]byte, []int) {
|
|||
return file_devrpc_dev_proto_rawDescGZIP(), []int{0}
|
||||
}
|
||||
|
||||
type QuiescenceRequest struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
// The channel point of the channel we wish to quiesce
|
||||
ChanId *lnrpc.ChannelPoint `protobuf:"bytes,1,opt,name=chan_id,json=chanId,proto3" json:"chan_id,omitempty"`
|
||||
}
|
||||
|
||||
func (x *QuiescenceRequest) Reset() {
|
||||
*x = QuiescenceRequest{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_devrpc_dev_proto_msgTypes[1]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *QuiescenceRequest) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*QuiescenceRequest) ProtoMessage() {}
|
||||
|
||||
func (x *QuiescenceRequest) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_devrpc_dev_proto_msgTypes[1]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use QuiescenceRequest.ProtoReflect.Descriptor instead.
|
||||
func (*QuiescenceRequest) Descriptor() ([]byte, []int) {
|
||||
return file_devrpc_dev_proto_rawDescGZIP(), []int{1}
|
||||
}
|
||||
|
||||
func (x *QuiescenceRequest) GetChanId() *lnrpc.ChannelPoint {
|
||||
if x != nil {
|
||||
return x.ChanId
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type QuiescenceResponse struct {
|
||||
state protoimpl.MessageState
|
||||
sizeCache protoimpl.SizeCache
|
||||
unknownFields protoimpl.UnknownFields
|
||||
|
||||
// Indicates whether or not we hold the initiator role or not once the
|
||||
// negotiation completes
|
||||
Initiator bool `protobuf:"varint,1,opt,name=initiator,proto3" json:"initiator,omitempty"`
|
||||
}
|
||||
|
||||
func (x *QuiescenceResponse) Reset() {
|
||||
*x = QuiescenceResponse{}
|
||||
if protoimpl.UnsafeEnabled {
|
||||
mi := &file_devrpc_dev_proto_msgTypes[2]
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
}
|
||||
|
||||
func (x *QuiescenceResponse) String() string {
|
||||
return protoimpl.X.MessageStringOf(x)
|
||||
}
|
||||
|
||||
func (*QuiescenceResponse) ProtoMessage() {}
|
||||
|
||||
func (x *QuiescenceResponse) ProtoReflect() protoreflect.Message {
|
||||
mi := &file_devrpc_dev_proto_msgTypes[2]
|
||||
if protoimpl.UnsafeEnabled && x != nil {
|
||||
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
||||
if ms.LoadMessageInfo() == nil {
|
||||
ms.StoreMessageInfo(mi)
|
||||
}
|
||||
return ms
|
||||
}
|
||||
return mi.MessageOf(x)
|
||||
}
|
||||
|
||||
// Deprecated: Use QuiescenceResponse.ProtoReflect.Descriptor instead.
|
||||
func (*QuiescenceResponse) Descriptor() ([]byte, []int) {
|
||||
return file_devrpc_dev_proto_rawDescGZIP(), []int{2}
|
||||
}
|
||||
|
||||
func (x *QuiescenceResponse) GetInitiator() bool {
|
||||
if x != nil {
|
||||
return x.Initiator
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
var File_devrpc_dev_proto protoreflect.FileDescriptor
|
||||
|
||||
var file_devrpc_dev_proto_rawDesc = []byte{
|
||||
|
@ -66,15 +163,26 @@ var file_devrpc_dev_proto_rawDesc = []byte{
|
|||
0x74, 0x6f, 0x12, 0x06, 0x64, 0x65, 0x76, 0x72, 0x70, 0x63, 0x1a, 0x0f, 0x6c, 0x69, 0x67, 0x68,
|
||||
0x74, 0x6e, 0x69, 0x6e, 0x67, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x15, 0x0a, 0x13, 0x49,
|
||||
0x6d, 0x70, 0x6f, 0x72, 0x74, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x32, 0x46, 0x0a, 0x03, 0x44, 0x65, 0x76, 0x12, 0x3f, 0x0a, 0x0b, 0x49, 0x6d, 0x70,
|
||||
0x6f, 0x72, 0x74, 0x47, 0x72, 0x61, 0x70, 0x68, 0x12, 0x13, 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63,
|
||||
0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x47, 0x72, 0x61, 0x70, 0x68, 0x1a, 0x1b, 0x2e,
|
||||
0x64, 0x65, 0x76, 0x72, 0x70, 0x63, 0x2e, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x47, 0x72, 0x61,
|
||||
0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x42, 0x2e, 0x5a, 0x2c, 0x67, 0x69,
|
||||
0x74, 0x68, 0x75, 0x62, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6e, 0x69,
|
||||
0x6e, 0x67, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x2f, 0x6c, 0x6e, 0x64, 0x2f, 0x6c, 0x6e,
|
||||
0x72, 0x70, 0x63, 0x2f, 0x64, 0x65, 0x76, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
|
||||
0x6f, 0x33,
|
||||
0x73, 0x65, 0x22, 0x41, 0x0a, 0x11, 0x51, 0x75, 0x69, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65,
|
||||
0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x2c, 0x0a, 0x07, 0x63, 0x68, 0x61, 0x6e, 0x5f,
|
||||
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63,
|
||||
0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x50, 0x6f, 0x69, 0x6e, 0x74, 0x52, 0x06, 0x63,
|
||||
0x68, 0x61, 0x6e, 0x49, 0x64, 0x22, 0x32, 0x0a, 0x12, 0x51, 0x75, 0x69, 0x65, 0x73, 0x63, 0x65,
|
||||
0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x69,
|
||||
0x6e, 0x69, 0x74, 0x69, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09,
|
||||
0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x74, 0x6f, 0x72, 0x32, 0x88, 0x01, 0x0a, 0x03, 0x44, 0x65,
|
||||
0x76, 0x12, 0x3f, 0x0a, 0x0b, 0x49, 0x6d, 0x70, 0x6f, 0x72, 0x74, 0x47, 0x72, 0x61, 0x70, 0x68,
|
||||
0x12, 0x13, 0x2e, 0x6c, 0x6e, 0x72, 0x70, 0x63, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c,
|
||||
0x47, 0x72, 0x61, 0x70, 0x68, 0x1a, 0x1b, 0x2e, 0x64, 0x65, 0x76, 0x72, 0x70, 0x63, 0x2e, 0x49,
|
||||
0x6d, 0x70, 0x6f, 0x72, 0x74, 0x47, 0x72, 0x61, 0x70, 0x68, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e,
|
||||
0x73, 0x65, 0x12, 0x40, 0x0a, 0x07, 0x51, 0x75, 0x69, 0x65, 0x73, 0x63, 0x65, 0x12, 0x19, 0x2e,
|
||||
0x64, 0x65, 0x76, 0x72, 0x70, 0x63, 0x2e, 0x51, 0x75, 0x69, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63,
|
||||
0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1a, 0x2e, 0x64, 0x65, 0x76, 0x72, 0x70,
|
||||
0x63, 0x2e, 0x51, 0x75, 0x69, 0x65, 0x73, 0x63, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x65, 0x73, 0x70,
|
||||
0x6f, 0x6e, 0x73, 0x65, 0x42, 0x2e, 0x5a, 0x2c, 0x67, 0x69, 0x74, 0x68, 0x75, 0x62, 0x2e, 0x63,
|
||||
0x6f, 0x6d, 0x2f, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x6e, 0x69, 0x6e, 0x67, 0x6e, 0x65, 0x74, 0x77,
|
||||
0x6f, 0x72, 0x6b, 0x2f, 0x6c, 0x6e, 0x64, 0x2f, 0x6c, 0x6e, 0x72, 0x70, 0x63, 0x2f, 0x64, 0x65,
|
||||
0x76, 0x72, 0x70, 0x63, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
|
||||
}
|
||||
|
||||
var (
|
||||
|
@ -89,19 +197,25 @@ func file_devrpc_dev_proto_rawDescGZIP() []byte {
|
|||
return file_devrpc_dev_proto_rawDescData
|
||||
}
|
||||
|
||||
var file_devrpc_dev_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
||||
var file_devrpc_dev_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
||||
var file_devrpc_dev_proto_goTypes = []interface{}{
|
||||
(*ImportGraphResponse)(nil), // 0: devrpc.ImportGraphResponse
|
||||
(*lnrpc.ChannelGraph)(nil), // 1: lnrpc.ChannelGraph
|
||||
(*QuiescenceRequest)(nil), // 1: devrpc.QuiescenceRequest
|
||||
(*QuiescenceResponse)(nil), // 2: devrpc.QuiescenceResponse
|
||||
(*lnrpc.ChannelPoint)(nil), // 3: lnrpc.ChannelPoint
|
||||
(*lnrpc.ChannelGraph)(nil), // 4: lnrpc.ChannelGraph
|
||||
}
|
||||
var file_devrpc_dev_proto_depIdxs = []int32{
|
||||
1, // 0: devrpc.Dev.ImportGraph:input_type -> lnrpc.ChannelGraph
|
||||
0, // 1: devrpc.Dev.ImportGraph:output_type -> devrpc.ImportGraphResponse
|
||||
1, // [1:2] is the sub-list for method output_type
|
||||
0, // [0:1] is the sub-list for method input_type
|
||||
0, // [0:0] is the sub-list for extension type_name
|
||||
0, // [0:0] is the sub-list for extension extendee
|
||||
0, // [0:0] is the sub-list for field type_name
|
||||
3, // 0: devrpc.QuiescenceRequest.chan_id:type_name -> lnrpc.ChannelPoint
|
||||
4, // 1: devrpc.Dev.ImportGraph:input_type -> lnrpc.ChannelGraph
|
||||
1, // 2: devrpc.Dev.Quiesce:input_type -> devrpc.QuiescenceRequest
|
||||
0, // 3: devrpc.Dev.ImportGraph:output_type -> devrpc.ImportGraphResponse
|
||||
2, // 4: devrpc.Dev.Quiesce:output_type -> devrpc.QuiescenceResponse
|
||||
3, // [3:5] is the sub-list for method output_type
|
||||
1, // [1:3] is the sub-list for method input_type
|
||||
1, // [1:1] is the sub-list for extension type_name
|
||||
1, // [1:1] is the sub-list for extension extendee
|
||||
0, // [0:1] is the sub-list for field type_name
|
||||
}
|
||||
|
||||
func init() { file_devrpc_dev_proto_init() }
|
||||
|
@ -122,6 +236,30 @@ func file_devrpc_dev_proto_init() {
|
|||
return nil
|
||||
}
|
||||
}
|
||||
file_devrpc_dev_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*QuiescenceRequest); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
file_devrpc_dev_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
|
||||
switch v := v.(*QuiescenceResponse); i {
|
||||
case 0:
|
||||
return &v.state
|
||||
case 1:
|
||||
return &v.sizeCache
|
||||
case 2:
|
||||
return &v.unknownFields
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
}
|
||||
}
|
||||
type x struct{}
|
||||
out := protoimpl.TypeBuilder{
|
||||
|
@ -129,7 +267,7 @@ func file_devrpc_dev_proto_init() {
|
|||
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
||||
RawDescriptor: file_devrpc_dev_proto_rawDesc,
|
||||
NumEnums: 0,
|
||||
NumMessages: 1,
|
||||
NumMessages: 3,
|
||||
NumExtensions: 0,
|
||||
NumServices: 1,
|
||||
},
|
||||
|
|
|
@ -66,6 +66,40 @@ func local_request_Dev_ImportGraph_0(ctx context.Context, marshaler runtime.Mars
|
|||
|
||||
}
|
||||
|
||||
func request_Dev_Quiesce_0(ctx context.Context, marshaler runtime.Marshaler, client DevClient, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||
var protoReq QuiescenceRequest
|
||||
var metadata runtime.ServerMetadata
|
||||
|
||||
newReader, berr := utilities.IOReaderFactory(req.Body)
|
||||
if berr != nil {
|
||||
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
|
||||
}
|
||||
if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
|
||||
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||
}
|
||||
|
||||
msg, err := client.Quiesce(ctx, &protoReq, grpc.Header(&metadata.HeaderMD), grpc.Trailer(&metadata.TrailerMD))
|
||||
return msg, metadata, err
|
||||
|
||||
}
|
||||
|
||||
func local_request_Dev_Quiesce_0(ctx context.Context, marshaler runtime.Marshaler, server DevServer, req *http.Request, pathParams map[string]string) (proto.Message, runtime.ServerMetadata, error) {
|
||||
var protoReq QuiescenceRequest
|
||||
var metadata runtime.ServerMetadata
|
||||
|
||||
newReader, berr := utilities.IOReaderFactory(req.Body)
|
||||
if berr != nil {
|
||||
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", berr)
|
||||
}
|
||||
if err := marshaler.NewDecoder(newReader()).Decode(&protoReq); err != nil && err != io.EOF {
|
||||
return nil, metadata, status.Errorf(codes.InvalidArgument, "%v", err)
|
||||
}
|
||||
|
||||
msg, err := server.Quiesce(ctx, &protoReq)
|
||||
return msg, metadata, err
|
||||
|
||||
}
|
||||
|
||||
// RegisterDevHandlerServer registers the http handlers for service Dev to "mux".
|
||||
// UnaryRPC :call DevServer directly.
|
||||
// StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906.
|
||||
|
@ -95,6 +129,29 @@ func RegisterDevHandlerServer(ctx context.Context, mux *runtime.ServeMux, server
|
|||
|
||||
})
|
||||
|
||||
mux.Handle("POST", pattern_Dev_Quiesce_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||
ctx, cancel := context.WithCancel(req.Context())
|
||||
defer cancel()
|
||||
var stream runtime.ServerTransportStream
|
||||
ctx = grpc.NewContextWithServerTransportStream(ctx, &stream)
|
||||
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||
rctx, err := runtime.AnnotateIncomingContext(ctx, mux, req, "/devrpc.Dev/Quiesce", runtime.WithHTTPPathPattern("/v2/dev/quiesce"))
|
||||
if err != nil {
|
||||
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||
return
|
||||
}
|
||||
resp, md, err := local_request_Dev_Quiesce_0(rctx, inboundMarshaler, server, req, pathParams)
|
||||
md.HeaderMD, md.TrailerMD = metadata.Join(md.HeaderMD, stream.Header()), metadata.Join(md.TrailerMD, stream.Trailer())
|
||||
ctx = runtime.NewServerMetadataContext(ctx, md)
|
||||
if err != nil {
|
||||
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||
return
|
||||
}
|
||||
|
||||
forward_Dev_Quiesce_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||
|
||||
})
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
|
@ -156,13 +213,37 @@ func RegisterDevHandlerClient(ctx context.Context, mux *runtime.ServeMux, client
|
|||
|
||||
})
|
||||
|
||||
mux.Handle("POST", pattern_Dev_Quiesce_0, func(w http.ResponseWriter, req *http.Request, pathParams map[string]string) {
|
||||
ctx, cancel := context.WithCancel(req.Context())
|
||||
defer cancel()
|
||||
inboundMarshaler, outboundMarshaler := runtime.MarshalerForRequest(mux, req)
|
||||
rctx, err := runtime.AnnotateContext(ctx, mux, req, "/devrpc.Dev/Quiesce", runtime.WithHTTPPathPattern("/v2/dev/quiesce"))
|
||||
if err != nil {
|
||||
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||
return
|
||||
}
|
||||
resp, md, err := request_Dev_Quiesce_0(rctx, inboundMarshaler, client, req, pathParams)
|
||||
ctx = runtime.NewServerMetadataContext(ctx, md)
|
||||
if err != nil {
|
||||
runtime.HTTPError(ctx, mux, outboundMarshaler, w, req, err)
|
||||
return
|
||||
}
|
||||
|
||||
forward_Dev_Quiesce_0(ctx, mux, outboundMarshaler, w, req, resp, mux.GetForwardResponseOptions()...)
|
||||
|
||||
})
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
var (
|
||||
pattern_Dev_ImportGraph_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v2", "dev", "importgraph"}, ""))
|
||||
|
||||
pattern_Dev_Quiesce_0 = runtime.MustPattern(runtime.NewPattern(1, []int{2, 0, 2, 1, 2, 2}, []string{"v2", "dev", "quiesce"}, ""))
|
||||
)
|
||||
|
||||
var (
|
||||
forward_Dev_ImportGraph_0 = runtime.ForwardResponseMessage
|
||||
|
||||
forward_Dev_Quiesce_0 = runtime.ForwardResponseMessage
|
||||
)
|
||||
|
|
|
@ -46,4 +46,29 @@ func RegisterDevJSONCallbacks(registry map[string]func(ctx context.Context,
|
|||
}
|
||||
callback(string(respBytes), nil)
|
||||
}
|
||||
|
||||
registry["devrpc.Dev.Quiesce"] = func(ctx context.Context,
|
||||
conn *grpc.ClientConn, reqJSON string, callback func(string, error)) {
|
||||
|
||||
req := &QuiescenceRequest{}
|
||||
err := marshaler.Unmarshal([]byte(reqJSON), req)
|
||||
if err != nil {
|
||||
callback("", err)
|
||||
return
|
||||
}
|
||||
|
||||
client := NewDevClient(conn)
|
||||
resp, err := client.Quiesce(ctx, req)
|
||||
if err != nil {
|
||||
callback("", err)
|
||||
return
|
||||
}
|
||||
|
||||
respBytes, err := marshaler.Marshal(resp)
|
||||
if err != nil {
|
||||
callback("", err)
|
||||
return
|
||||
}
|
||||
callback(string(respBytes), nil)
|
||||
}
|
||||
}
|
||||
|
|
|
@ -30,7 +30,25 @@ service Dev {
|
|||
used for development.
|
||||
*/
|
||||
rpc ImportGraph (lnrpc.ChannelGraph) returns (ImportGraphResponse);
|
||||
|
||||
/*
|
||||
Quiesce instructs a channel to initiate the quiescence (stfu) protocol. This
|
||||
RPC is for testing purposes only. The commit that adds it will be removed
|
||||
once interop is confirmed.
|
||||
*/
|
||||
rpc Quiesce (QuiescenceRequest) returns (QuiescenceResponse);
|
||||
}
|
||||
|
||||
message ImportGraphResponse {
|
||||
}
|
||||
|
||||
message QuiescenceRequest {
|
||||
// The channel point of the channel we wish to quiesce
|
||||
lnrpc.ChannelPoint chan_id = 1;
|
||||
}
|
||||
|
||||
message QuiescenceResponse {
|
||||
// Indicates whether or not we hold the initiator role or not once the
|
||||
// negotiation completes
|
||||
bool initiator = 1;
|
||||
}
|
||||
|
|
|
@ -48,12 +48,63 @@
|
|||
"Dev"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/v2/dev/quiesce": {
|
||||
"post": {
|
||||
"summary": "Quiesce instructs a channel to initiate the quiescence (stfu) protocol. This\nRPC is for testing purposes only. The commit that adds it will be removed\nonce interop is confirmed.",
|
||||
"operationId": "Dev_Quiesce",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "A successful response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/devrpcQuiescenceResponse"
|
||||
}
|
||||
},
|
||||
"default": {
|
||||
"description": "An unexpected error response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/rpcStatus"
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"name": "body",
|
||||
"in": "body",
|
||||
"required": true,
|
||||
"schema": {
|
||||
"$ref": "#/definitions/devrpcQuiescenceRequest"
|
||||
}
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"Dev"
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
"definitions": {
|
||||
"devrpcImportGraphResponse": {
|
||||
"type": "object"
|
||||
},
|
||||
"devrpcQuiescenceRequest": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"chan_id": {
|
||||
"$ref": "#/definitions/lnrpcChannelPoint",
|
||||
"title": "The channel point of the channel we wish to quiesce"
|
||||
}
|
||||
}
|
||||
},
|
||||
"devrpcQuiescenceResponse": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"initiator": {
|
||||
"type": "boolean",
|
||||
"title": "Indicates whether or not we hold the initiator role or not once the\nnegotiation completes"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcChannelEdge": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
@ -116,6 +167,25 @@
|
|||
},
|
||||
"description": "Returns a new instance of the directed channel graph."
|
||||
},
|
||||
"lnrpcChannelPoint": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"funding_txid_bytes": {
|
||||
"type": "string",
|
||||
"format": "byte",
|
||||
"description": "Txid of the funding transaction. When using REST, this field must be\nencoded as base64."
|
||||
},
|
||||
"funding_txid_str": {
|
||||
"type": "string",
|
||||
"description": "Hex-encoded string representing the byte-reversed hash of the funding\ntransaction."
|
||||
},
|
||||
"output_index": {
|
||||
"type": "integer",
|
||||
"format": "int64",
|
||||
"title": "The index of the output of the funding transaction"
|
||||
}
|
||||
}
|
||||
},
|
||||
"lnrpcFeature": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
|
|
@ -6,3 +6,6 @@ http:
|
|||
- selector: devrpc.Dev.ImportGraph
|
||||
post: "/v2/dev/importgraph"
|
||||
body: "*"
|
||||
- selector: devrpc.Dev.Quiesce
|
||||
post: "/v2/dev/quiesce"
|
||||
body: "*"
|
||||
|
|
|
@ -23,6 +23,10 @@ type DevClient interface {
|
|||
// ImportGraph imports a ChannelGraph into the graph database. Should only be
|
||||
// used for development.
|
||||
ImportGraph(ctx context.Context, in *lnrpc.ChannelGraph, opts ...grpc.CallOption) (*ImportGraphResponse, error)
|
||||
// Quiesce instructs a channel to initiate the quiescence (stfu) protocol. This
|
||||
// RPC is for testing purposes only. The commit that adds it will be removed
|
||||
// once interop is confirmed.
|
||||
Quiesce(ctx context.Context, in *QuiescenceRequest, opts ...grpc.CallOption) (*QuiescenceResponse, error)
|
||||
}
|
||||
|
||||
type devClient struct {
|
||||
|
@ -42,6 +46,15 @@ func (c *devClient) ImportGraph(ctx context.Context, in *lnrpc.ChannelGraph, opt
|
|||
return out, nil
|
||||
}
|
||||
|
||||
func (c *devClient) Quiesce(ctx context.Context, in *QuiescenceRequest, opts ...grpc.CallOption) (*QuiescenceResponse, error) {
|
||||
out := new(QuiescenceResponse)
|
||||
err := c.cc.Invoke(ctx, "/devrpc.Dev/Quiesce", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// DevServer is the server API for Dev service.
|
||||
// All implementations must embed UnimplementedDevServer
|
||||
// for forward compatibility
|
||||
|
@ -50,6 +63,10 @@ type DevServer interface {
|
|||
// ImportGraph imports a ChannelGraph into the graph database. Should only be
|
||||
// used for development.
|
||||
ImportGraph(context.Context, *lnrpc.ChannelGraph) (*ImportGraphResponse, error)
|
||||
// Quiesce instructs a channel to initiate the quiescence (stfu) protocol. This
|
||||
// RPC is for testing purposes only. The commit that adds it will be removed
|
||||
// once interop is confirmed.
|
||||
Quiesce(context.Context, *QuiescenceRequest) (*QuiescenceResponse, error)
|
||||
mustEmbedUnimplementedDevServer()
|
||||
}
|
||||
|
||||
|
@ -60,6 +77,9 @@ type UnimplementedDevServer struct {
|
|||
func (UnimplementedDevServer) ImportGraph(context.Context, *lnrpc.ChannelGraph) (*ImportGraphResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method ImportGraph not implemented")
|
||||
}
|
||||
func (UnimplementedDevServer) Quiesce(context.Context, *QuiescenceRequest) (*QuiescenceResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method Quiesce not implemented")
|
||||
}
|
||||
func (UnimplementedDevServer) mustEmbedUnimplementedDevServer() {}
|
||||
|
||||
// UnsafeDevServer may be embedded to opt out of forward compatibility for this service.
|
||||
|
@ -91,6 +111,24 @@ func _Dev_ImportGraph_Handler(srv interface{}, ctx context.Context, dec func(int
|
|||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Dev_Quiesce_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(QuiescenceRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(DevServer).Quiesce(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/devrpc.Dev/Quiesce",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(DevServer).Quiesce(ctx, req.(*QuiescenceRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
// Dev_ServiceDesc is the grpc.ServiceDesc for Dev service.
|
||||
// It's only intended for direct use with grpc.RegisterService,
|
||||
// and not to be introspected or modified (even as a copy)
|
||||
|
@ -102,6 +140,10 @@ var Dev_ServiceDesc = grpc.ServiceDesc{
|
|||
MethodName: "ImportGraph",
|
||||
Handler: _Dev_ImportGraph_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "Quiesce",
|
||||
Handler: _Dev_Quiesce_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "devrpc/dev.proto",
|
||||
|
|
|
@ -43,7 +43,7 @@ type HarnessRPC struct {
|
|||
ChainKit chainrpc.ChainKitClient
|
||||
NeutrinoKit neutrinorpc.NeutrinoKitClient
|
||||
Peer peersrpc.PeersClient
|
||||
DevRPC devrpc.DevClient
|
||||
Dev devrpc.DevClient
|
||||
|
||||
// Name is the HarnessNode's name.
|
||||
Name string
|
||||
|
@ -75,7 +75,7 @@ func NewHarnessRPC(ctxt context.Context, t *testing.T, c *grpc.ClientConn,
|
|||
ChainKit: chainrpc.NewChainKitClient(c),
|
||||
NeutrinoKit: neutrinorpc.NewNeutrinoKitClient(c),
|
||||
Peer: peersrpc.NewPeersClient(c),
|
||||
DevRPC: devrpc.NewDevClient(c),
|
||||
Dev: devrpc.NewDevClient(c),
|
||||
Name: name,
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue