2019-02-02 16:18:25 +08:00
|
|
|
// Copyright 2018 gf Author(https://github.com/gogf/gf). All Rights Reserved.
|
2018-05-08 18:41:29 +08:00
|
|
|
//
|
|
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
|
|
// If a copy of the MIT was not distributed with this file,
|
2019-02-02 16:18:25 +08:00
|
|
|
// You can obtain one at https://github.com/gogf/gf.
|
2018-05-08 18:41:29 +08:00
|
|
|
|
2018-05-09 18:29:46 +08:00
|
|
|
package gproc
|
2018-05-08 18:41:29 +08:00
|
|
|
|
|
|
|
import (
|
2019-06-19 09:06:52 +08:00
|
|
|
"errors"
|
|
|
|
"fmt"
|
2020-04-14 00:20:39 +08:00
|
|
|
"github.com/gogf/gf/internal/intlog"
|
2019-06-19 09:06:52 +08:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2020-01-10 22:32:07 +08:00
|
|
|
"runtime"
|
2019-06-19 09:06:52 +08:00
|
|
|
"strings"
|
2018-05-08 18:41:29 +08:00
|
|
|
)
|
|
|
|
|
2019-12-14 17:01:27 +08:00
|
|
|
// Process is the struct for a single process.
|
2018-05-09 18:29:46 +08:00
|
|
|
type Process struct {
|
2019-06-19 09:06:52 +08:00
|
|
|
exec.Cmd
|
2019-12-14 17:01:27 +08:00
|
|
|
Manager *Manager
|
|
|
|
PPid int
|
2018-06-29 13:03:29 +08:00
|
|
|
}
|
|
|
|
|
2019-12-14 17:01:27 +08:00
|
|
|
// NewProcess creates and returns a new Process.
|
2019-06-19 09:06:52 +08:00
|
|
|
func NewProcess(path string, args []string, environment ...[]string) *Process {
|
2020-01-19 20:42:21 +08:00
|
|
|
env := os.Environ()
|
2019-06-19 09:06:52 +08:00
|
|
|
if len(environment) > 0 {
|
2020-01-19 20:42:21 +08:00
|
|
|
for k, v := range environment[0] {
|
|
|
|
env[k] = v
|
|
|
|
}
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2019-12-11 21:22:41 +08:00
|
|
|
process := &Process{
|
2019-06-19 09:06:52 +08:00
|
|
|
Manager: nil,
|
|
|
|
PPid: os.Getpid(),
|
|
|
|
Cmd: exec.Cmd{
|
|
|
|
Args: []string{path},
|
|
|
|
Path: path,
|
|
|
|
Stdin: os.Stdin,
|
|
|
|
Stdout: os.Stdout,
|
|
|
|
Stderr: os.Stderr,
|
|
|
|
Env: env,
|
|
|
|
ExtraFiles: make([]*os.File, 0),
|
|
|
|
},
|
|
|
|
}
|
2019-12-11 21:22:41 +08:00
|
|
|
process.Dir, _ = os.Getwd()
|
2019-06-19 09:06:52 +08:00
|
|
|
if len(args) > 0 {
|
2019-12-11 21:22:41 +08:00
|
|
|
// Exclude of current binary path.
|
2019-06-19 09:06:52 +08:00
|
|
|
start := 0
|
|
|
|
if strings.EqualFold(path, args[0]) {
|
|
|
|
start = 1
|
|
|
|
}
|
2019-12-11 21:22:41 +08:00
|
|
|
process.Args = append(process.Args, args[start:]...)
|
2019-06-19 09:06:52 +08:00
|
|
|
}
|
2019-12-11 21:22:41 +08:00
|
|
|
return process
|
2018-05-09 18:29:46 +08:00
|
|
|
}
|
|
|
|
|
2019-12-09 21:53:44 +08:00
|
|
|
// NewProcessCmd creates and returns a process with given command and optional environment variable array.
|
|
|
|
func NewProcessCmd(cmd string, environment ...[]string) *Process {
|
2019-12-14 17:01:27 +08:00
|
|
|
return NewProcess(getShell(), append([]string{getShellOption()}, parseCommand(cmd)...), environment...)
|
2019-12-09 21:53:44 +08:00
|
|
|
}
|
|
|
|
|
2019-12-14 17:01:27 +08:00
|
|
|
// Start starts executing the process in non-blocking way.
|
|
|
|
// It returns the pid if success, or else it returns an error.
|
2018-05-13 00:17:12 +08:00
|
|
|
func (p *Process) Start() (int, error) {
|
2019-06-19 09:06:52 +08:00
|
|
|
if p.Process != nil {
|
|
|
|
return p.Pid(), nil
|
|
|
|
}
|
|
|
|
p.Env = append(p.Env, fmt.Sprintf("%s=%d", gPROC_ENV_KEY_PPID_KEY, p.PPid))
|
|
|
|
if err := p.Cmd.Start(); err == nil {
|
|
|
|
if p.Manager != nil {
|
|
|
|
p.Manager.processes.Set(p.Process.Pid, p)
|
|
|
|
}
|
|
|
|
return p.Process.Pid, nil
|
|
|
|
} else {
|
|
|
|
return 0, err
|
|
|
|
}
|
2018-05-08 18:41:29 +08:00
|
|
|
}
|
|
|
|
|
2019-12-14 17:01:27 +08:00
|
|
|
// Run executes the process in blocking way.
|
2018-05-13 00:17:12 +08:00
|
|
|
func (p *Process) Run() error {
|
2019-06-19 09:06:52 +08:00
|
|
|
if _, err := p.Start(); err == nil {
|
|
|
|
return p.Wait()
|
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
2018-05-08 18:41:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// PID
|
|
|
|
func (p *Process) Pid() int {
|
2019-06-19 09:06:52 +08:00
|
|
|
if p.Process != nil {
|
|
|
|
return p.Process.Pid
|
|
|
|
}
|
|
|
|
return 0
|
2018-05-08 18:41:29 +08:00
|
|
|
}
|
|
|
|
|
2019-12-14 17:01:27 +08:00
|
|
|
// Send send custom data to the process.
|
2018-05-18 15:45:08 +08:00
|
|
|
func (p *Process) Send(data []byte) error {
|
2019-06-19 09:06:52 +08:00
|
|
|
if p.Process != nil {
|
|
|
|
return Send(p.Process.Pid, data)
|
|
|
|
}
|
|
|
|
return errors.New("invalid process")
|
2018-05-10 16:07:14 +08:00
|
|
|
}
|
|
|
|
|
2018-05-08 18:41:29 +08:00
|
|
|
// Release releases any resources associated with the Process p,
|
|
|
|
// rendering it unusable in the future.
|
|
|
|
// Release only needs to be called if Wait is not.
|
|
|
|
func (p *Process) Release() error {
|
2019-06-19 09:06:52 +08:00
|
|
|
return p.Process.Release()
|
2018-05-08 18:41:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Kill causes the Process to exit immediately.
|
|
|
|
func (p *Process) Kill() error {
|
2019-06-19 09:06:52 +08:00
|
|
|
if err := p.Process.Kill(); err == nil {
|
|
|
|
if p.Manager != nil {
|
|
|
|
p.Manager.processes.Remove(p.Pid())
|
|
|
|
}
|
2020-01-10 22:32:07 +08:00
|
|
|
if runtime.GOOS != "windows" {
|
2020-04-13 23:44:43 +08:00
|
|
|
if err = p.Process.Release(); err != nil {
|
2020-04-14 00:20:39 +08:00
|
|
|
intlog.Error(err)
|
|
|
|
//return err
|
2020-04-13 23:44:43 +08:00
|
|
|
}
|
2020-01-10 22:32:07 +08:00
|
|
|
}
|
2020-04-13 23:44:43 +08:00
|
|
|
_, err = p.Process.Wait()
|
2020-04-14 00:20:39 +08:00
|
|
|
intlog.Error(err)
|
|
|
|
//return err
|
|
|
|
return nil
|
2019-06-19 09:06:52 +08:00
|
|
|
} else {
|
|
|
|
return err
|
|
|
|
}
|
2018-05-08 18:41:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Signal sends a signal to the Process.
|
|
|
|
// Sending Interrupt on Windows is not implemented.
|
|
|
|
func (p *Process) Signal(sig os.Signal) error {
|
2019-06-19 09:06:52 +08:00
|
|
|
return p.Process.Signal(sig)
|
2018-06-01 00:11:45 +08:00
|
|
|
}
|