2017-01-28 22:39:52 +08:00
|
|
|
package eval
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2017-01-29 10:29:03 +08:00
|
|
|
"strconv"
|
|
|
|
"syscall"
|
2017-08-31 02:52:27 +08:00
|
|
|
"unsafe"
|
2017-01-28 22:39:52 +08:00
|
|
|
|
2020-03-29 21:53:34 +08:00
|
|
|
"github.com/elves/elvish/pkg/diag"
|
2019-12-24 04:00:59 +08:00
|
|
|
"github.com/elves/elvish/pkg/eval/vals"
|
|
|
|
"github.com/elves/elvish/pkg/parse"
|
2017-08-31 02:52:27 +08:00
|
|
|
"github.com/xiaq/persistent/hash"
|
2017-01-28 22:39:52 +08:00
|
|
|
)
|
|
|
|
|
2017-01-29 10:29:03 +08:00
|
|
|
// Exception represents an elvish exception. It is both a Value accessible to
|
|
|
|
// elvishscript, and the type of error returned by public facing evaluation
|
|
|
|
// methods like (*Evaler)PEval.
|
2017-01-28 22:39:52 +08:00
|
|
|
type Exception struct {
|
2020-06-30 04:26:10 +08:00
|
|
|
Reason error
|
2020-09-03 12:54:32 +08:00
|
|
|
StackTrace *StackTrace
|
2017-01-28 22:39:52 +08:00
|
|
|
}
|
|
|
|
|
2020-09-03 12:54:32 +08:00
|
|
|
// StackTrace represents a stack trace as a linked list of diag.Context. The
|
|
|
|
// head is the innermost stack.
|
|
|
|
//
|
|
|
|
// Since pipelines can call multiple functions in parallel, all the StackTrace
|
|
|
|
// nodes form a DAG.
|
|
|
|
type StackTrace struct {
|
|
|
|
Head *diag.Context
|
|
|
|
Next *StackTrace
|
2020-03-29 21:53:34 +08:00
|
|
|
}
|
|
|
|
|
2020-09-05 04:04:58 +08:00
|
|
|
// Reason returns the Reason field if err is an *Exception. Otherwise it returns
|
2018-10-09 21:21:26 +08:00
|
|
|
// err itself.
|
2020-09-05 04:04:58 +08:00
|
|
|
func Reason(err error) error {
|
2018-10-09 21:21:26 +08:00
|
|
|
if exc, ok := err.(*Exception); ok {
|
2020-06-30 04:26:10 +08:00
|
|
|
return exc.Reason
|
2018-10-09 21:21:26 +08:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-05-22 06:57:57 +08:00
|
|
|
// OK is a pointer to the zero value of Exception, representing the absence of
|
2017-01-29 10:29:03 +08:00
|
|
|
// exception.
|
|
|
|
var OK = &Exception{}
|
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// Error returns the message of the cause of the exception.
|
2017-01-28 22:39:52 +08:00
|
|
|
func (exc *Exception) Error() string {
|
2020-06-30 04:26:10 +08:00
|
|
|
return exc.Reason.Error()
|
2017-01-28 22:39:52 +08:00
|
|
|
}
|
|
|
|
|
2020-03-31 07:27:08 +08:00
|
|
|
// Show shows the exception.
|
|
|
|
func (exc *Exception) Show(indent string) string {
|
2017-01-28 22:39:52 +08:00
|
|
|
buf := new(bytes.Buffer)
|
2017-12-19 07:13:41 +08:00
|
|
|
|
|
|
|
var causeDescription string
|
2020-06-30 04:26:10 +08:00
|
|
|
if shower, ok := exc.Reason.(diag.Shower); ok {
|
2020-03-31 07:27:08 +08:00
|
|
|
causeDescription = shower.Show(indent)
|
2020-07-02 04:48:03 +08:00
|
|
|
} else if exc.Reason == nil {
|
|
|
|
causeDescription = "ok"
|
2017-01-29 10:29:03 +08:00
|
|
|
} else {
|
2020-06-30 04:26:10 +08:00
|
|
|
causeDescription = "\033[31;1m" + exc.Reason.Error() + "\033[m"
|
2017-01-29 10:29:03 +08:00
|
|
|
}
|
2020-07-05 02:07:56 +08:00
|
|
|
fmt.Fprintf(buf, "Exception: %s", causeDescription)
|
2017-01-28 22:39:52 +08:00
|
|
|
|
2020-07-05 02:07:56 +08:00
|
|
|
if exc.StackTrace != nil {
|
|
|
|
buf.WriteString("\n")
|
2020-09-03 12:54:32 +08:00
|
|
|
if exc.StackTrace.Next == nil {
|
|
|
|
buf.WriteString(exc.StackTrace.Head.ShowCompact(indent))
|
2020-07-05 02:07:56 +08:00
|
|
|
} else {
|
|
|
|
buf.WriteString(indent + "Traceback:")
|
2020-09-03 12:54:32 +08:00
|
|
|
for tb := exc.StackTrace; tb != nil; tb = tb.Next {
|
2020-07-05 02:07:56 +08:00
|
|
|
buf.WriteString("\n" + indent + " ")
|
2020-09-03 12:54:32 +08:00
|
|
|
buf.WriteString(tb.Head.Show(indent + " "))
|
2020-07-05 02:07:56 +08:00
|
|
|
}
|
2017-12-19 07:13:41 +08:00
|
|
|
}
|
2017-01-28 22:39:52 +08:00
|
|
|
}
|
|
|
|
|
2020-06-30 04:26:10 +08:00
|
|
|
if pipeExcs, ok := exc.Reason.(PipelineError); ok {
|
2017-01-30 02:35:18 +08:00
|
|
|
buf.WriteString("\n" + indent + "Caused by:")
|
|
|
|
for _, e := range pipeExcs.Errors {
|
2017-06-20 04:57:51 +08:00
|
|
|
if e == OK {
|
|
|
|
continue
|
|
|
|
}
|
2020-03-31 07:27:08 +08:00
|
|
|
buf.WriteString("\n" + indent + " " + e.Show(indent+" "))
|
2017-01-30 02:35:18 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-28 22:39:52 +08:00
|
|
|
return buf.String()
|
|
|
|
}
|
2017-01-29 10:29:03 +08:00
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// Kind returns "exception".
|
2017-01-29 10:29:03 +08:00
|
|
|
func (exc *Exception) Kind() string {
|
|
|
|
return "exception"
|
|
|
|
}
|
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// Repr returns a representation of the exception. It is lossy in that it does
|
|
|
|
// not preserve the stacktrace.
|
2017-01-29 10:29:03 +08:00
|
|
|
func (exc *Exception) Repr(indent int) string {
|
2020-06-30 04:26:10 +08:00
|
|
|
if exc.Reason == nil {
|
2017-01-29 10:29:03 +08:00
|
|
|
return "$ok"
|
|
|
|
}
|
2020-07-01 05:26:01 +08:00
|
|
|
return "[&reason=" + vals.Repr(exc.Reason, indent+1) + "]"
|
2017-01-29 10:29:03 +08:00
|
|
|
}
|
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// Equal compares by address.
|
2017-08-31 01:47:50 +08:00
|
|
|
func (exc *Exception) Equal(rhs interface{}) bool {
|
2017-07-14 08:15:14 +08:00
|
|
|
return exc == rhs
|
|
|
|
}
|
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// Hash returns the hash of the address.
|
2017-08-31 02:52:27 +08:00
|
|
|
func (exc *Exception) Hash() uint32 {
|
|
|
|
return hash.Pointer(unsafe.Pointer(exc))
|
|
|
|
}
|
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// Bool returns whether this exception has a nil cause; that is, it is $ok.
|
2017-01-29 10:29:03 +08:00
|
|
|
func (exc *Exception) Bool() bool {
|
2020-06-30 04:26:10 +08:00
|
|
|
return exc.Reason == nil
|
2017-01-29 10:29:03 +08:00
|
|
|
}
|
|
|
|
|
2020-06-30 04:26:10 +08:00
|
|
|
func (exc *Exception) Fields() vals.StructMap { return excFields{exc} }
|
2018-03-08 21:15:18 +08:00
|
|
|
|
2020-06-30 04:26:10 +08:00
|
|
|
type excFields struct{ e *Exception }
|
|
|
|
|
|
|
|
func (excFields) IsStructMap() {}
|
|
|
|
func (f excFields) Reason() error { return f.e.Reason }
|
2018-03-08 21:15:18 +08:00
|
|
|
|
2017-01-29 10:29:03 +08:00
|
|
|
// PipelineError represents the errors of pipelines, in which multiple commands
|
|
|
|
// may error.
|
|
|
|
type PipelineError struct {
|
|
|
|
Errors []*Exception
|
|
|
|
}
|
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// Error returns a plain text representation of the pipeline error.
|
2017-01-29 10:29:03 +08:00
|
|
|
func (pe PipelineError) Error() string {
|
|
|
|
b := new(bytes.Buffer)
|
|
|
|
b.WriteString("(")
|
|
|
|
for i, e := range pe.Errors {
|
|
|
|
if i > 0 {
|
|
|
|
b.WriteString(" | ")
|
|
|
|
}
|
2020-06-30 04:26:10 +08:00
|
|
|
if e == nil || e.Reason == nil {
|
2017-01-29 10:29:03 +08:00
|
|
|
b.WriteString("<nil>")
|
|
|
|
} else {
|
|
|
|
b.WriteString(e.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b.WriteString(")")
|
|
|
|
return b.String()
|
|
|
|
}
|
|
|
|
|
2020-09-05 05:10:47 +08:00
|
|
|
// MakePipelineError builds an error from the execution results of multiple
|
|
|
|
// commands in a pipeline.
|
2020-04-10 08:25:55 +08:00
|
|
|
//
|
2020-09-03 13:48:39 +08:00
|
|
|
// If all elements are either nil or OK, it returns nil. If there is exactly
|
|
|
|
// non-nil non-OK Exception, it returns it. Otherwise, it return a PipelineError
|
|
|
|
// built from the slice, with nil items turned into OK's for easier access from
|
|
|
|
// Elvish code.
|
|
|
|
func MakePipelineError(excs []*Exception) error {
|
2017-01-30 01:56:13 +08:00
|
|
|
newexcs := make([]*Exception, len(excs))
|
|
|
|
notOK, lastNotOK := 0, 0
|
|
|
|
for i, e := range excs {
|
|
|
|
if e == nil {
|
|
|
|
newexcs[i] = OK
|
|
|
|
} else {
|
|
|
|
newexcs[i] = e
|
2020-06-30 04:26:10 +08:00
|
|
|
if e.Reason != nil {
|
2017-01-30 01:56:13 +08:00
|
|
|
notOK++
|
|
|
|
lastNotOK = i
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch notOK {
|
|
|
|
case 0:
|
|
|
|
return nil
|
|
|
|
case 1:
|
|
|
|
return newexcs[lastNotOK]
|
|
|
|
default:
|
|
|
|
return PipelineError{newexcs}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 05:26:01 +08:00
|
|
|
func (pe PipelineError) Fields() vals.StructMap { return peFields{pe} }
|
|
|
|
|
|
|
|
type peFields struct{ pe PipelineError }
|
|
|
|
|
|
|
|
func (peFields) IsStructMap() {}
|
|
|
|
|
|
|
|
func (f peFields) Type() string { return "pipeline" }
|
|
|
|
|
|
|
|
func (f peFields) Exceptions() vals.List {
|
|
|
|
li := vals.EmptyList
|
|
|
|
for _, exc := range f.pe.Errors {
|
|
|
|
li = li.Cons(exc)
|
|
|
|
}
|
|
|
|
return li
|
|
|
|
}
|
|
|
|
|
2017-01-29 10:29:03 +08:00
|
|
|
// Flow is a special type of error used for control flows.
|
|
|
|
type Flow uint
|
|
|
|
|
|
|
|
// Control flows.
|
|
|
|
const (
|
|
|
|
Return Flow = iota
|
|
|
|
Break
|
|
|
|
Continue
|
|
|
|
)
|
|
|
|
|
|
|
|
var flowNames = [...]string{
|
|
|
|
"return", "break", "continue",
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f Flow) Error() string {
|
|
|
|
if f >= Flow(len(flowNames)) {
|
2020-03-31 07:36:55 +08:00
|
|
|
return fmt.Sprintf("!(BAD FLOW: %d)", f)
|
2017-01-29 10:29:03 +08:00
|
|
|
}
|
|
|
|
return flowNames[f]
|
|
|
|
}
|
|
|
|
|
2020-03-31 07:27:08 +08:00
|
|
|
// Show shows the flow "error".
|
|
|
|
func (f Flow) Show(string) string {
|
2017-01-29 10:29:03 +08:00
|
|
|
return "\033[33;1m" + f.Error() + "\033[m"
|
|
|
|
}
|
|
|
|
|
2020-07-01 05:26:01 +08:00
|
|
|
func (f Flow) Fields() vals.StructMap { return flowFields{f} }
|
|
|
|
|
|
|
|
type flowFields struct{ f Flow }
|
|
|
|
|
|
|
|
func (flowFields) IsStructMap() {}
|
|
|
|
|
|
|
|
func (f flowFields) Type() string { return "flow" }
|
|
|
|
func (f flowFields) Name() string { return f.f.Error() }
|
|
|
|
|
2020-03-31 06:38:40 +08:00
|
|
|
// ExternalCmdExit contains the exit status of external commands.
|
2017-01-29 10:29:03 +08:00
|
|
|
type ExternalCmdExit struct {
|
|
|
|
syscall.WaitStatus
|
|
|
|
CmdName string
|
|
|
|
Pid int
|
|
|
|
}
|
|
|
|
|
2019-04-19 05:15:34 +08:00
|
|
|
// NewExternalCmdExit constructs an error for representing a non-zero exit from
|
|
|
|
// an external command.
|
2017-01-29 10:29:03 +08:00
|
|
|
func NewExternalCmdExit(name string, ws syscall.WaitStatus, pid int) error {
|
|
|
|
if ws.Exited() && ws.ExitStatus() == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return ExternalCmdExit{ws, name, pid}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (exit ExternalCmdExit) Error() string {
|
|
|
|
ws := exit.WaitStatus
|
|
|
|
quotedName := parse.Quote(exit.CmdName)
|
|
|
|
switch {
|
|
|
|
case ws.Exited():
|
|
|
|
return quotedName + " exited with " + strconv.Itoa(ws.ExitStatus())
|
|
|
|
case ws.Signaled():
|
2017-12-19 07:13:41 +08:00
|
|
|
causeDescription := quotedName + " killed by signal " + ws.Signal().String()
|
2017-01-29 10:29:03 +08:00
|
|
|
if ws.CoreDump() {
|
2017-12-19 07:13:41 +08:00
|
|
|
causeDescription += " (core dumped)"
|
2017-01-29 10:29:03 +08:00
|
|
|
}
|
2017-12-19 07:13:41 +08:00
|
|
|
return causeDescription
|
2017-01-29 10:29:03 +08:00
|
|
|
case ws.Stopped():
|
2017-12-19 07:13:41 +08:00
|
|
|
causeDescription := quotedName + " stopped by signal " + fmt.Sprintf("%s (pid=%d)", ws.StopSignal(), exit.Pid)
|
2017-01-29 10:29:03 +08:00
|
|
|
trap := ws.TrapCause()
|
|
|
|
if trap != -1 {
|
2017-12-19 07:13:41 +08:00
|
|
|
causeDescription += fmt.Sprintf(" (trapped %v)", trap)
|
2017-01-29 10:29:03 +08:00
|
|
|
}
|
2017-12-19 07:13:41 +08:00
|
|
|
return causeDescription
|
2017-01-29 10:29:03 +08:00
|
|
|
default:
|
|
|
|
return fmt.Sprint(quotedName, " has unknown WaitStatus ", ws)
|
|
|
|
}
|
|
|
|
}
|
2020-07-01 05:26:01 +08:00
|
|
|
|
|
|
|
func (exit ExternalCmdExit) Fields() vals.StructMap {
|
|
|
|
ws := exit.WaitStatus
|
|
|
|
f := exitFieldsCommon{exit}
|
|
|
|
switch {
|
|
|
|
case ws.Exited():
|
|
|
|
return exitFieldsExited{f}
|
|
|
|
case ws.Signaled():
|
|
|
|
return exitFieldsSignaled{f}
|
|
|
|
case ws.Stopped():
|
|
|
|
return exitFieldsStopped{f}
|
|
|
|
default:
|
|
|
|
return exitFieldsUnknown{f}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type exitFieldsCommon struct{ e ExternalCmdExit }
|
|
|
|
|
|
|
|
func (exitFieldsCommon) IsStructMap() {}
|
|
|
|
func (f exitFieldsCommon) CmdName() string { return f.e.CmdName }
|
|
|
|
func (f exitFieldsCommon) Pid() string { return strconv.Itoa(f.e.Pid) }
|
|
|
|
|
|
|
|
type exitFieldsExited struct{ exitFieldsCommon }
|
|
|
|
|
|
|
|
func (exitFieldsExited) Type() string { return "external-cmd/exited" }
|
|
|
|
func (f exitFieldsExited) ExitStatus() string { return strconv.Itoa(f.e.ExitStatus()) }
|
|
|
|
|
|
|
|
type exitFieldsSignaled struct{ exitFieldsCommon }
|
|
|
|
|
|
|
|
func (f exitFieldsSignaled) Type() string { return "external-cmd/signaled" }
|
|
|
|
func (f exitFieldsSignaled) SignalName() string { return f.e.Signal().String() }
|
|
|
|
func (f exitFieldsSignaled) SignalNumber() string { return strconv.Itoa(int(f.e.Signal())) }
|
|
|
|
func (f exitFieldsSignaled) CoreDumped() bool { return f.e.CoreDump() }
|
|
|
|
|
|
|
|
type exitFieldsStopped struct{ exitFieldsCommon }
|
|
|
|
|
|
|
|
func (f exitFieldsStopped) Type() string { return "external-cmd/stopped" }
|
|
|
|
func (f exitFieldsStopped) SignalName() string { return f.e.StopSignal().String() }
|
|
|
|
func (f exitFieldsStopped) SignalNumber() string { return strconv.Itoa(int(f.e.StopSignal())) }
|
|
|
|
func (f exitFieldsStopped) TrapCause() int { return f.e.TrapCause() }
|
|
|
|
|
|
|
|
type exitFieldsUnknown struct{ exitFieldsCommon }
|
|
|
|
|
|
|
|
func (exitFieldsUnknown) Type() string { return "external-cmd/unknown" }
|