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"
import livekit2 "github.com/livekit/protocol/livekit"
var _ = version.PsrpcVersion_0_7
type AgentInternalClient interface {
CheckEnabled(ctx context.Context, req *CheckEnabledRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*CheckEnabledResponse], error)
JobRequest(ctx context.Context, namespace string, jobType string, req *livekit2.Job, opts ...psrpc.RequestOption) (*JobRequestResponse, error)
JobTerminate(ctx context.Context, jobId string, req *JobTerminateRequest, opts ...psrpc.RequestOption) (*JobTerminateResponse, error)
SubscribeWorkerRegistered(ctx context.Context, handlerNamespace string) (psrpc.Subscription[*google_protobuf.Empty], error)
Close()
}
type AgentInternalServerImpl interface {
CheckEnabled(context.Context, *CheckEnabledRequest) (*CheckEnabledResponse, error)
JobRequest(context.Context, *livekit2.Job) (*JobRequestResponse, error)
JobRequestAffinity(context.Context, *livekit2.Job) float32
JobTerminate(context.Context, *JobTerminateRequest) (*JobTerminateResponse, error)
}
type AgentInternalServer interface {
RegisterJobRequestTopic(namespace string, jobType string) error
DeregisterJobRequestTopic(namespace string, jobType string)
RegisterJobTerminateTopic(jobId string) error
DeregisterJobTerminateTopic(jobId string)
PublishWorkerRegistered(ctx context.Context, handlerNamespace string, msg *google_protobuf.Empty) error
Shutdown()
Kill()
}
type agentInternalClient struct {
client *client.RPCClient
}
func NewAgentInternalClient(bus psrpc.MessageBus, opts ...psrpc.ClientOption) (AgentInternalClient, error) {
sd := &info.ServiceDefinition{
Name: "AgentInternal",
ID: rand.NewClientID(),
}
sd.RegisterMethod("CheckEnabled", false, true, false, false)
sd.RegisterMethod("JobRequest", true, false, true, false)
sd.RegisterMethod("JobTerminate", false, false, true, true)
sd.RegisterMethod("WorkerRegistered", false, true, false, false)
rpcClient, err := client.NewRPCClient(sd, bus, opts...)
if err != nil {
return nil, err
}
return &agentInternalClient{
client: rpcClient,
}, nil
}
func (c *agentInternalClient) CheckEnabled(ctx context.Context, req *CheckEnabledRequest, opts ...psrpc.RequestOption) (<-chan *psrpc.Response[*CheckEnabledResponse], error) {
return client.RequestMulti[*CheckEnabledResponse](ctx, c.client, "CheckEnabled", nil, req, opts...)
}
func (c *agentInternalClient) JobRequest(ctx context.Context, namespace string, jobType string, req *livekit2.Job, opts ...psrpc.RequestOption) (*JobRequestResponse, error) {
return client.RequestSingle[*JobRequestResponse](ctx, c.client, "JobRequest", []string{namespace, jobType}, req, opts...)
}
func (c *agentInternalClient) JobTerminate(ctx context.Context, jobId string, req *JobTerminateRequest, opts ...psrpc.RequestOption) (*JobTerminateResponse, error) {
return client.RequestSingle[*JobTerminateResponse](ctx, c.client, "JobTerminate", []string{jobId}, req, opts...)
}
func (c *agentInternalClient) SubscribeWorkerRegistered(ctx context.Context, handlerNamespace string) (psrpc.Subscription[*google_protobuf.Empty], error) {
return client.Join[*google_protobuf.Empty](ctx, c.client, "WorkerRegistered", []string{handlerNamespace})
}
func (s *agentInternalClient) Close() {
s.client.Close()
}
type agentInternalServer struct {
svc AgentInternalServerImpl
rpc *server.RPCServer
}
func NewAgentInternalServer(svc AgentInternalServerImpl, bus psrpc.MessageBus, opts ...psrpc.ServerOption) (AgentInternalServer, error) {
sd := &info.ServiceDefinition{
Name: "AgentInternal",
ID: rand.NewServerID(),
}
s := server.NewRPCServer(sd, bus, opts...)
sd.RegisterMethod("CheckEnabled", false, true, false, false)
var err error
err = server.RegisterHandler(s, "CheckEnabled", nil, svc.CheckEnabled, nil)
if err != nil {
s.Close(false)
return nil, err
}
sd.RegisterMethod("JobRequest", true, false, true, false)
sd.RegisterMethod("JobTerminate", false, false, true, true)
sd.RegisterMethod("WorkerRegistered", false, true, false, false)
return &agentInternalServer{
svc: svc,
rpc: s,
}, nil
}
func (s *agentInternalServer) RegisterJobRequestTopic(namespace string, jobType string) error {
return server.RegisterHandler(s.rpc, "JobRequest", []string{namespace, jobType}, s.svc.JobRequest, s.svc.JobRequestAffinity)
}
func (s *agentInternalServer) DeregisterJobRequestTopic(namespace string, jobType string) {
s.rpc.DeregisterHandler("JobRequest", []string{namespace, jobType})
}
func (s *agentInternalServer) RegisterJobTerminateTopic(jobId string) error {
return server.RegisterHandler(s.rpc, "JobTerminate", []string{jobId}, s.svc.JobTerminate, nil)
}
func (s *agentInternalServer) DeregisterJobTerminateTopic(jobId string) {
s.rpc.DeregisterHandler("JobTerminate", []string{jobId})
}
func (s *agentInternalServer) PublishWorkerRegistered(ctx context.Context, handlerNamespace string, msg *google_protobuf.Empty) error {
return s.rpc.Publish(ctx, "WorkerRegistered", []string{handlerNamespace}, msg)
}
func (s *agentInternalServer) Shutdown() {
s.rpc.Close(false)
}
func (s *agentInternalServer) Kill() {
s.rpc.Close(true)
}
type UnimplementedAgentInternalServer struct{}
func (UnimplementedAgentInternalServer) CheckEnabled(context.Context, *CheckEnabledRequest) (*CheckEnabledResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedAgentInternalServer) JobRequest(context.Context, *livekit2.Job) (*JobRequestResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedAgentInternalServer) JobRequestAffinity(context.Context, *livekit2.Job) float32 {
return -1
}
func (UnimplementedAgentInternalServer) JobTerminate(context.Context, *JobTerminateRequest) (*JobTerminateResponse, error) {
return nil, psrpc.ErrUnimplemented
}
func (UnimplementedAgentInternalServer) WorkerRegistered(context.Context, *google_protobuf.Empty) (*google_protobuf.Empty, error) {
return nil, psrpc.ErrUnimplemented
}
var psrpcFileDescriptor0 = []byte{
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x54, 0xcd, 0x6e, 0xd3, 0x40,
0x18, 0x64, 0xd3, 0x1f, 0xb9, 0xdb, 0x94, 0xba, 0xeb, 0x16, 0x52, 0x23, 0xd4, 0xd6, 0x17, 0x2a,
0x90, 0x6c, 0x54, 0xce, 0x88, 0x36, 0xc4, 0xa0, 0x44, 0x24, 0x01, 0xd7, 0x05, 0x89, 0x8b, 0x65,
0x3b, 0x1f, 0x8e, 0x1b, 0xc7, 0xbb, 0xac, 0x37, 0x48, 0x7d, 0x84, 0xbc, 0x4e, 0x8e, 0x3c, 0x0b,
0x8f, 0xc1, 0x03, 0x20, 0xaf, 0x1d, 0xe3, 0x54, 0xe1, 0xc0, 0x29, 0xda, 0x99, 0xc9, 0xa7, 0x6f,
0x66, 0x76, 0x8d, 0xf7, 0x39, 0x0b, 0x2d, 0x3f, 0x82, 0x54, 0x98, 0x8c, 0x53, 0x41, 0xc9, 0x06,
0x67, 0xa1, 0xfe, 0x24, 0xa2, 0x34, 0x4a, 0xc0, 0x92, 0x50, 0x30, 0xfb, 0x66, 0xc1, 0x94, 0x89,
0xbb, 0x42, 0xa1, 0xef, 0x51, 0x26, 0x62, 0x9a, 0x66, 0xe5, 0x51, 0x4b, 0xe2, 0x1f, 0x30, 0x89,
0x85, 0x57, 0x9b, 0xa2, 0x1f, 0x26, 0x34, 0x8a, 0x80, 0x5b, 0x2b, 0x52, 0xe3, 0x08, 0x6b, 0x6f,
0xc7, 0x10, 0x4e, 0xec, 0xd4, 0x0f, 0x12, 0x18, 0x39, 0xf0, 0x7d, 0x06, 0x99, 0x30, 0x7e, 0x21,
0x7c, 0xb8, 0x8a, 0x67, 0x8c, 0xa6, 0x19, 0x90, 0x33, 0xdc, 0xe4, 0x94, 0x4e, 0x3d, 0x28, 0xf0,
0x16, 0x3a, 0x45, 0xe7, 0x8a, 0xb3, 0x9b, 0x63, 0xa5, 0x94, 0xbc, 0xc0, 0x07, 0x6c, 0x16, 0x24,
0x71, 0x36, 0x06, 0x5e, 0xe9, 0x1a, 0x52, 0xa7, 0x56, 0xc4, 0x52, 0x6c, 0x61, 0x8d, 0xf9, 0x5c,
0xc4, 0x61, 0xcc, 0xfc, 0x54, 0x54, 0xf2, 0x2d, 0x29, 0x27, 0x35, 0x6a, 0xf9, 0x07, 0x03, 0xe3,
0xd4, 0x9f, 0x42, 0xc6, 0xfc, 0x10, 0xb2, 0xd6, 0xc6, 0xe9, 0xc6, 0xf9, 0x4e, 0xbb, 0xd1, 0x42,
0x4e, 0x0d, 0x25, 0x27, 0x78, 0x57, 0x3a, 0xf7, 0x24, 0xd6, 0xda, 0xcc, 0x45, 0x0e, 0x96, 0xd0,
0x20, 0x47, 0x8c, 0xd7, 0x98, 0xf4, 0x68, 0x50, 0x9a, 0xad, 0xbc, 0x3d, 0xc3, 0x5b, 0x99, 0xf0,
0x05, 0x48, 0x53, 0xbb, 0x17, 0x07, 0x66, 0x19, 0xa3, 0xd9, 0xa3, 0xc1, 0x75, 0x4e, 0x38, 0x05,
0x6f, 0x44, 0x58, 0xeb, 0xd1, 0xc0, 0x05, 0x3e, 0x8d, 0xd3, 0x1c, 0x2e, 0xe6, 0x90, 0x13, 0xbc,
0x7d, 0x4b, 0x03, 0x2f, 0x2e, 0x52, 0xd9, 0x69, 0x2b, 0x3f, 0x3f, 0x6e, 0xdd, 0xd2, 0xa0, 0xdb,
0x71, 0xe4, 0x4f, 0x6e, 0x76, 0x9b, 0x83, 0x9f, 0xd1, 0x54, 0xc6, 0xf1, 0xf0, 0xe2, 0xb1, 0xc9,
0x59, 0x68, 0xae, 0x8e, 0xca, 0x69, 0xa7, 0x94, 0x19, 0x6f, 0xf0, 0xe1, 0x2a, 0xfb, 0x9f, 0x9b,
0x3e, 0xef, 0x48, 0xa3, 0xf7, 0xc6, 0x93, 0x63, 0x7c, 0xe4, 0xda, 0x4e, 0xbf, 0x3b, 0xb8, 0x72,
0xbb, 0xc3, 0x81, 0xe7, 0xd8, 0x9f, 0x6e, 0xec, 0x6b, 0xd7, 0xee, 0xa8, 0x0f, 0x88, 0x86, 0xf7,
0xaf, 0xde, 0xdb, 0x03, 0xd7, 0xfb, 0x60, 0xbf, 0x73, 0x3d, 0x67, 0x38, 0xec, 0xab, 0xe8, 0xe2,
0x77, 0x03, 0xef, 0x5d, 0xe5, 0xe9, 0x75, 0x53, 0x01, 0x3c, 0xf5, 0x13, 0xd2, 0xc7, 0xcd, 0xfa,
0xf5, 0x20, 0x2d, 0xe9, 0x64, 0xcd, 0x4d, 0xd2, 0x8f, 0xd7, 0x30, 0x85, 0x0b, 0x43, 0x59, 0xcc,
0xd1, 0xe6, 0x65, 0xe3, 0x1c, 0x91, 0xcf, 0x18, 0xff, 0xed, 0x83, 0x34, 0xeb, 0x76, 0xf4, 0x2a,
0xa4, 0x7b, 0x75, 0x19, 0x67, 0x8b, 0x39, 0x7a, 0xaa, 0x22, 0xfd, 0x88, 0xec, 0x54, 0xdd, 0x13,
0x25, 0x6f, 0x40, 0xdc, 0x31, 0xb8, 0x44, 0x2f, 0x11, 0xb9, 0xc1, 0xcd, 0xba, 0xfd, 0x72, 0xcd,
0x35, 0xdd, 0x95, 0x6b, 0xae, 0x0b, 0xdb, 0x50, 0x17, 0x73, 0xd4, 0x54, 0x91, 0xae, 0x90, 0xb2,
0x5e, 0x02, 0x58, 0xfd, 0x42, 0xf9, 0x04, 0xb8, 0x03, 0x51, 0x9c, 0x09, 0xe0, 0x30, 0x22, 0x8f,
0xcc, 0xe2, 0x81, 0x9a, 0xcb, 0x07, 0x6a, 0xda, 0xf9, 0x03, 0xd5, 0xff, 0x81, 0x17, 0xdb, 0x2b,
0x48, 0x45, 0xba, 0x46, 0x0e, 0xc6, 0x7e, 0x3a, 0x4a, 0x80, 0x7b, 0x95, 0x8f, 0x3c, 0x95, 0xf6,
0xd9, 0xd7, 0x93, 0x28, 0x16, 0xe3, 0x59, 0x60, 0x86, 0x74, 0x6a, 0x95, 0x99, 0x14, 0x1f, 0x80,
0x90, 0x26, 0x16, 0x67, 0x61, 0xb0, 0x2d, 0x4f, 0xaf, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x80,
0xe7, 0x53, 0xbc, 0x34, 0x04, 0x00, 0x00,
}