elvish/pkg/eval/compiler.go

177 lines
4.6 KiB
Go
Raw Normal View History

2016-02-20 00:21:51 +08:00
package eval
import (
"fmt"
"io"
"strings"
2019-12-24 04:00:59 +08:00
"github.com/elves/elvish/pkg/diag"
"github.com/elves/elvish/pkg/parse"
"github.com/elves/elvish/pkg/prog"
2016-02-20 00:21:51 +08:00
)
// compiler maintains the set of states needed when compiling a single source
// file.
type compiler struct {
// Builtin namespace.
builtin staticNs
// Lexical namespaces.
scopes []staticNs
2016-02-20 00:21:51 +08:00
// Variables captured from outer scopes.
capture staticNs
// New variables created in a lexical scope.
newLocals []string
// Destination of warning messages. This is currently only used for
// deprecation messages.
warn io.Writer
// Deprecation registry.
deprecations deprecationRegistry
// Information about the source.
srcMeta parse.Source
2016-02-20 00:21:51 +08:00
}
func compile(b, g staticNs, tree parse.Tree, w io.Writer) (op Op, err error) {
cp := &compiler{
b, []staticNs{g}, make(staticNs), nil,
w, newDeprecationRegistry(), tree.Source}
defer func() {
r := recover()
if r == nil {
return
} else if e, ok := GetCompilationError(r); ok {
// Save the compilation error and stop the panic.
err = e
} else {
// Resume the panic; it is not supposed to be handled here.
panic(r)
}
}()
savedLocals := cp.pushNewLocals()
chunkOp := cp.chunkOp(tree.Root)
scopeOp := wrapScopeOp(chunkOp, cp.newLocals)
cp.newLocals = savedLocals
return Op{scopeOp, tree.Source}, nil
}
func (cp *compiler) pushNewLocals() []string {
saved := cp.newLocals
cp.newLocals = nil
return saved
2016-02-20 00:21:51 +08:00
}
func (cp *compiler) errorpf(r diag.Ranger, format string, args ...interface{}) {
// The panic is caught by the recover in compile above.
panic(NewCompilationError(fmt.Sprintf(format, args...),
*diag.NewContext(cp.srcMeta.Name, cp.srcMeta.Code, r)))
2016-02-20 04:16:23 +08:00
}
func (cp *compiler) thisScope() staticNs {
2016-02-20 00:21:51 +08:00
return cp.scopes[len(cp.scopes)-1]
}
func (cp *compiler) pushScope() staticNs {
sc := make(staticNs)
2016-02-20 00:21:51 +08:00
cp.scopes = append(cp.scopes, sc)
return sc
}
func (cp *compiler) popScope() {
cp.scopes[len(cp.scopes)-1] = make(staticNs)
2016-02-20 00:21:51 +08:00
cp.scopes = cp.scopes[:len(cp.scopes)-1]
}
func (cp *compiler) registerVariableSet(qname string) bool {
return cp.registerVariableAccess(qname, true, nil)
}
func (cp *compiler) registerVariableGet(qname string, r diag.Ranger) bool {
return cp.registerVariableAccess(qname, false, r)
}
func (cp *compiler) registerVariableAccess(qname string, set bool, r diag.Ranger) bool {
readLocal := func(name string) bool { return cp.thisScope().has(name) }
readUpvalue := func(name string) bool {
for i := len(cp.scopes) - 2; i >= 0; i-- {
if cp.scopes[i].has(name) {
// Existing name: record capture and return.
cp.capture.set(name)
return true
}
}
return false
}
readBuiltin := func(name string) bool {
cp.checkDeprecatedBuiltin(name, r)
return cp.builtin.has(name)
}
readNonPseudo := func(name string) bool {
return readLocal(name) || readUpvalue(name) || readBuiltin(name)
}
createLocal := func(name string) bool {
if set && name != "" && !strings.ContainsRune(name[:len(name)-1], ':') {
cp.thisScope().set(name)
cp.newLocals = append(cp.newLocals, name)
2016-02-20 00:21:51 +08:00
return true
}
return false
2016-02-20 00:21:51 +08:00
}
ns, name := SplitQNameNsFirst(qname) // ns = "", name = "ns:"
name1 := name // name1 = "ns:"
if name != "" && strings.ContainsRune(name[:len(name)-1], ':') {
name1, _ = SplitQNameNsFirst(name)
}
2018-01-11 08:27:11 +08:00
2020-05-18 09:14:51 +08:00
// This switch mirrors the structure of that from (*Frame).ResolveVar.
2016-02-20 00:21:51 +08:00
switch ns {
case "E:":
2017-09-21 07:10:21 +08:00
return true
case "e:":
return !set && strings.HasSuffix(name, FnSuffix)
case "local:":
return readLocal(name1) || createLocal(name)
case "up:":
return readUpvalue(name1)
case "builtin:":
return readBuiltin(name1)
case "", ":":
return readNonPseudo(name1) || createLocal(name)
2016-02-20 00:21:51 +08:00
default:
return readNonPseudo(ns)
}
2016-02-20 00:21:51 +08:00
}
func (cp *compiler) checkDeprecatedBuiltin(name string, r diag.Ranger) {
if cp.warn == nil || r == nil {
return
}
msg := ""
switch name {
2020-08-17 06:07:30 +08:00
case "-source~":
msg = `the "source" command is deprecated; use "eval" instead`
case "ord~":
msg = `the "ord" command is deprecated; use "str:to-codepoints" instead`
case "chr~":
msg = `the "chr" command is deprecated; use "str:from-codepoints" instead`
2020-08-16 23:27:24 +08:00
case "has-prefix~":
msg = `the "has-prefix" command is deprecated; use "str:has-prefix" instead`
case "has-suffix~":
msg = `the "has-suffix" command is deprecated; use "str:has-suffix" instead`
default:
return
}
dep := deprecation{cp.srcMeta.Name, r.Range(), msg}
if prog.ShowDeprecations && cp.deprecations.register(dep) {
err := diag.Error{
Type: "deprecation", Message: msg,
Context: diag.Context{
Name: cp.srcMeta.Name, Source: cp.srcMeta.Code, Ranging: r.Range()}}
fmt.Fprintln(cp.warn, err.Show(""))
}
}