2017-02-25 22:37:07 +00:00
|
|
|
package localcommand
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"os/exec"
|
|
|
|
"syscall"
|
|
|
|
"time"
|
|
|
|
|
2021-04-11 06:38:29 +00:00
|
|
|
"github.com/creack/pty"
|
2017-02-25 22:37:07 +00:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
DefaultCloseSignal = syscall.SIGINT
|
|
|
|
DefaultCloseTimeout = 10 * time.Second
|
|
|
|
)
|
|
|
|
|
|
|
|
type LocalCommand struct {
|
|
|
|
command string
|
|
|
|
argv []string
|
|
|
|
|
|
|
|
closeSignal syscall.Signal
|
|
|
|
closeTimeout time.Duration
|
|
|
|
|
|
|
|
cmd *exec.Cmd
|
|
|
|
pty *os.File
|
|
|
|
ptyClosed chan struct{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func New(command string, argv []string, options ...Option) (*LocalCommand, error) {
|
|
|
|
cmd := exec.Command(command, argv...)
|
|
|
|
|
|
|
|
pty, err := pty.Start(cmd)
|
|
|
|
if err != nil {
|
|
|
|
// todo close cmd?
|
|
|
|
return nil, errors.Wrapf(err, "failed to start command `%s`", command)
|
|
|
|
}
|
|
|
|
ptyClosed := make(chan struct{})
|
|
|
|
|
|
|
|
lcmd := &LocalCommand{
|
|
|
|
command: command,
|
|
|
|
argv: argv,
|
|
|
|
|
|
|
|
closeSignal: DefaultCloseSignal,
|
|
|
|
closeTimeout: DefaultCloseTimeout,
|
|
|
|
|
|
|
|
cmd: cmd,
|
|
|
|
pty: pty,
|
|
|
|
ptyClosed: ptyClosed,
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, option := range options {
|
|
|
|
option(lcmd)
|
|
|
|
}
|
|
|
|
|
|
|
|
// When the process is closed by the user,
|
|
|
|
// close pty so that Read() on the pty breaks with an EOF.
|
|
|
|
go func() {
|
|
|
|
defer func() {
|
|
|
|
lcmd.pty.Close()
|
|
|
|
close(lcmd.ptyClosed)
|
|
|
|
}()
|
|
|
|
|
|
|
|
lcmd.cmd.Wait()
|
|
|
|
}()
|
|
|
|
|
|
|
|
return lcmd, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lcmd *LocalCommand) Read(p []byte) (n int, err error) {
|
|
|
|
return lcmd.pty.Read(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lcmd *LocalCommand) Write(p []byte) (n int, err error) {
|
|
|
|
return lcmd.pty.Write(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lcmd *LocalCommand) Close() error {
|
|
|
|
if lcmd.cmd != nil && lcmd.cmd.Process != nil {
|
|
|
|
lcmd.cmd.Process.Signal(lcmd.closeSignal)
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-lcmd.ptyClosed:
|
|
|
|
return nil
|
|
|
|
case <-lcmd.closeTimeoutC():
|
|
|
|
lcmd.cmd.Process.Signal(syscall.SIGKILL)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lcmd *LocalCommand) WindowTitleVariables() map[string]interface{} {
|
|
|
|
return map[string]interface{}{
|
|
|
|
"command": lcmd.command,
|
|
|
|
"argv": lcmd.argv,
|
|
|
|
"pid": lcmd.cmd.Process.Pid,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lcmd *LocalCommand) ResizeTerminal(width int, height int) error {
|
2018-12-28 01:28:48 +00:00
|
|
|
window := pty.Winsize{
|
|
|
|
Rows: uint16(height),
|
|
|
|
Cols: uint16(width),
|
2021-04-11 06:38:29 +00:00
|
|
|
X: 0,
|
|
|
|
Y: 0,
|
2017-02-25 22:37:07 +00:00
|
|
|
}
|
2018-12-28 01:28:48 +00:00
|
|
|
err := pty.Setsize(lcmd.pty, &window)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2017-02-25 22:37:07 +00:00
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (lcmd *LocalCommand) closeTimeoutC() <-chan time.Time {
|
|
|
|
if lcmd.closeTimeout >= 0 {
|
|
|
|
return time.After(lcmd.closeTimeout)
|
|
|
|
}
|
|
|
|
|
|
|
|
return make(chan time.Time)
|
|
|
|
}
|