elvish/pkg/eval/frame.go
Qi Xiao 1788c13489 pkg/eval: Do not catch exceptions from panics in Evaler.
Nowhere uses this mechanism now. Delete the util in pkg/util.

This fixes #570.
2020-01-12 17:57:27 -05:00

219 lines
5.5 KiB
Go

package eval
import (
"bufio"
"fmt"
"io"
"os"
"strings"
"sync"
"github.com/elves/elvish/pkg/diag"
)
// Frame contains information of the current running function, aknin to a call
// frame in native CPU execution. A Frame is only modified during and very
// shortly after creation; new Frame's are "forked" when needed.
type Frame struct {
*Evaler
srcMeta *Source
local, up Ns
ports []*Port
begin, end int
traceback *stackTrace
background bool
}
// NewTopFrame creates a top-level Frame.
//
// TODO(xiaq): This should be a method on the Evaler.
func NewTopFrame(ev *Evaler, src *Source, ports []*Port) *Frame {
return &Frame{
ev, src,
ev.Global, make(Ns),
ports,
0, len(src.Code), nil, false,
}
}
// SetLocal changes the local scope of the Frame.
func (fm *Frame) SetLocal(ns Ns) {
fm.local = ns
}
// Close releases resources allocated for this frame. It always returns a nil
// error. It may be called only once.
func (fm *Frame) Close() error {
for _, port := range fm.ports {
port.Close()
}
return nil
}
// InputChan returns a channel from which input can be read.
func (fm *Frame) InputChan() chan interface{} {
return fm.ports[0].Chan
}
// InputFile returns a file from which input can be read.
func (fm *Frame) InputFile() *os.File {
return fm.ports[0].File
}
// OutputChan returns a channel onto which output can be written.
func (fm *Frame) OutputChan() chan<- interface{} {
return fm.ports[1].Chan
}
// OutputFile returns a file onto which output can be written.
func (fm *Frame) OutputFile() *os.File {
return fm.ports[1].File
}
// IterateInputs calls the passed function for each input element.
func (fm *Frame) IterateInputs(f func(interface{})) {
var w sync.WaitGroup
inputs := make(chan interface{})
w.Add(2)
go func() {
linesToChan(fm.ports[0].File, inputs)
w.Done()
}()
go func() {
for v := range fm.ports[0].Chan {
inputs <- v
}
w.Done()
}()
go func() {
w.Wait()
close(inputs)
}()
for v := range inputs {
f(v)
}
}
func linesToChan(r io.Reader, ch chan<- interface{}) {
filein := bufio.NewReader(r)
for {
line, err := filein.ReadString('\n')
if line != "" {
ch <- strings.TrimSuffix(line, "\n")
}
if err != nil {
if err != io.EOF {
logger.Println("error on reading:", err)
}
break
}
}
}
// fork returns a modified copy of ec. The ports are forked, and the name is
// changed to the given value. Other fields are copied shallowly.
func (fm *Frame) fork(name string) *Frame {
newPorts := make([]*Port, len(fm.ports))
for i, p := range fm.ports {
if p != nil {
newPorts[i] = p.Fork()
}
}
return &Frame{
fm.Evaler, fm.srcMeta,
fm.local, fm.up,
newPorts,
fm.begin, fm.end, fm.traceback, fm.background,
}
}
// Eval evaluates an Op. It is like eval except that it sets fm.srcMeta
// temporarily to op.src during the evaluation.
func (fm *Frame) Eval(op Op) error {
oldSrc := fm.srcMeta
fm.srcMeta = op.Src
defer func() {
fm.srcMeta = oldSrc
}()
return fm.eval(op.Inner)
}
// eval evaluates an effectOp. It does so in a protected environment so that
// exceptions thrown are wrapped in an Error.
func (fm *Frame) eval(op effectOp) (err error) {
e := op.exec(fm)
if e != nil {
if exc, ok := e.(*Exception); ok {
return exc
}
return fm.makeException(e)
}
return nil
}
// Call calls a function with the given arguments and options. It does so in a
// protected environment so that exceptions thrown are wrapped in an Error.
func (fm *Frame) Call(f Callable, args []interface{}, opts map[string]interface{}) (err error) {
e := f.Call(fm, args, opts)
if e != nil {
if exc, ok := e.(*Exception); ok {
return exc
}
return fm.makeException(e)
}
return nil
}
// CaptureOutput calls a function with the given arguments and options,
// capturing and returning the output. It does so in a protected environment so
// that exceptions thrown are wrapped in an Error.
func (fm *Frame) CaptureOutput(fn Callable, args []interface{}, opts map[string]interface{}) (vs []interface{}, err error) {
// XXX There is no source.
opFunc := func(f *Frame) error {
return fn.Call(f, args, opts)
}
return pcaptureOutput(fm, effectOp{funcOp(opFunc), -1, -1})
}
// CallWithOutputCallback calls a function with the given arguments and options,
// feeding the outputs to the given callbacks. It does so in a protected
// environment so that exceptions thrown are wrapped in an Error.
func (fm *Frame) CallWithOutputCallback(fn Callable, args []interface{}, opts map[string]interface{}, valuesCb func(<-chan interface{}), bytesCb func(*os.File)) error {
// XXX There is no source.
opFunc := func(f *Frame) error {
return fn.Call(f, args, opts)
}
return pcaptureOutputInner(fm, effectOp{funcOp(opFunc), -1, -1}, valuesCb, bytesCb)
}
// ExecWithOutputCallback executes an Op, feeding the outputs to the given
// callbacks.
func (fm *Frame) ExecWithOutputCallback(op Op, valuesCb func(<-chan interface{}), bytesCb func(*os.File)) error {
return pcaptureOutputInner(fm, op.Inner, valuesCb, bytesCb)
}
// makeException turns an error into an Exception by adding traceback.
func (fm *Frame) makeException(e error) *Exception {
return &Exception{e, fm.addTraceback()}
}
func (fm *Frame) addTraceback() *stackTrace {
return &stackTrace{
entry: diag.NewContext(
fm.srcMeta.Name, fm.srcMeta.Code, fm.begin, fm.end),
next: fm.traceback,
}
}
// Amends the being and end of the current frame and returns the result of
// fmt.Errorf.
func (fm *Frame) errorpf(begin, end int, format string, args ...interface{}) error {
fm.begin, fm.end = begin, end
return fmt.Errorf(format, args...)
}