add and modify new index page

This commit is contained in:
Adrian Zürcher
2025-08-05 18:45:19 +02:00
parent 20912ba17c
commit e1ba6e49a8
8 changed files with 495 additions and 74 deletions

View File

@@ -4,7 +4,6 @@ import (
"encoding/json"
"fmt"
"os"
"os/exec"
"sort"
)
@@ -12,16 +11,6 @@ type Supervisor struct {
Processes []*SupervisorProcess `json:"processes"`
}
type SupervisorProcess struct {
Name string `json:"name"`
ExecutePath string `json:"executePath"`
WorkingDirectory string `json:"workingDirectory,omitempty"`
StartDelay int `json:"startDelay,omitempty"`
Priority int `json:"priority,omitempty"`
Arguments []string `json:"arguments,omitempty"`
process *exec.Cmd `json:"-"`
}
func ReadTemplate(path string) (supervisor Supervisor, err error) {
content, err := os.ReadFile(path)
if err != nil {
@@ -38,20 +27,33 @@ func (s *Supervisor) StartProcesses() error {
})
for _, p := range s.Processes {
go func() {
p.process = exec.Command(p.ExecutePath, p.Arguments...)
//cmd.Env = append(cmd.Env, "MY_VAR=some_value")
p.process.Dir = p.WorkingDirectory
output, err := p.process.Output()
if err != nil {
fmt.Println("Error:", err)
}
fmt.Println("Output:", string(output))
}()
p.Start()
}
fmt.Println(3)
return nil
}
func (s *Supervisor) GetProcesses() (processes []SupervisorProcess) {
for _, p := range s.Processes {
processes = append(processes, *p)
}
return
}
func (s *Supervisor) StartProcessByName(name string) error {
for _, p := range s.Processes {
if p.Name == name {
return p.Start()
}
}
return fmt.Errorf("process %s not found", name)
}
func (s *Supervisor) StopProcessByName(name string) error {
for _, p := range s.Processes {
if p.Name == name {
return p.Stop()
}
}
return fmt.Errorf("process %s not found", name)
}

View File

@@ -0,0 +1,92 @@
package models
import (
"context"
"fmt"
"os"
"os/exec"
"strings"
"time"
)
type SupervisorProcess struct {
Name string `json:"name"`
ExecutePath string `json:"executePath"`
WorkingDirectory string `json:"workingDirectory,omitempty"`
StartDelay int `json:"startDelay,omitempty"`
Priority int `json:"priority,omitempty"`
Arguments []string `json:"arguments,omitempty"`
process *exec.Cmd `json:"-"`
cancel *context.CancelFunc `json:"-"`
Running bool `json:"-"`
}
func (p *SupervisorProcess) Start() error {
if p.process != nil && p.process.Process != nil {
return fmt.Errorf("process %s already running", p.Name)
}
ctx, cancel := context.WithCancel(context.Background())
p.cancel = &cancel
var args []string
for _, arg := range p.Arguments {
fields := strings.Fields(arg)
args = append(args, fields...)
}
cmd := exec.CommandContext(ctx, p.ExecutePath, args...)
cmd.Dir = p.WorkingDirectory
cmd.Stdout = os.Stdout
cmd.Stderr = os.Stderr
p.process = cmd
time.Sleep(time.Duration(p.StartDelay) * time.Millisecond)
if err := cmd.Start(); err != nil {
return fmt.Errorf("failed to start process %s: %w", p.Name, err)
}
go func() {
defer func() {
p.Running = false
}()
p.Running = true
err := cmd.Wait()
if err != nil {
fmt.Printf("Process %s exited with error: %v\n", p.Name, err)
} else {
fmt.Printf("Process %s exited successfully\n", p.Name)
}
}()
return nil
}
func (p *SupervisorProcess) Stop() error {
defer func() {
p.Running = false
}()
if p.process == nil || p.process.Process == nil {
return fmt.Errorf("process %s is not running", p.Name)
}
// Cancel the context
if p.cancel != nil {
(*p.cancel)()
}
err := p.process.Process.Kill()
if err != nil {
return fmt.Errorf("failed to kill process %s: %w", p.Name, err)
}
p.process = nil
p.cancel = nil
fmt.Printf("Process %s stopped.\n", p.Name)
return nil
}