feat: implement all hilbish module functions

lua5.4
TorchedSammy 2022-03-30 08:21:36 -04:00
parent 0a5a2e727e
commit 021d20585d
Signed by: sammyette
GPG Key ID: 904FC49417B44DCD
1 changed files with 177 additions and 123 deletions

300
api.go
View File

@ -7,10 +7,10 @@ import (
"errors" "errors"
"fmt" "fmt"
"os" "os"
// "os/exec" "os/exec"
"runtime" "runtime"
"strings" "strings"
// "syscall" "syscall"
"time" "time"
"hilbish/util" "hilbish/util"
@ -19,38 +19,28 @@ import (
"github.com/arnodel/golua/lib/packagelib" "github.com/arnodel/golua/lib/packagelib"
"github.com/maxlandon/readline" "github.com/maxlandon/readline"
// "github.com/blackfireio/osinfo" // "github.com/blackfireio/osinfo"
// "mvdan.cc/sh/v3/interp" "mvdan.cc/sh/v3/interp"
) )
var exports = map[string]util.LuaExport{ var exports = map[string]util.LuaExport{
"alias": util.LuaExport{hlalias, 2, false}, "alias": {hlalias, 2, false},
/* "appendPath": {hlappendPath, 1, false},
"appendPath": hlappendPath, "complete": {hlcomplete, 2, false},
*/ "cwd": {hlcwd, 0, false},
"complete": util.LuaExport{hlcomplete, 2, false}, "exec": {hlexec, 1, false},
"cwd": util.LuaExport{hlcwd, 0, false}, "runnerMode": {hlrunnerMode, 1, false},
/* "goro": {hlgoro, 1, true},
"exec": hlexec, "highlighter": {hlhighlighter, 1, false},
*/ "hinter": {hlhinter, 1, false},
"runnerMode": util.LuaExport{hlrunnerMode, 1, false}, "multiprompt": {hlmultiprompt, 1, false},
/* "prependPath": {hlprependPath, 1, false},
"goro": hlgoro, "prompt": {hlprompt, 1, false},
*/ "inputMode": {hlinputMode, 1, false},
"highlighter": util.LuaExport{hlhighlighter, 1, false}, "interval": {hlinterval, 2, false},
"hinter": util.LuaExport{hlhinter, 1, false}, "read": {hlread, 1, false},
/* "run": {hlrun, 1, false},
"multiprompt": hlmlprompt, "timeout": {hltimeout, 2, false},
"prependPath": hlprependPath, "which": {hlwhich, 1, false},
*/
"prompt": util.LuaExport{hlprompt, 1, false},
"inputMode": util.LuaExport{hlinputMode, 1, false},
"interval": util.LuaExport{hlinterval, 2, false},
"read": util.LuaExport{hlread, 1, false},
/*
"run": hlrun,
"timeout": hltimeout,
"which": hlwhich,
*/
} }
var greeting string var greeting string
@ -151,51 +141,74 @@ func getenv(key, fallback string) string {
return value return value
} }
/* func luaFileComplete(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
func luaFileComplete(L *lua.LState) int { query, ctx, fds, err := getCompleteParams(t, c)
query := L.CheckString(1) if err != nil {
ctx := L.CheckString(2) return nil, err
fields := L.CheckTable(3) }
var fds []string
fields.ForEach(func(k lua.LValue, v lua.LValue) {
fds = append(fds, v.String())
})
completions := fileComplete(query, ctx, fds) completions := fileComplete(query, ctx, fds)
luaComps := L.NewTable() luaComps := rt.NewTable()
for _, comp := range completions { for i, comp := range completions {
luaComps.Append(lua.LString(comp)) luaComps.Set(rt.IntValue(int64(i + 1)), rt.StringValue(comp))
} }
L.Push(luaComps) return c.PushingNext1(t.Runtime, rt.TableValue(luaComps)), nil
return 1
} }
func luaBinaryComplete(L *lua.LState) int { func luaBinaryComplete(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
query := L.CheckString(1) query, ctx, fds, err := getCompleteParams(t, c)
ctx := L.CheckString(2) if err != nil {
fields := L.CheckTable(3) return nil, err
}
var fds []string
fields.ForEach(func(k lua.LValue, v lua.LValue) {
fds = append(fds, v.String())
})
completions, _ := binaryComplete(query, ctx, fds) completions, _ := binaryComplete(query, ctx, fds)
luaComps := L.NewTable() luaComps := rt.NewTable()
for _, comp := range completions { for i, comp := range completions {
luaComps.Append(lua.LString(comp)) luaComps.Set(rt.IntValue(int64(i + 1)), rt.StringValue(comp))
} }
L.Push(luaComps) return c.PushingNext1(t.Runtime, rt.TableValue(luaComps)), nil
}
return 1
func getCompleteParams(t *rt.Thread, c *rt.GoCont) (string, string, []string, error) {
if err := c.CheckNArgs(3); err != nil {
return "", "", []string{}, err
}
query, err := c.StringArg(0)
if err != nil {
return "", "", []string{}, err
}
ctx, err := c.StringArg(1)
if err != nil {
return "", "", []string{}, err
}
fields, err := c.TableArg(2)
if err != nil {
return "", "", []string{}, err
}
var fds []string
nextVal := rt.NilValue
for {
next, val, ok := fields.Next(nextVal)
if next == rt.NilValue {
break
}
nextVal = next
valStr, ok := val.TryString()
if !ok {
continue
}
fds = append(fds, valStr)
}
return query, ctx, fds, err
} }
*/
func setVimMode(mode string) { func setVimMode(mode string) {
util.SetField(l, hshMod, "vimMode", rt.StringValue(mode), "Current Vim mode of Hilbish (nil if not in Vim mode)") util.SetField(l, hshMod, "vimMode", rt.StringValue(mode), "Current Vim mode of Hilbish (nil if not in Vim mode)")
@ -206,14 +219,19 @@ func unsetVimMode() {
util.SetField(l, hshMod, "vimMode", rt.NilValue, "Current Vim mode of Hilbish (nil if not in Vim mode)") util.SetField(l, hshMod, "vimMode", rt.NilValue, "Current Vim mode of Hilbish (nil if not in Vim mode)")
} }
/*
// run(cmd) // run(cmd)
// Runs `cmd` in Hilbish's sh interpreter. // Runs `cmd` in Hilbish's sh interpreter.
// --- @param cmd string // --- @param cmd string
func hlrun(L *lua.LState) int { func hlrun(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
if err := c.Check1Arg(); err != nil {
return nil, err
}
cmd, err := c.StringArg(0)
if err != nil {
return nil, err
}
var exitcode uint8 var exitcode uint8
cmd := L.CheckString(1) err = execCommand(cmd)
err := execCommand(cmd)
if code, ok := interp.IsExitStatus(err); ok { if code, ok := interp.IsExitStatus(err); ok {
exitcode = code exitcode = code
@ -221,10 +239,8 @@ func hlrun(L *lua.LState) int {
exitcode = 1 exitcode = 1
} }
L.Push(lua.LNumber(exitcode)) return c.PushingNext1(t.Runtime, rt.IntValue(int64(exitcode))), nil
return 1
} }
*/
// cwd() // cwd()
// Returns the current directory of the shell // Returns the current directory of the shell
@ -286,13 +302,18 @@ func hlprompt(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
// multiprompt(str) // multiprompt(str)
// Changes the continued line prompt to `str` // Changes the continued line prompt to `str`
// --- @param str string // --- @param str string
/* func hlmultiprompt(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
func hlmlprompt(L *lua.LState) int { if err := c.Check1Arg(); err != nil {
multilinePrompt = L.CheckString(1) return nil, err
}
prompt, err := c.StringArg(0)
if err != nil {
return nil, err
}
multilinePrompt = prompt
return 0 return c.Next(), nil
} }
*/
// alias(cmd, orig) // alias(cmd, orig)
// Sets an alias of `cmd` to `orig` // Sets an alias of `cmd` to `orig`
@ -316,24 +337,39 @@ func hlalias(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
return c.Next(), nil return c.Next(), nil
} }
/*
// appendPath(dir) // appendPath(dir)
// Appends `dir` to $PATH // Appends `dir` to $PATH
// --- @param dir string|table // --- @param dir string|table
func hlappendPath(L *lua.LState) int { func hlappendPath(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
if err := c.Check1Arg(); err != nil {
return nil, err
}
arg := c.Arg(0)
// check if dir is a table or a string // check if dir is a table or a string
arg := L.Get(1) if arg.Type() == rt.TableType {
if arg.Type() == lua.LTTable { nextVal := rt.NilValue
arg.(*lua.LTable).ForEach(func(k lua.LValue, v lua.LValue) { for {
appendPath(v.String()) next, val, ok := arg.AsTable().Next(nextVal)
}) if next == rt.NilValue {
} else if arg.Type() == lua.LTString { break
appendPath(arg.String()) }
nextVal = next
valStr, ok := val.TryString()
if !ok {
continue
}
appendPath(valStr)
}
} else if arg.Type() == rt.StringType {
appendPath(arg.AsString())
} else { } else {
L.RaiseError("bad argument to appendPath (expected string or table, got %v)", L.Get(1).Type().String()) return nil, errors.New("bad argument to appendPath (expected string or table, got " + arg.TypeName() + ")")
} }
return 0 return c.Next(), nil
} }
func appendPath(dir string) { func appendPath(dir string) {
@ -349,8 +385,14 @@ func appendPath(dir string) {
// exec(cmd) // exec(cmd)
// Replaces running hilbish with `cmd` // Replaces running hilbish with `cmd`
// --- @param cmd string // --- @param cmd string
func hlexec(L *lua.LState) int { func hlexec(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
cmd := L.CheckString(1) if err := c.Check1Arg(); err != nil {
return nil, err
}
cmd, err := c.StringArg(0)
if err != nil {
return nil, err
}
cmdArgs, _ := splitInput(cmd) cmdArgs, _ := splitInput(cmd)
if runtime.GOOS != "windows" { if runtime.GOOS != "windows" {
cmdPath, err := exec.LookPath(cmdArgs[0]) cmdPath, err := exec.LookPath(cmdArgs[0])
@ -372,55 +414,59 @@ func hlexec(L *lua.LState) int {
os.Exit(0) os.Exit(0)
} }
return 0 return c.Next(), nil
} }
// goro(fn) // goro(fn)
// Puts `fn` in a goroutine // Puts `fn` in a goroutine
// --- @param fn function // --- @param fn function
func hlgoro(L *lua.LState) int { func hlgoro(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
fn := L.CheckFunction(1) if err := c.Check1Arg(); err != nil {
argnum := L.GetTop() return nil, err
args := make([]lua.LValue, argnum) }
for i := 1; i <= argnum; i++ { fn, err := c.ClosureArg(0)
args[i - 1] = L.Get(i) if err != nil {
return nil, err
} }
// call fn // call fn
go func() { go func() {
if err := L.CallByParam(lua.P{ _, err := rt.Call1(l.MainThread(), rt.FunctionValue(fn), c.Etc()...)
Fn: fn, if err != nil {
NRet: 0,
Protect: true,
}, args...); err != nil {
fmt.Fprintln(os.Stderr, "Error in goro function:\n\n", err) fmt.Fprintln(os.Stderr, "Error in goro function:\n\n", err)
} }
}() }()
return 0 return c.Next(), nil
} }
// timeout(cb, time) // timeout(cb, time)
// Runs the `cb` function after `time` in milliseconds // Runs the `cb` function after `time` in milliseconds
// --- @param cb function // --- @param cb function
// --- @param time number // --- @param time number
func hltimeout(L *lua.LState) int { func hltimeout(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
cb := L.CheckFunction(1) if err := c.CheckNArgs(2); err != nil {
ms := L.CheckInt(2) return nil, err
}
cb, err := c.ClosureArg(0)
if err != nil {
return nil, err
}
ms, err := c.IntArg(1)
if err != nil {
return nil, err
}
timeout := time.Duration(ms) * time.Millisecond timeout := time.Duration(ms) * time.Millisecond
time.Sleep(timeout) time.Sleep(timeout)
if err := L.CallByParam(lua.P{ _, err = rt.Call1(l.MainThread(), rt.FunctionValue(cb))
Fn: cb, if err != nil {
NRet: 0, return nil, err
Protect: true,
}); err != nil {
fmt.Fprintln(os.Stderr, "Error in goro function:\n\n", err)
} }
return 0
return c.Next(), nil
} }
*/
// interval(cb, time) // interval(cb, time)
// Runs the `cb` function every `time` milliseconds // Runs the `cb` function every `time` milliseconds
@ -483,12 +529,17 @@ func hlcomplete(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
return c.Next(), nil return c.Next(), nil
} }
/*
// prependPath(dir) // prependPath(dir)
// Prepends `dir` to $PATH // Prepends `dir` to $PATH
// --- @param dir string // --- @param dir string
func hlprependPath(L *lua.LState) int { func hlprependPath(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
dir := L.CheckString(1) if err := c.Check1Arg(); err != nil {
return nil, err
}
dir, err := c.StringArg(0)
if err != nil {
return nil, err
}
dir = strings.Replace(dir, "~", curuser.HomeDir, 1) dir = strings.Replace(dir, "~", curuser.HomeDir, 1)
pathenv := os.Getenv("PATH") pathenv := os.Getenv("PATH")
@ -497,24 +548,27 @@ func hlprependPath(L *lua.LState) int {
os.Setenv("PATH", dir + string(os.PathListSeparator) + pathenv) os.Setenv("PATH", dir + string(os.PathListSeparator) + pathenv)
} }
return 0 return c.Next(), nil
} }
// which(binName) // which(binName)
// Searches for an executable called `binName` in the directories of $PATH // Searches for an executable called `binName` in the directories of $PATH
// --- @param binName string // --- @param binName string
func hlwhich(L *lua.LState) int { func hlwhich(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
binName := L.CheckString(1) if err := c.Check1Arg(); err != nil {
return nil, err
}
binName, err := c.StringArg(0)
if err != nil {
return nil, err
}
path, err := exec.LookPath(binName) path, err := exec.LookPath(binName)
if err != nil { if err != nil {
l.Push(lua.LNil) return c.Next(), nil
return 1
} }
l.Push(lua.LString(path)) return c.PushingNext1(t.Runtime, rt.StringValue(path)), nil
return 1
} }
*/
// inputMode(mode) // inputMode(mode)
// Sets the input mode for Hilbish's line reader. Accepts either emacs for vim // Sets the input mode for Hilbish's line reader. Accepts either emacs for vim