forked from JointCloud/pcm-coordinator
39 lines
941 B
Go
39 lines
941 B
Go
package inference
|
|
|
|
import (
|
|
"context"
|
|
"strconv"
|
|
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/svc"
|
|
"gitlink.org.cn/JointCloud/pcm-coordinator/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type GetRunningInstanceByIdLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
svcCtx *svc.ServiceContext
|
|
}
|
|
|
|
func NewGetRunningInstanceByIdLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetRunningInstanceByIdLogic {
|
|
return &GetRunningInstanceByIdLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
svcCtx: svcCtx,
|
|
}
|
|
}
|
|
|
|
func (l *GetRunningInstanceByIdLogic) GetRunningInstanceById(req *types.GetRunningInstanceReq) (resp *types.GetRunningInstanceResp, err error) {
|
|
resp = &types.GetRunningInstanceResp{}
|
|
|
|
id, err := strconv.ParseInt(req.Id, 10, 64)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
list, err := l.svcCtx.Scheduler.AiStorages.GetRunningDeployInstanceById(id, req.AdapterId)
|
|
|
|
resp.List = list
|
|
return
|
|
}
|