package rpc
import (
"context"
"github.com/livekit/psrpc"
"github.com/livekit/psrpc/pkg/client"
"github.com/livekit/psrpc/pkg/info"
"github.com/livekit/psrpc/pkg/rand"
"github.com/livekit/psrpc/pkg/server"
"github.com/livekit/psrpc/version"
)
import google_protobuf "google.golang.org/protobuf/types/known/emptypb"
var _ = version.PsrpcVersion_0_7
type SIPInternalClient interface {
CreateSIPParticipant(ctx context.Context, topic string, req *InternalCreateSIPParticipantRequest, opts ...psrpc.RequestOption) (*InternalCreateSIPParticipantResponse, error)
TransferSIPParticipant(ctx context.Context, sipCallId string, req *InternalTransferSIPParticipantRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error)
Close()
}
type SIPInternalServerImpl interface {
CreateSIPParticipant(context.Context, *InternalCreateSIPParticipantRequest) (*InternalCreateSIPParticipantResponse, error)
TransferSIPParticipant(context.Context, *InternalTransferSIPParticipantRequest) (*google_protobuf.Empty, error)
}
type SIPInternalServer interface {
RegisterCreateSIPParticipantTopic(topic string) error
DeregisterCreateSIPParticipantTopic(topic string)
RegisterTransferSIPParticipantTopic(sipCallId string) error
DeregisterTransferSIPParticipantTopic(sipCallId string)
Shutdown()
Kill()
}
type sIPInternalClient struct {
client *client.RPCClient
}
func NewSIPInternalClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (SIPInternalClient, error) {
sd := &info.ServiceDefinition{
Name: "SIPInternal",
ID: rand.NewClientID(),
}
sd.RegisterMethod("CreateSIPParticipant", false, false, true, true)
sd.RegisterMethod("TransferSIPParticipant", false, false, true, true)
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
if err != nil {
return nil, err
}
return &sIPInternalClient{
client: rpcClient,
}, nil
}
func (c *sIPInternalClient) CreateSIPParticipant(ctx context.Context, topic string, req *InternalCreateSIPParticipantRequest, opts ...psrpc.RequestOption) (*InternalCreateSIPParticipantResponse, error) {
return client.RequestSingle[*InternalCreateSIPParticipantResponse](ctx, c.client, "CreateSIPParticipant", []string{topic}, req, opts...)
}
func (c *sIPInternalClient) TransferSIPParticipant(ctx context.Context, sipCallId string, req *InternalTransferSIPParticipantRequest, opts ...psrpc.RequestOption) (*google_protobuf.Empty, error) {
return client.RequestSingle[*google_protobuf.Empty](ctx, c.client, "TransferSIPParticipant", []string{sipCallId}, req, opts...)
}
func (s *sIPInternalClient) Close() {
s.client.Close()
}
type sIPInternalServer struct {
svc SIPInternalServerImpl
rpc *server.RPCServer
}
func NewSIPInternalServer(svc SIPInternalServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (SIPInternalServer, error) {
sd := &info.ServiceDefinition{
Name: "SIPInternal",
ID: rand.NewServerID(),
}
s := server.NewRPCServer(sd, bus, opts...)
sd.RegisterMethod("CreateSIPParticipant", false, false, true, true)
sd.RegisterMethod("TransferSIPParticipant", false, false, true, true)
return &sIPInternalServer{
svc: svc,
rpc: s,
}, nil
}
func (s *sIPInternalServer) RegisterCreateSIPParticipantTopic(topic string) error {
return server.RegisterHandler(s.rpc, "CreateSIPParticipant", []string{topic}, s.svc.CreateSIPParticipant, nil)
}
func (s *sIPInternalServer) DeregisterCreateSIPParticipantTopic(topic string) {
s.rpc.DeregisterHandler("CreateSIPParticipant", []string{topic})
}
func (s *sIPInternalServer) RegisterTransferSIPParticipantTopic(sipCallId string) error {
return server.RegisterHandler(s.rpc, "TransferSIPParticipant", []string{sipCallId}, s.svc.TransferSIPParticipant, nil)
}
func (s *sIPInternalServer) DeregisterTransferSIPParticipantTopic(sipCallId string) {
s.rpc.DeregisterHandler("TransferSIPParticipant", []string{sipCallId})
}
func (s *sIPInternalServer) Shutdown() {
s.rpc.Close(false)
}
func (s *sIPInternalServer) Kill() {
s.rpc.Close(true)
}
type UnimplementedSIPInternalServer struct{}
func (UnimplementedSIPInternalServer) CreateSIPParticipant(context.Context, *InternalCreateSIPParticipantRequest) (*InternalCreateSIPParticipantResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedSIPInternalServer) TransferSIPParticipant(context.Context, *InternalTransferSIPParticipantRequest) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
var psrpcFileDescriptor11 = []byte{
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x57, 0xcb, 0x73, 0xdb, 0x44,
0x18, 0x47, 0x71, 0x9e, 0xeb, 0xf8, 0xb5, 0x4e, 0xd2, 0xad, 0x03, 0xad, 0x9b, 0x02, 0xe3, 0x32,
0x41, 0x86, 0x74, 0x80, 0x4e, 0xa7, 0x53, 0xa6, 0x79, 0x4d, 0x7d, 0x68, 0x09, 0x8a, 0x7b, 0x80,
0x8b, 0x66, 0x2d, 0x6d, 0x9c, 0x25, 0x92, 0x56, 0xec, 0xae, 0xea, 0x9a, 0x4e, 0xef, 0xed, 0x95,
0x63, 0x8f, 0xfc, 0x09, 0xbd, 0x72, 0xe3, 0xef, 0xc9, 0x9d, 0xe1, 0xc6, 0xec, 0x4a, 0xb2, 0xe5,
0xc4, 0x69, 0xad, 0xe9, 0x4d, 0xdf, 0xeb, 0xb7, 0xdf, 0xf7, 0xed, 0xf7, 0x58, 0x81, 0x12, 0x0f,
0x9d, 0xb6, 0xa0, 0xa1, 0x19, 0x72, 0x26, 0x19, 0x2c, 0xf0, 0xd0, 0x69, 0x6c, 0xf6, 0x19, 0xeb,
0x7b, 0xa4, 0xad, 0x59, 0xbd, 0xe8, 0xa4, 0x4d, 0xfc, 0x50, 0x0e, 0x63, 0x8d, 0xc6, 0x8d, 0x8b,
0x42, 0x37, 0xe2, 0x58, 0x52, 0x16, 0x24, 0xf2, 0x12, 0x0b, 0x15, 0x25, 0x12, 0xb2, 0xe6, 0xd1,
0xe7, 0xe4, 0x8c, 0x4a, 0x7b, 0x74, 0x46, 0x63, 0xcd, 0x63, 0xfd, 0x3e, 0xe1, 0xed, 0x09, 0xc5,
0xad, 0xff, 0x20, 0xb8, 0xdd, 0x09, 0x24, 0xe1, 0x01, 0xf6, 0xf6, 0x38, 0xc1, 0x92, 0x1c, 0x77,
0x8e, 0x8e, 0x30, 0x97, 0xd4, 0xa1, 0x21, 0x0e, 0xa4, 0x45, 0x7e, 0x8f, 0x88, 0x90, 0x70, 0x1b,
0x80, 0x90, 0xb3, 0xdf, 0x88, 0x23, 0x6d, 0xea, 0x22, 0xd8, 0x34, 0x5a, 0x2b, 0xbb, 0xa5, 0xb7,
0xe7, 0xdb, 0x2b, 0x09, 0xb7, 0xb3, 0x6f, 0x8d, 0x3e, 0x5d, 0xf8, 0x35, 0x28, 0x0a, 0x1a, 0xda,
0x0e, 0xf6, 0x3c, 0xa5, 0x5e, 0x1a, 0xab, 0x0b, 0x1a, 0xee, 0x61, 0xcf, 0x53, 0xea, 0xe9, 0xa7,
0x0b, 0xbf, 0x01, 0xab, 0x4a, 0x5d, 0xf2, 0x28, 0x38, 0x53, 0xfa, 0x75, 0xad, 0x5f, 0x7e, 0x7b,
0xbe, 0x0d, 0x04, 0x0d, 0xbb, 0x8a, 0xdd, 0xd9, 0xb7, 0xc6, 0xdf, 0x2e, 0x44, 0x60, 0x09, 0xbb,
0x2e, 0x27, 0x42, 0xa0, 0x39, 0xa5, 0x6c, 0xa5, 0x24, 0x6c, 0x80, 0xe5, 0x53, 0x26, 0x64, 0x80,
0x7d, 0x82, 0xd6, 0xb4, 0x68, 0x44, 0xc3, 0x36, 0xa8, 0xbb, 0x44, 0x48, 0x1a, 0xe8, 0xcc, 0xd9,
0x0e, 0x8b, 0x02, 0xc9, 0x87, 0xe8, 0x86, 0x56, 0x83, 0x19, 0xd1, 0x5e, 0x2c, 0x81, 0x77, 0xc1,
0x8a, 0xe4, 0x38, 0x10, 0x21, 0xe3, 0x12, 0x55, 0x9b, 0x46, 0xab, 0xbc, 0xb3, 0x6e, 0x26, 0xa9,
0x35, 0x8f, 0x3b, 0x47, 0xdd, 0x54, 0x68, 0x8d, 0xf5, 0xe0, 0x06, 0x58, 0x0c, 0x22, 0xbf, 0x47,
0x38, 0x2a, 0x68, 0xe0, 0x84, 0x82, 0xd7, 0xc0, 0x92, 0x4e, 0x88, 0x64, 0x68, 0x3e, 0x16, 0x28,
0xb2, 0xcb, 0xe0, 0x2e, 0x58, 0x8e, 0x84, 0xba, 0x01, 0x9f, 0xa0, 0x05, 0x1d, 0xfa, 0x97, 0xaf,
0xcf, 0xb7, 0x8d, 0x3f, 0xcf, 0xb7, 0x6f, 0x3c, 0xe0, 0xc4, 0xc5, 0x8e, 0x24, 0x6e, 0xb3, 0xf5,
0xf2, 0x65, 0xd3, 0x3c, 0xa6, 0x7f, 0x90, 0xe6, 0xab, 0x57, 0xcd, 0xde, 0x50, 0x12, 0x71, 0xe7,
0xa1, 0x35, 0xb2, 0x53, 0x18, 0x21, 0x16, 0x62, 0xc0, 0xb8, 0x8b, 0x16, 0xf3, 0x61, 0xa4, 0x76,
0x70, 0x13, 0xac, 0x70, 0xc6, 0x7c, 0x5b, 0x3b, 0xb2, 0x14, 0xe7, 0x4e, 0x31, 0x9e, 0xaa, 0x03,
0xbe, 0x05, 0x6b, 0xe1, 0xb8, 0x2c, 0x6c, 0xea, 0x92, 0x40, 0x52, 0x39, 0x44, 0xcb, 0x5a, 0xaf,
0x9e, 0x91, 0x75, 0x12, 0x11, 0xfc, 0x19, 0x54, 0xb3, 0x26, 0x1a, 0xb6, 0x9c, 0xcb, 0xb7, 0x4a,
0xc6, 0x5e, 0x7b, 0xf1, 0xcb, 0xa4, 0x17, 0x3e, 0x91, 0xd8, 0xc5, 0x12, 0xa3, 0x4a, 0x2e, 0xd8,
0xac, 0xb7, 0x4f, 0x12, 0x08, 0xf8, 0x97, 0x01, 0x36, 0xb2, 0xd8, 0x58, 0x4a, 0x4e, 0x7b, 0x91,
0x24, 0x02, 0xd5, 0x9a, 0x85, 0x56, 0x71, 0x67, 0xcf, 0xe4, 0xa1, 0x63, 0xce, 0xd0, 0x2c, 0x66,
0x86, 0xf5, 0x68, 0x84, 0x72, 0xa0, 0x2a, 0x6a, 0x66, 0x17, 0xd7, 0xc3, 0x69, 0x18, 0xf0, 0x01,
0x58, 0x90, 0xec, 0x8c, 0x04, 0x68, 0x25, 0x57, 0xc0, 0xb1, 0x11, 0x5c, 0x07, 0x8b, 0x03, 0x61,
0x47, 0xdc, 0x43, 0x40, 0xdf, 0xda, 0xc2, 0x40, 0x3c, 0xe3, 0x1e, 0x84, 0x60, 0xde, 0x95, 0xfe,
0x09, 0x2a, 0x6a, 0xa6, 0xfe, 0x86, 0xb7, 0x41, 0x29, 0xf4, 0xf0, 0xd0, 0x76, 0x29, 0xf6, 0x24,
0x0b, 0x08, 0x5a, 0x6d, 0x1a, 0xad, 0x65, 0x6b, 0x55, 0x31, 0xf7, 0x13, 0x1e, 0x1c, 0x80, 0xa5,
0x53, 0x82, 0x5d, 0xc2, 0x05, 0x5a, 0xd7, 0x29, 0xfa, 0x6e, 0xe6, 0x14, 0x3d, 0x8e, 0xed, 0xf2,
0x25, 0x25, 0x3d, 0x0d, 0x46, 0x60, 0x3d, 0xf9, 0xb4, 0x25, 0xcb, 0xde, 0xd4, 0x86, 0x76, 0xe3,
0x51, 0x5e, 0x37, 0xba, 0xec, 0xc2, 0x3d, 0x59, 0xf5, 0xd3, 0xcb, 0x12, 0x75, 0xec, 0xf8, 0x2c,
0x75, 0x72, 0x1a, 0x7d, 0x23, 0xe7, 0xb1, 0x63, 0xcc, 0x2e, 0xcb, 0x66, 0xc2, 0xaa, 0xe3, 0xcb,
0x12, 0xb8, 0x0b, 0x2a, 0x34, 0x70, 0xbc, 0xc8, 0x25, 0xa3, 0x03, 0x37, 0xf5, 0x2c, 0xba, 0x9e,
0x9d, 0x45, 0xb1, 0xf6, 0x4f, 0xf1, 0x74, 0xb7, 0xca, 0x89, 0x45, 0x8a, 0xf1, 0x10, 0x54, 0x49,
0x80, 0x7b, 0x1e, 0x71, 0xed, 0x13, 0x82, 0x65, 0xc4, 0x89, 0x40, 0xd7, 0x9b, 0x85, 0x56, 0x79,
0xa7, 0x9e, 0x05, 0x39, 0x8c, 0x65, 0x56, 0x25, 0x51, 0x4e, 0x68, 0xed, 0x03, 0xa7, 0x41, 0x9f,
0x06, 0x7d, 0x5b, 0x52, 0x9f, 0xb0, 0x48, 0xa2, 0x6b, 0x4d, 0xa3, 0x55, 0xdc, 0xb9, 0x6e, 0xc6,
0x9b, 0xc9, 0x4c, 0x37, 0x93, 0xb9, 0x9f, 0x6c, 0x26, 0xab, 0x9c, 0x58, 0x74, 0x63, 0x03, 0x78,
0x00, 0x6a, 0x3e, 0x7e, 0x11, 0x6f, 0x85, 0x74, 0x7d, 0x21, 0xf4, 0x21, 0x94, 0x8a, 0x8f, 0x5f,
0xa8, 0x3d, 0x91, 0x32, 0xe0, 0x21, 0xa8, 0xfa, 0xc4, 0xa5, 0xd8, 0x26, 0x81, 0xc3, 0x87, 0x3a,
0x5e, 0xf4, 0xa9, 0xce, 0xc7, 0x66, 0x36, 0x94, 0x27, 0x4a, 0xe7, 0x60, 0xa4, 0x62, 0x55, 0xfc,
0x49, 0x06, 0x34, 0x41, 0x7d, 0x80, 0xa9, 0xb4, 0xa3, 0x40, 0x52, 0xcf, 0xc6, 0x81, 0x18, 0x10,
0x4e, 0x5c, 0xf4, 0x99, 0x2e, 0xf4, 0x9a, 0x12, 0x3d, 0x53, 0x92, 0x47, 0x89, 0x00, 0x3e, 0x05,
0xab, 0x2e, 0x15, 0xba, 0x2b, 0xf4, 0x28, 0xbb, 0x99, 0xa7, 0x05, 0x1f, 0x7f, 0x62, 0x15, 0x13,
0x6b, 0x35, 0xc8, 0x5e, 0x1b, 0x06, 0xfc, 0x1e, 0x14, 0x33, 0x2b, 0x07, 0x35, 0x75, 0x22, 0xd6,
0x46, 0x21, 0xec, 0x8f, 0x65, 0x56, 0x56, 0x11, 0xda, 0xa0, 0x94, 0x5c, 0xa1, 0x7d, 0xe2, 0xe1,
0xbe, 0x40, 0xb7, 0x74, 0xf5, 0xdd, 0x9f, 0xb9, 0xfa, 0x92, 0x4b, 0x3d, 0x54, 0xc6, 0x71, 0xd9,
0xad, 0x9e, 0x64, 0x58, 0x8d, 0xc7, 0xa0, 0x71, 0xf5, 0x04, 0x83, 0x55, 0x50, 0x38, 0x23, 0x43,
0x64, 0xe8, 0x61, 0xa1, 0x3e, 0xe1, 0x1a, 0x58, 0x78, 0x8e, 0xbd, 0x88, 0x24, 0xab, 0x38, 0x26,
0xee, 0xcf, 0xdd, 0x33, 0x1a, 0xf7, 0xc1, 0x6a, 0xb6, 0xbc, 0x73, 0xd9, 0x1e, 0x02, 0x74, 0x55,
0x77, 0xe6, 0xc5, 0xb9, 0xaa, 0xdd, 0x72, 0xe1, 0xfc, 0x08, 0x6a, 0x97, 0x12, 0x97, 0x07, 0x60,
0xb7, 0x02, 0x4a, 0x76, 0xb6, 0x80, 0xb6, 0xfe, 0x31, 0xc0, 0xe7, 0xef, 0xbf, 0x2f, 0x11, 0xb2,
0x40, 0x10, 0x78, 0x0f, 0x94, 0x27, 0x77, 0x6f, 0x7c, 0xe0, 0x6e, 0xed, 0xed, 0xf9, 0x76, 0x29,
0xbb, 0x79, 0xf7, 0xad, 0x09, 0xd2, 0xbd, 0x72, 0x6b, 0xcf, 0x5d, 0xbd, 0xb5, 0x2f, 0xbc, 0xdd,
0x0a, 0xef, 0x7f, 0xbb, 0x6d, 0xfd, 0x3d, 0x0f, 0xbe, 0x48, 0x83, 0xd0, 0xcf, 0xa1, 0x13, 0xc2,
0xa7, 0x3f, 0x21, 0x2f, 0x00, 0x1b, 0x1f, 0x78, 0x14, 0xde, 0x04, 0x45, 0x99, 0xe0, 0xa9, 0x27,
0x53, 0xec, 0x31, 0x48, 0x59, 0x5d, 0x76, 0x79, 0x45, 0x15, 0xa6, 0xac, 0xa8, 0xe1, 0x78, 0x45,
0xcd, 0xeb, 0x36, 0xf9, 0x61, 0xa2, 0x4d, 0xde, 0xeb, 0xf1, 0x47, 0x2e, 0xa9, 0x29, 0x23, 0x73,
0x21, 0xef, 0xc8, 0xc4, 0x17, 0x7b, 0x7d, 0x51, 0x07, 0xf1, 0x20, 0x47, 0x10, 0x1f, 0xea, 0xf6,
0x8f, 0xe9, 0xd1, 0x8f, 0xed, 0x89, 0x9d, 0x7f, 0x0d, 0x50, 0x3c, 0xee, 0x1c, 0xa5, 0x91, 0x40,
0x01, 0xd6, 0xa6, 0x75, 0x02, 0x6c, 0xcd, 0x3a, 0xdc, 0x1a, 0x77, 0x66, 0xd0, 0x8c, 0xdb, 0x6a,
0x6b, 0xf1, 0xdd, 0x1b, 0x63, 0xae, 0x6a, 0x40, 0x01, 0x36, 0xa6, 0xa7, 0x10, 0x7e, 0x35, 0x7b,
0x9e, 0x1b, 0x1b, 0x97, 0x6e, 0xf5, 0x40, 0xfd, 0xbf, 0x6d, 0xad, 0xbf, 0x7b, 0x63, 0xd4, 0xaa,
0x46, 0xa3, 0x04, 0xb3, 0xe5, 0xbf, 0x7b, 0xeb, 0xd7, 0x9b, 0x7d, 0x2a, 0x4f, 0xa3, 0x9e, 0xe9,
0x30, 0xbf, 0x9d, 0x0c, 0xfd, 0xf8, 0xf7, 0xce, 0x61, 0x5e, 0x9b, 0x87, 0x4e, 0x6f, 0x51, 0x53,
0x77, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x24, 0x3e, 0x7a, 0xda, 0x2d, 0x0e, 0x00, 0x00,
}