add and modify new index page
This commit is contained in:
@@ -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)
|
||||
}
|
||||
|
Reference in New Issue
Block a user