micro/runtime/process/os/os.go

101 lines
1.6 KiB
Go
Raw Normal View History

2019-11-23 11:25:56 +03:00
// +build !windows
2019-05-31 02:26:34 +03:00
// Package os runs processes locally
package os
import (
"fmt"
"os"
"os/exec"
"strconv"
"syscall"
2019-05-31 02:26:34 +03:00
2019-05-31 02:27:41 +03:00
"github.com/micro/go-micro/runtime/process"
2019-05-31 02:26:34 +03:00
)
func (p *Process) Exec(exe *process.Executable) error {
2019-11-19 19:09:43 +03:00
cmd := exec.Command(exe.Package.Path)
2019-05-31 02:26:34 +03:00
return cmd.Run()
}
func (p *Process) Fork(exe *process.Executable) (*process.PID, error) {
2019-09-14 07:33:14 +03:00
// create command
2019-11-19 19:09:43 +03:00
cmd := exec.Command(exe.Package.Path, exe.Args...)
2019-09-14 07:33:14 +03:00
// set env vars
cmd.Env = append(cmd.Env, exe.Env...)
// create process group
cmd.SysProcAttr = &syscall.SysProcAttr{Setpgid: true}
2019-05-31 02:26:34 +03:00
in, err := cmd.StdinPipe()
if err != nil {
return nil, err
}
out, err := cmd.StdoutPipe()
if err != nil {
return nil, err
}
er, err := cmd.StderrPipe()
if err != nil {
return nil, err
}
2019-09-14 07:33:14 +03:00
// start the process
if err := cmd.Start(); err != nil {
return nil, err
}
2019-05-31 02:26:34 +03:00
return &process.PID{
ID: fmt.Sprintf("%d", cmd.Process.Pid),
Input: in,
Output: out,
Error: er,
}, nil
}
func (p *Process) Kill(pid *process.PID) error {
id, err := strconv.Atoi(pid.ID)
if err != nil {
return err
}
pr, err := os.FindProcess(id)
if err != nil {
return err
}
// now kill it
err = pr.Kill()
// kill the group
if pgid, err := syscall.Getpgid(id); err == nil {
syscall.Kill(-pgid, syscall.SIGKILL)
}
// return the kill error
return err
2019-05-31 02:26:34 +03:00
}
func (p *Process) Wait(pid *process.PID) error {
id, err := strconv.Atoi(pid.ID)
if err != nil {
return err
}
pr, err := os.FindProcess(id)
if err != nil {
return err
}
ps, err := pr.Wait()
if err != nil {
return err
}
if ps.Success() {
return nil
}
return fmt.Errorf(ps.String())
}