RoadSign/pkg/warden/executor.go

128 lines
2.5 KiB
Go
Raw 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()
} else if v.Cmd.ProcessState.Exited() {
return fmt.Errorf("process already dead")
}
if v.Cmd.ProcessState.Exited() {
return fmt.Errorf("cannot start process")
} else {
return nil
}
}
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 {
v.Status = lo.Ternary(v.Cmd == nil, AppExited, 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...")
} else {
v.Cmd = nil
}
2024-01-17 06:34:08 +00:00
return err
} else {
v.Cmd = nil
}
}
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()
}