|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- package ioswitch2
-
- import (
- "context"
- "io"
- "strconv"
-
- "gitlink.org.cn/cloudream/common/pkgs/ioswitch/exec"
- "gitlink.org.cn/cloudream/common/sdks/storage/cdsapi"
- "gitlink.org.cn/cloudream/common/utils/io2"
- stgglb "gitlink.org.cn/cloudream/jcs-pub/common/globals"
- cortypes "gitlink.org.cn/cloudream/jcs-pub/coordinator/types"
- )
-
- type HttpHubWorker struct {
- Hub cortypes.Hub
- }
-
- func (w *HttpHubWorker) NewClient() (exec.WorkerClient, error) {
- addressInfo := w.Hub.Address.(*cortypes.HttpAddressInfo)
- baseUrl := "http://" + addressInfo.ExternalIP + ":" + strconv.Itoa(addressInfo.Port)
- config := cdsapi.Config{
- URL: baseUrl,
- }
- pool := cdsapi.NewPool(&config)
- cli, err := pool.Acquire()
- defer pool.Release(cli)
- if err != nil {
- return nil, err
- }
-
- return &HttpHubWorkerClient{hubID: w.Hub.HubID, cli: cli}, nil
- }
-
- func (w *HttpHubWorker) String() string {
- return w.Hub.String()
- }
-
- func (w *HttpHubWorker) Equals(worker exec.WorkerInfo) bool {
- aw, ok := worker.(*HttpHubWorker)
- if !ok {
- return false
- }
-
- return w.Hub.HubID == aw.Hub.HubID
- }
-
- type HttpHubWorkerClient struct {
- hubID cortypes.HubID
- cli *cdsapi.Client
- }
-
- func (c *HttpHubWorkerClient) ExecutePlan(ctx context.Context, plan exec.Plan) error {
- return c.cli.ExecuteIOPlan(cdsapi.ExecuteIOPlanReq{
- Plan: plan,
- })
- }
- func (c *HttpHubWorkerClient) SendStream(ctx context.Context, planID exec.PlanID, id exec.VarID, stream io.ReadCloser) error {
- return c.cli.SendStream(cdsapi.SendStreamReq{
- SendStreamInfo: cdsapi.SendStreamInfo{
- PlanID: planID,
- VarID: id,
- },
- Stream: io2.CounterCloser(stream, func(cnt int64, err error) {
- if stgglb.Stats.HubTransfer != nil {
- stgglb.Stats.HubTransfer.RecordOutput(c.hubID, cnt, err == nil || err == io.EOF)
- }
- }),
- })
- }
- func (c *HttpHubWorkerClient) SendVar(ctx context.Context, planID exec.PlanID, id exec.VarID, value exec.VarValue) error {
- return c.cli.SendVar(cdsapi.SendVarReq{
- PlanID: planID,
- VarID: id,
- VarValue: value,
- })
- }
- func (c *HttpHubWorkerClient) GetStream(ctx context.Context, planID exec.PlanID, streamID exec.VarID, signalID exec.VarID, signal exec.VarValue) (io.ReadCloser, error) {
- str, err := c.cli.GetStream(cdsapi.GetStreamReq{
- PlanID: planID,
- VarID: streamID,
- SignalID: signalID,
- Signal: signal,
- })
- if err != nil {
- return nil, err
- }
-
- return io2.CounterCloser(str, func(cnt int64, err error) {
- if stgglb.Stats.HubTransfer != nil {
- stgglb.Stats.HubTransfer.RecordInput(c.hubID, cnt, err == nil || err == io.EOF)
- }
- }), nil
- }
- func (c *HttpHubWorkerClient) GetVar(ctx context.Context, planID exec.PlanID, varID exec.VarID, signalID exec.VarID, signal exec.VarValue) (exec.VarValue, error) {
- resp, err := c.cli.GetVar(cdsapi.GetVarReq{
- PlanID: planID,
- VarID: varID,
- SignalID: signalID,
- Signal: signal,
- })
- if err != nil {
- return nil, err
- }
-
- return resp.Value, err
- }
- func (c *HttpHubWorkerClient) Close() error {
- //stgglb.HubRPCPool.Release(c.cli)
- return nil
- }
|