2021-10-16 15:31:01 +00:00
|
|
|
package main
|
|
|
|
|
2021-11-22 16:24:31 +00:00
|
|
|
import (
|
2022-02-27 23:21:21 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
2021-11-22 16:24:31 +00:00
|
|
|
"strings"
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
"hilbish/util"
|
|
|
|
|
2022-02-27 23:21:21 +00:00
|
|
|
"github.com/maxlandon/readline"
|
2022-04-04 10:40:02 +00:00
|
|
|
rt "github.com/arnodel/golua/runtime"
|
2021-11-22 16:24:31 +00:00
|
|
|
)
|
2021-05-17 23:03:56 +00:00
|
|
|
|
2021-12-06 21:21:31 +00:00
|
|
|
type lineReader struct {
|
2022-02-27 23:21:21 +00:00
|
|
|
rl *readline.Instance
|
2021-05-17 23:03:56 +00:00
|
|
|
}
|
2022-03-05 19:57:46 +00:00
|
|
|
var fileHist *fileHistory
|
2022-04-04 10:40:02 +00:00
|
|
|
var hinter *rt.Closure
|
|
|
|
var highlighter *rt.Closure
|
2021-05-17 23:03:56 +00:00
|
|
|
|
2022-03-06 18:38:27 +00:00
|
|
|
func newLineReader(prompt string, noHist bool) *lineReader {
|
2022-02-27 23:21:21 +00:00
|
|
|
rl := readline.NewInstance()
|
2022-03-06 18:38:27 +00:00
|
|
|
// we don't mind hilbish.read rl instances having completion,
|
|
|
|
// but it cant have shared history
|
|
|
|
if !noHist {
|
2022-03-13 01:43:02 +00:00
|
|
|
fileHist = newFileHistory()
|
2022-03-19 17:24:12 +00:00
|
|
|
rl.SetHistoryCtrlR("History", fileHist)
|
2022-03-06 18:38:27 +00:00
|
|
|
rl.HistoryAutoWrite = false
|
2022-03-05 01:55:37 +00:00
|
|
|
}
|
2022-03-02 02:00:46 +00:00
|
|
|
rl.ShowVimMode = false
|
|
|
|
rl.ViModeCallback = func(mode readline.ViMode) {
|
|
|
|
modeStr := ""
|
|
|
|
switch mode {
|
|
|
|
case readline.VimKeys: modeStr = "normal"
|
|
|
|
case readline.VimInsert: modeStr = "insert"
|
|
|
|
case readline.VimDelete: modeStr = "delete"
|
2022-04-21 18:01:59 +00:00
|
|
|
case readline.VimReplaceOnce, readline.VimReplaceMany: modeStr = "replace"
|
2022-03-02 02:00:46 +00:00
|
|
|
}
|
|
|
|
setVimMode(modeStr)
|
|
|
|
}
|
2022-03-13 20:44:11 +00:00
|
|
|
rl.ViActionCallback = func(action readline.ViAction, args []string) {
|
|
|
|
actionStr := ""
|
|
|
|
switch action {
|
|
|
|
case readline.VimActionPaste: actionStr = "paste"
|
|
|
|
case readline.VimActionYank: actionStr = "yank"
|
|
|
|
}
|
|
|
|
hooks.Em.Emit("hilbish.vimAction", actionStr, args)
|
|
|
|
}
|
2022-03-26 21:34:09 +00:00
|
|
|
rl.HintText = func(line []rune, pos int) []rune {
|
2022-04-04 10:40:02 +00:00
|
|
|
if hinter == nil {
|
2022-03-26 22:24:49 +00:00
|
|
|
return []rune{}
|
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
retVal, err := rt.Call1(l.MainThread(), rt.FunctionValue(highlighter),
|
|
|
|
rt.StringValue(string(line)), rt.IntValue(int64(pos)))
|
2022-03-26 21:34:09 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return []rune{}
|
|
|
|
}
|
|
|
|
|
|
|
|
hintText := ""
|
2022-04-04 10:40:02 +00:00
|
|
|
if luaStr, ok := retVal.TryString(); ok {
|
|
|
|
hintText = luaStr
|
2022-03-26 21:34:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return []rune(hintText)
|
|
|
|
}
|
2022-03-26 22:25:19 +00:00
|
|
|
rl.SyntaxHighlighter = func(line []rune) string {
|
2022-04-04 10:40:02 +00:00
|
|
|
if highlighter == nil {
|
2022-03-26 22:25:19 +00:00
|
|
|
return string(line)
|
|
|
|
}
|
2022-04-04 10:40:02 +00:00
|
|
|
retVal, err := rt.Call1(l.MainThread(), rt.FunctionValue(highlighter),
|
|
|
|
rt.StringValue(string(line)))
|
2022-03-26 22:25:19 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return string(line)
|
|
|
|
}
|
|
|
|
|
|
|
|
highlighted := ""
|
2022-04-04 10:40:02 +00:00
|
|
|
if luaStr, ok := retVal.TryString(); ok {
|
|
|
|
highlighted = luaStr
|
2022-03-26 22:25:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return highlighted
|
|
|
|
}
|
2022-02-27 23:21:21 +00:00
|
|
|
rl.TabCompleter = func(line []rune, pos int, _ readline.DelayedTabContext) (string, []*readline.CompletionGroup) {
|
2022-04-23 01:16:35 +00:00
|
|
|
term := rt.NewTerminationWith(l.MainThread().CurrentCont(), 2, false)
|
|
|
|
compHandle := hshMod.Get(rt.StringValue("completion")).AsTable().Get(rt.StringValue("handler"))
|
|
|
|
err := rt.Call(l.MainThread(), compHandle, []rt.Value{rt.StringValue(string(line)),
|
|
|
|
rt.IntValue(int64(pos))}, term)
|
2022-03-05 19:59:00 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
var compGroups []*readline.CompletionGroup
|
|
|
|
if err != nil {
|
|
|
|
return "", compGroups
|
2021-11-22 16:24:31 +00:00
|
|
|
}
|
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
luaCompGroups := term.Get(0)
|
|
|
|
luaPrefix := term.Get(1)
|
2022-03-05 19:59:00 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
if luaCompGroups.Type() != rt.TableType {
|
|
|
|
return "", compGroups
|
|
|
|
}
|
2022-03-05 12:58:12 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
groups := luaCompGroups.AsTable()
|
|
|
|
// prefix is optional
|
|
|
|
pfx, _ := luaPrefix.TryString()
|
2022-03-05 19:59:00 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
util.ForEach(groups, func(key rt.Value, val rt.Value) {
|
|
|
|
if key.Type() != rt.IntType || val.Type() != rt.TableType {
|
|
|
|
return
|
|
|
|
}
|
2022-04-04 10:40:02 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
valTbl := val.AsTable()
|
|
|
|
luaCompType := valTbl.Get(rt.StringValue("type"))
|
|
|
|
luaCompItems := valTbl.Get(rt.StringValue("items"))
|
2021-11-22 16:24:31 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
if luaCompType.Type() != rt.StringType || luaCompItems.Type() != rt.TableType {
|
|
|
|
return
|
|
|
|
}
|
2021-11-22 16:24:31 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
items := []string{}
|
|
|
|
itemDescriptions := make(map[string]string)
|
|
|
|
|
|
|
|
util.ForEach(luaCompItems.AsTable(), func(lkey rt.Value, lval rt.Value) {
|
|
|
|
if keytyp := lkey.Type(); keytyp == rt.StringType {
|
|
|
|
// ['--flag'] = {'description', '--flag-alias'}
|
|
|
|
itemName, ok := lkey.TryString()
|
|
|
|
vlTbl, okk := lval.TryTable()
|
|
|
|
if !ok && !okk {
|
|
|
|
// TODO: error
|
|
|
|
return
|
2022-03-05 19:59:00 +00:00
|
|
|
}
|
2022-04-04 10:40:02 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
items = append(items, itemName)
|
|
|
|
itemDescription, ok := vlTbl.Get(rt.IntValue(1)).TryString()
|
|
|
|
if !ok {
|
|
|
|
// TODO: error
|
|
|
|
return
|
|
|
|
}
|
|
|
|
itemDescriptions[itemName] = itemDescription
|
|
|
|
} else if keytyp == rt.IntType {
|
|
|
|
vlStr, ok := lval.TryString()
|
|
|
|
if !ok {
|
|
|
|
// TODO: error
|
2022-04-21 18:01:59 +00:00
|
|
|
return
|
2022-04-04 10:40:02 +00:00
|
|
|
}
|
2022-04-23 01:16:35 +00:00
|
|
|
items = append(items, vlStr)
|
|
|
|
} else {
|
|
|
|
// TODO: error
|
|
|
|
return
|
2021-11-22 16:24:31 +00:00
|
|
|
}
|
2022-04-23 01:16:35 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
var dispType readline.TabDisplayType
|
|
|
|
switch luaCompType.AsString() {
|
|
|
|
case "grid": dispType = readline.TabDisplayGrid
|
|
|
|
case "list": dispType = readline.TabDisplayList
|
|
|
|
// need special cases, will implement later
|
|
|
|
//case "map": dispType = readline.TabDisplayMap
|
2021-11-22 16:24:31 +00:00
|
|
|
}
|
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
compGroups = append(compGroups, &readline.CompletionGroup{
|
|
|
|
DisplayType: dispType,
|
|
|
|
Descriptions: itemDescriptions,
|
|
|
|
Suggestions: items,
|
|
|
|
TrimSlash: false,
|
|
|
|
NoSpace: true,
|
|
|
|
})
|
|
|
|
})
|
2022-04-20 17:06:46 +00:00
|
|
|
|
2022-04-23 01:16:35 +00:00
|
|
|
return pfx, compGroups
|
2021-11-22 16:24:31 +00:00
|
|
|
}
|
2021-05-17 23:03:56 +00:00
|
|
|
|
2021-12-06 21:21:31 +00:00
|
|
|
return &lineReader{
|
2022-02-27 23:21:21 +00:00
|
|
|
rl,
|
2021-05-17 23:03:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-06 21:21:31 +00:00
|
|
|
func (lr *lineReader) Read() (string, error) {
|
2022-02-27 23:27:18 +00:00
|
|
|
hooks.Em.Emit("command.precmd", nil)
|
2022-02-27 23:21:21 +00:00
|
|
|
s, err := lr.rl.Readline()
|
|
|
|
// this is so dumb
|
|
|
|
if err == readline.EOF {
|
2022-03-02 02:00:46 +00:00
|
|
|
fmt.Println("")
|
2022-02-27 23:21:21 +00:00
|
|
|
return "", io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
return s, err // might get another error
|
2021-05-17 23:03:56 +00:00
|
|
|
}
|
|
|
|
|
2022-03-06 21:20:41 +00:00
|
|
|
func (lr *lineReader) SetPrompt(p string) {
|
|
|
|
halfPrompt := strings.Split(p, "\n")
|
2022-02-27 23:21:21 +00:00
|
|
|
if len(halfPrompt) > 1 {
|
2022-03-05 01:16:45 +00:00
|
|
|
lr.rl.Multiline = true
|
2022-02-27 23:21:21 +00:00
|
|
|
lr.rl.SetPrompt(strings.Join(halfPrompt[:len(halfPrompt) - 1], "\n"))
|
|
|
|
lr.rl.MultilinePrompt = halfPrompt[len(halfPrompt) - 1:][0]
|
|
|
|
} else {
|
2022-03-05 01:16:45 +00:00
|
|
|
lr.rl.Multiline = false
|
2022-03-13 20:42:14 +00:00
|
|
|
lr.rl.MultilinePrompt = ""
|
2022-03-06 21:20:41 +00:00
|
|
|
lr.rl.SetPrompt(p)
|
2022-02-27 23:21:21 +00:00
|
|
|
}
|
2022-03-06 21:20:41 +00:00
|
|
|
if initialized && !running {
|
2022-03-02 02:00:46 +00:00
|
|
|
lr.rl.RefreshPromptInPlace("")
|
|
|
|
}
|
2021-05-17 23:03:56 +00:00
|
|
|
}
|
|
|
|
|
2022-04-13 14:13:46 +00:00
|
|
|
func (lr *lineReader) SetRightPrompt(p string) {
|
|
|
|
lr.rl.SetRightPrompt(p)
|
|
|
|
if initialized && !running {
|
|
|
|
lr.rl.RefreshPromptInPlace("")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-06 21:21:31 +00:00
|
|
|
func (lr *lineReader) AddHistory(cmd string) {
|
2022-03-05 19:57:46 +00:00
|
|
|
fileHist.Write(cmd)
|
2021-05-17 23:03:56 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 21:21:31 +00:00
|
|
|
func (lr *lineReader) ClearInput() {
|
2022-02-27 23:21:21 +00:00
|
|
|
return
|
2021-06-09 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2021-12-06 21:21:31 +00:00
|
|
|
func (lr *lineReader) Resize() {
|
2022-02-27 23:21:21 +00:00
|
|
|
return
|
2021-11-22 15:41:27 +00:00
|
|
|
}
|
2022-01-27 21:02:21 +00:00
|
|
|
|
|
|
|
// lua module
|
2022-04-04 10:40:02 +00:00
|
|
|
func (lr *lineReader) Loader(rtm *rt.Runtime) *rt.Table {
|
|
|
|
lrLua := map[string]util.LuaExport{
|
|
|
|
"add": {lr.luaAddHistory, 1, false},
|
|
|
|
"all": {lr.luaAllHistory, 0, false},
|
|
|
|
"clear": {lr.luaClearHistory, 0, false},
|
|
|
|
"get": {lr.luaGetHistory, 1, false},
|
|
|
|
"size": {lr.luaSize, 0, false},
|
2022-01-27 21:02:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
mod := rt.NewTable()
|
|
|
|
util.SetExports(rtm, mod, lrLua)
|
2022-01-27 21:02:21 +00:00
|
|
|
|
|
|
|
return mod
|
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
func (lr *lineReader) luaAddHistory(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
|
|
|
|
}
|
2022-01-27 21:02:21 +00:00
|
|
|
lr.AddHistory(cmd)
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
return c.Next(), nil
|
2022-01-27 21:02:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
func (lr *lineReader) luaSize(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
|
|
return c.PushingNext1(t.Runtime, rt.IntValue(int64(fileHist.Len()))), nil
|
2022-01-27 21:02:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
func (lr *lineReader) luaGetHistory(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
|
|
if err := c.Check1Arg(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
idx, err := c.IntArg(0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-03-05 19:57:46 +00:00
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
cmd, _ := fileHist.GetLine(int(idx))
|
|
|
|
|
|
|
|
return c.PushingNext1(t.Runtime, rt.StringValue(cmd)), nil
|
2022-01-27 21:02:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
func (lr *lineReader) luaAllHistory(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
|
|
tbl := rt.NewTable()
|
2022-03-05 19:57:46 +00:00
|
|
|
size := fileHist.Len()
|
|
|
|
|
|
|
|
for i := 1; i < size; i++ {
|
|
|
|
cmd, _ := fileHist.GetLine(i)
|
2022-04-04 10:40:02 +00:00
|
|
|
tbl.Set(rt.IntValue(int64(i)), rt.StringValue(cmd))
|
2022-03-05 19:57:46 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
return c.PushingNext1(t.Runtime, rt.TableValue(tbl)), nil
|
2022-01-27 21:02:21 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
func (lr *lineReader) luaClearHistory(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
2022-03-22 23:01:29 +00:00
|
|
|
fileHist.clear()
|
2022-04-04 10:40:02 +00:00
|
|
|
return c.Next(), nil
|
2022-01-27 21:02:21 +00:00
|
|
|
}
|