mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-12 17:27:50 +08:00
85 lines
1.5 KiB
Go
85 lines
1.5 KiB
Go
|
// +build !windows
|
||
|
// +build !plan9
|
||
|
|
||
|
package eval
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"strconv"
|
||
|
"syscall"
|
||
|
|
||
|
"github.com/elves/elvish/sys"
|
||
|
)
|
||
|
|
||
|
func exec(ec *EvalCtx, args []Value, opts map[string]Value) {
|
||
|
TakeNoOpt(opts)
|
||
|
|
||
|
var argstrings []string
|
||
|
if len(args) == 0 {
|
||
|
argstrings = []string{"elvish"}
|
||
|
} else {
|
||
|
argstrings = make([]string, len(args))
|
||
|
for i, a := range args {
|
||
|
argstrings[i] = ToString(a)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var err error
|
||
|
argstrings[0], err = ec.Search(argstrings[0])
|
||
|
maybeThrow(err)
|
||
|
|
||
|
preExit(ec)
|
||
|
|
||
|
err = syscall.Exec(argstrings[0], argstrings, os.Environ())
|
||
|
maybeThrow(err)
|
||
|
}
|
||
|
|
||
|
func fg(ec *EvalCtx, args []Value, opts map[string]Value) {
|
||
|
var pids []int
|
||
|
ScanArgsVariadic(args, &pids)
|
||
|
TakeNoOpt(opts)
|
||
|
|
||
|
if len(pids) == 0 {
|
||
|
throw(ErrArgs)
|
||
|
}
|
||
|
var thepgid int
|
||
|
for i, pid := range pids {
|
||
|
pgid, err := syscall.Getpgid(pid)
|
||
|
maybeThrow(err)
|
||
|
if i == 0 {
|
||
|
thepgid = pgid
|
||
|
} else if pgid != thepgid {
|
||
|
throw(ErrNotInSameGroup)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
err := sys.Tcsetpgrp(0, thepgid)
|
||
|
maybeThrow(err)
|
||
|
|
||
|
errors := make([]*Exception, len(pids))
|
||
|
|
||
|
for i, pid := range pids {
|
||
|
err := syscall.Kill(pid, syscall.SIGCONT)
|
||
|
if err != nil {
|
||
|
errors[i] = &Exception{err, nil}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for i, pid := range pids {
|
||
|
if errors[i] != nil {
|
||
|
continue
|
||
|
}
|
||
|
var ws syscall.WaitStatus
|
||
|
_, err = syscall.Wait4(pid, &ws, syscall.WUNTRACED, nil)
|
||
|
if err != nil {
|
||
|
errors[i] = &Exception{err, nil}
|
||
|
} else {
|
||
|
// TODO find command name
|
||
|
errors[i] = &Exception{NewExternalCmdExit(
|
||
|
"[pid "+strconv.Itoa(pid)+"]", ws, pid), nil}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
maybeThrow(ComposeExceptionsFromPipeline(errors))
|
||
|
}
|