RoadSign/pkg/warden/executor.go

126 lines
2.6 KiB
Go
Raw Permalink Normal View History

2024-01-17 06:34:08 +00:00
package warden
import (
"fmt"
"github.com/rs/zerolog/log"
2024-01-17 06:34:08 +00:00
"os/exec"
"path/filepath"
"strings"
"syscall"
2024-01-17 06:34:08 +00:00
"time"
"github.com/samber/lo"
)
2024-01-24 16:09:39 +00:00
var InstancePool []*AppInstance
func GetFromPool(id string) *AppInstance {
val, ok := lo.Find(InstancePool, func(item *AppInstance) bool {
return item.Manifest.ID == id
})
return lo.Ternary(ok, val, nil)
}
func StartPool() []error {
var errors []error
for _, instance := range InstancePool {
if err := instance.Wake(); err != nil {
errors = append(errors, err)
}
}
return errors
}
2024-01-17 06:34:08 +00:00
type AppStatus = int8
const (
AppCreated = AppStatus(iota)
AppStarting
AppStarted
AppExited
AppFailure
)
2024-01-24 16:09:39 +00:00
type AppInstance struct {
Manifest Application `json:"manifest"`
2024-01-17 06:34:08 +00:00
Cmd *exec.Cmd `json:"-"`
Logger strings.Builder `json:"-"`
Status AppStatus `json:"status"`
}
2024-01-24 16:09:39 +00:00
func (v *AppInstance) Wake() error {
2024-01-17 06:34:08 +00:00
if v.Cmd != nil {
return nil
}
if v.Cmd == nil {
return v.Start()
}
if v.Cmd.Process == nil || v.Cmd.ProcessState == nil {
return v.Start()
}
if v.Cmd.ProcessState.Exited() {
return v.Start()
}
2024-10-03 12:59:18 +00:00
return nil
2024-01-17 06:34:08 +00:00
}
2024-01-24 16:09:39 +00:00
func (v *AppInstance) Start() error {
2024-01-17 06:34:08 +00:00
manifest := v.Manifest
if len(manifest.Command) <= 0 {
return fmt.Errorf("you need set the command for %s to enable process manager", manifest.ID)
}
v.Cmd = exec.Command(manifest.Command[0], manifest.Command[1:]...)
v.Cmd.Dir = filepath.Join(manifest.Workdir)
v.Cmd.Env = append(v.Cmd.Env, manifest.Environment...)
v.Cmd.Stdout = &v.Logger
v.Cmd.Stderr = &v.Logger
// Monitor
go func() {
for {
if v.Cmd != nil && v.Cmd.Process == nil {
2024-01-17 06:34:08 +00:00
v.Status = AppStarting
} else if v.Cmd != nil && v.Cmd.ProcessState == nil {
2024-01-17 06:34:08 +00:00
v.Status = AppStarted
} else {
2024-10-03 12:59:18 +00:00
v.Status = AppFailure
v.Cmd = nil
2024-01-17 06:34:08 +00:00
return
}
time.Sleep(1000 * time.Millisecond)
2024-01-17 06:34:08 +00:00
}
}()
return v.Cmd.Start()
}
2024-01-24 16:09:39 +00:00
func (v *AppInstance) Stop() error {
2024-01-17 06:34:08 +00:00
if v.Cmd != nil && v.Cmd.Process != nil {
if err := v.Cmd.Process.Signal(syscall.SIGTERM); err != nil {
log.Warn().Int("pid", v.Cmd.Process.Pid).Err(err).Msgf("Failed to send SIGTERM to process...")
if err = v.Cmd.Process.Kill(); err != nil {
log.Error().Int("pid", v.Cmd.Process.Pid).Err(err).Msgf("Failed to kill process...")
return err
}
2024-01-17 06:34:08 +00:00
}
}
// We need to wait for the process to exit
// The wait syscall will read the exit status of the process
// So that we don't produce defunct processes
// Refer to https://stackoverflow.com/questions/46293435/golang-exec-command-cause-a-lot-of-defunct-processes
_ = v.Cmd.Wait()
v.Cmd = nil
2024-10-03 12:59:18 +00:00
v.Status = AppExited
2024-01-17 06:34:08 +00:00
return nil
}
2024-01-24 16:09:39 +00:00
func (v *AppInstance) Logs() string {
2024-01-17 06:34:08 +00:00
return v.Logger.String()
}