1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
//go:build !no_workceptor
// +build !no_workceptor
package workceptor
import (
"encoding/json"
"errors"
"fmt"
"os/exec"
"github.com/ghjm/cmdline"
"github.com/spf13/viper"
)
// pythonUnit implements the WorkUnit interface.
type pythonUnit struct {
commandUnit
plugin string
function string
config map[string]interface{}
}
// NewPythonUnit creates a new pythonUnit using the given parameters.
func NewPythonUnit(baseWorkUnit BaseWorkUnitForWorkUnit, plugin string, function string, config map[string]any) *pythonUnit {
return &pythonUnit{
commandUnit: commandUnit{
BaseWorkUnitForWorkUnit: baseWorkUnit,
},
plugin: plugin,
function: function,
config: config,
}
}
// Start launches a job with given parameters.
func (pw *pythonUnit) Start() error {
pw.UpdateBasicStatus(WorkStatePending, "[DEPRECATION WARNING] '--work-python' option is not currently being used. This feature will be removed from receptor in a future release.", 0)
pw.UpdateBasicStatus(WorkStatePending, "Launching Python runner", 0)
config := make(map[string]interface{})
for k, v := range pw.config {
config[k] = v
}
config["params"] = pw.Status().ExtraData.(*CommandExtraData).Params
configJSON, err := json.Marshal(config)
if err != nil {
return err
}
cmd := exec.Command("receptor-python-worker",
fmt.Sprintf("%s:%s", pw.plugin, pw.function), pw.UnitDir(), string(configJSON))
return pw.runCommand(cmd)
}
// **************************************************************************
// Command line
// **************************************************************************
// workPythonCfg is the cmdline configuration object for a Python worker plugin.
type WorkPythonCfg struct {
WorkType string `required:"true" description:"Name for this worker type"`
Plugin string `required:"true" description:"Python module name of the worker plugin"`
Function string `required:"true" description:"Receptor-exported function to call"`
Config map[string]interface{} `description:"Plugin-specific configuration"`
}
// NewWorker is a factory to produce worker instances.
func (cfg WorkPythonCfg) NewWorker(_ BaseWorkUnitForWorkUnit, w *Workceptor, unitID string, workType string) WorkUnit {
cw := &pythonUnit{
commandUnit: commandUnit{
BaseWorkUnitForWorkUnit: &BaseWorkUnit{
status: StatusFileData{
ExtraData: &CommandExtraData{},
},
},
},
plugin: cfg.Plugin,
function: cfg.Function,
config: cfg.Config,
}
cw.BaseWorkUnitForWorkUnit.Init(w, unitID, workType, FileSystem{}, nil)
return cw
}
// Run runs the action.
func (cfg WorkPythonCfg) Run() error {
err := MainInstance.RegisterWorker(cfg.WorkType, cfg.NewWorker, false)
errWithDeprecation := errors.Join(err, errors.New("[DEPRECATION WARNING] 'work-python' option is not currently being used. This feature will be removed from receptor in a future release"))
return errWithDeprecation
}
func init() {
version := viper.GetInt("version")
if version > 1 {
return
}
cmdline.RegisterConfigTypeForApp("receptor-workers",
"work-python", "Run a worker using a Python plugin\n[DEPRECATION WARNING] This option is not currently being used. This feature will be removed from receptor in a future release.", WorkPythonCfg{}, cmdline.Section(workersSection))
}
|