mirror of https://github.com/Hilbis/Hilbish
Compare commits
1 Commits
6508fcfba2
...
676f70b9ea
Author | SHA1 | Date |
---|---|---|
sammyette | 676f70b9ea |
|
@ -10,11 +10,10 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{ matrix.goos }}-${{ matrix.goarch }}${{ matrix.midnight == 'true' && ' (Midnight Edition)' || ''}}
|
name: ${{ matrix.goos }}-${{ matrix.goarch }}
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
midnight: [false, true]
|
|
||||||
goos: [linux, windows, darwin]
|
goos: [linux, windows, darwin]
|
||||||
goarch: ["386", amd64, arm64]
|
goarch: ["386", amd64, arm64]
|
||||||
exclude:
|
exclude:
|
||||||
|
@ -34,11 +33,11 @@ jobs:
|
||||||
- name: Download Task
|
- name: Download Task
|
||||||
run: 'sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d'
|
run: 'sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d'
|
||||||
- name: Build
|
- name: Build
|
||||||
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} ./bin/task ${{ matrix.midnight == 'true' && 'midnight' || ''}}
|
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} ./bin/task
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
if: matrix.goos == 'windows'
|
if: matrix.goos == 'windows'
|
||||||
with:
|
with:
|
||||||
name: hilbish${{ matrix.midnight == 'true' && '-midnight-edition' || ''}}-${{ matrix.goos }}-${{ matrix.goarch }}
|
name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||||
path: |
|
path: |
|
||||||
hilbish.exe
|
hilbish.exe
|
||||||
LICENSE
|
LICENSE
|
||||||
|
@ -52,7 +51,7 @@ jobs:
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v4
|
||||||
if: matrix.goos != 'windows'
|
if: matrix.goos != 'windows'
|
||||||
with:
|
with:
|
||||||
name: hilbish${{ matrix.midnight == 'true' && '-midnight-edition' || ''}}-${{ matrix.goos }}-${{ matrix.goarch }}
|
name: hilbish-${{ matrix.goos }}-${{ matrix.goarch }}
|
||||||
path: |
|
path: |
|
||||||
hilbish
|
hilbish
|
||||||
LICENSE
|
LICENSE
|
||||||
|
|
|
@ -16,8 +16,7 @@
|
||||||
Functionality **will** be missing if you use this branch,
|
Functionality **will** be missing if you use this branch,
|
||||||
and you may see crashes too. Tread lightly.
|
and you may see crashes too. Tread lightly.
|
||||||
|
|
||||||
Build instructions and progress on Midnight Edition is tracked in this PR:
|
Progress on Midnight Edition is tracked in this PR: [#314](https://github.com/Rosettea/Hilbish/pull/314)
|
||||||
[#314](https://github.com/Rosettea/Hilbish/pull/314)
|
|
||||||
|
|
||||||
Hilbish: Midinight Edition is a version of Hilbish meant to be compatible with
|
Hilbish: Midinight Edition is a version of Hilbish meant to be compatible with
|
||||||
the original C implementation of Lua by using a Go library binding. The end goal
|
the original C implementation of Lua by using a Go library binding. The end goal
|
||||||
|
@ -71,13 +70,13 @@ go get -d ./...
|
||||||
|
|
||||||
To build, run:
|
To build, run:
|
||||||
```
|
```
|
||||||
go-task
|
task
|
||||||
```
|
```
|
||||||
|
|
||||||
Or, if you want a stable branch, run these commands:
|
Or, if you want a stable branch, run these commands:
|
||||||
```
|
```
|
||||||
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
|
git checkout $(git describe --tags `git rev-list --tags --max-count=1`)
|
||||||
go-task build
|
task build
|
||||||
```
|
```
|
||||||
|
|
||||||
After you did all that, run `sudo task install` to install Hilbish globally.
|
After you did all that, run `sudo task install` to install Hilbish globally.
|
||||||
|
|
|
@ -10,8 +10,6 @@ vars:
|
||||||
LIBDIR: '{{default .libdir__ .LIBDIR}}'
|
LIBDIR: '{{default .libdir__ .LIBDIR}}'
|
||||||
goflags__: '-ldflags "-s -w -X main.dataDir={{.LIBDIR}}"'
|
goflags__: '-ldflags "-s -w -X main.dataDir={{.LIBDIR}}"'
|
||||||
GOFLAGS: '{{default .goflags__ .GOFLAGS}}'
|
GOFLAGS: '{{default .goflags__ .GOFLAGS}}'
|
||||||
lua__: 'lua'
|
|
||||||
LUA: '{{default .lua__ .LUA}}'
|
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
default:
|
default:
|
||||||
|
@ -26,12 +24,6 @@ tasks:
|
||||||
vars:
|
vars:
|
||||||
GOFLAGS: '-ldflags "-s -w -X main.dataDir={{.LIBDIR}} -X main.gitCommit=$(git rev-parse --short HEAD) -X main.gitBranch=$(git rev-parse --abbrev-ref HEAD)"'
|
GOFLAGS: '-ldflags "-s -w -X main.dataDir={{.LIBDIR}} -X main.gitCommit=$(git rev-parse --short HEAD) -X main.gitBranch=$(git rev-parse --abbrev-ref HEAD)"'
|
||||||
|
|
||||||
midnight:
|
|
||||||
cmds:
|
|
||||||
- go build -tags midnight,{{.LUA}} {{.GOFLAGS}}
|
|
||||||
vars:
|
|
||||||
GOFLAGS: '-ldflags "-s -w -X main.dataDir={{.LIBDIR}} -X main.gitCommit=$(git rev-parse --short HEAD) -X main.gitBranch=$(git rev-parse --abbrev-ref HEAD)"'
|
|
||||||
|
|
||||||
build:
|
build:
|
||||||
cmds:
|
cmds:
|
||||||
- go build {{.GOFLAGS}}
|
- go build {{.GOFLAGS}}
|
||||||
|
|
|
@ -97,12 +97,10 @@ func (a *aliasModule) Resolve(cmdstr string) string {
|
||||||
func (a *aliasModule) Loader(rtm *rt.Runtime) *rt.Table {
|
func (a *aliasModule) Loader(rtm *rt.Runtime) *rt.Table {
|
||||||
// create a lua module with our functions
|
// create a lua module with our functions
|
||||||
hshaliasesLua := map[string]util.LuaExport{
|
hshaliasesLua := map[string]util.LuaExport{
|
||||||
/*
|
//"add": util.LuaExport{hlalias, 2, false},
|
||||||
"add": util.LuaExport{hlalias, 2, false},
|
|
||||||
"list": util.LuaExport{a.luaList, 0, false},
|
"list": util.LuaExport{a.luaList, 0, false},
|
||||||
"del": util.LuaExport{a.luaDelete, 1, false},
|
"del": util.LuaExport{a.luaDelete, 1, false},
|
||||||
"resolve": util.LuaExport{a.luaResolve, 1, false},
|
"resolve": util.LuaExport{a.luaResolve, 1, false},
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mod := rt.NewTable()
|
mod := rt.NewTable()
|
||||||
|
|
4
api.go
4
api.go
|
@ -149,12 +149,12 @@ func getenv(key, fallback string) string {
|
||||||
}
|
}
|
||||||
|
|
||||||
func setVimMode(mode string) {
|
func setVimMode(mode string) {
|
||||||
hshMod.SetField("vimMode", moonlight.StringValue(mode))
|
hshMod.SetField("vimMode", rt.StringValue(mode))
|
||||||
hooks.Emit("hilbish.vimMode", mode)
|
hooks.Emit("hilbish.vimMode", mode)
|
||||||
}
|
}
|
||||||
|
|
||||||
func unsetVimMode() {
|
func unsetVimMode() {
|
||||||
hshMod.SetField("vimMode", moonlight.NilValue)
|
hshMod.SetField("vimMode", rt.NilValue)
|
||||||
}
|
}
|
||||||
|
|
||||||
func handleStream(v rt.Value, strms *streams, errStream bool) error {
|
func handleStream(v rt.Value, strms *streams, errStream bool) error {
|
||||||
|
|
|
@ -12,13 +12,11 @@ import (
|
||||||
// directly interact with the line editor in use.
|
// directly interact with the line editor in use.
|
||||||
func editorLoader(rtm *rt.Runtime) *rt.Table {
|
func editorLoader(rtm *rt.Runtime) *rt.Table {
|
||||||
exports := map[string]util.LuaExport{
|
exports := map[string]util.LuaExport{
|
||||||
/*
|
|
||||||
"insert": {editorInsert, 1, false},
|
"insert": {editorInsert, 1, false},
|
||||||
"setVimRegister": {editorSetRegister, 1, false},
|
"setVimRegister": {editorSetRegister, 1, false},
|
||||||
"getVimRegister": {editorGetRegister, 2, false},
|
"getVimRegister": {editorGetRegister, 2, false},
|
||||||
"getLine": {editorGetLine, 0, false},
|
"getLine": {editorGetLine, 0, false},
|
||||||
"readChar": {editorReadChar, 0, false},
|
"readChar": {editorReadChar, 0, false},
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mod := rt.NewTable()
|
mod := rt.NewTable()
|
||||||
|
|
52
exec.go
52
exec.go
|
@ -28,7 +28,7 @@ import (
|
||||||
|
|
||||||
var errNotExec = errors.New("not executable")
|
var errNotExec = errors.New("not executable")
|
||||||
var errNotFound = errors.New("not found")
|
var errNotFound = errors.New("not found")
|
||||||
var runnerMode moonlight.Value = moonlight.StringValue("hybrid")
|
var runnerMode rt.Value = rt.StringValue("hybrid")
|
||||||
|
|
||||||
type streams struct {
|
type streams struct {
|
||||||
stdout io.Writer
|
stdout io.Writer
|
||||||
|
@ -101,7 +101,7 @@ func runInput(input string, priv bool) {
|
||||||
var cont bool
|
var cont bool
|
||||||
// save incase it changes while prompting (For some reason)
|
// save incase it changes while prompting (For some reason)
|
||||||
currentRunner := runnerMode
|
currentRunner := runnerMode
|
||||||
if currentRunner.Type() == moonlight.StringType {
|
if currentRunner.Type() == rt.StringType {
|
||||||
switch currentRunner.AsString() {
|
switch currentRunner.AsString() {
|
||||||
case "hybrid":
|
case "hybrid":
|
||||||
_, _, err = handleLua(input)
|
_, _, err = handleLua(input)
|
||||||
|
@ -171,41 +171,69 @@ func reprompt(input string) (string, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func runLuaRunner(runr moonlight.Value, userInput string) (input string, exitCode uint8, continued bool, runnerErr, err error) {
|
func runLuaRunner(runr rt.Value, userInput string) (input string, exitCode uint8, continued bool, runnerErr, err error) {
|
||||||
runnerRet, err := l.Call1(runr, moonlight.StringValue(userInput))
|
runnerRet, err := l.Call1(runr, moonlight.StringValue(userInput))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", 124, false, nil, err
|
return "", 124, false, nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
var runner *moonlight.Table
|
var runner *rt.Table
|
||||||
var ok bool
|
var ok bool
|
||||||
if runner, ok = moonlight.TryTable(runnerRet); !ok {
|
if runner, ok = runnerRet.TryTable(); !ok {
|
||||||
fmt.Fprintln(os.Stderr, "runner did not return a table")
|
fmt.Fprintln(os.Stderr, "runner did not return a table")
|
||||||
exitCode = 125
|
exitCode = 125
|
||||||
input = userInput
|
input = userInput
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if code, ok := runner.Get(moonlight.StringValue("exitCode")).TryInt(); ok {
|
if code, ok := runner.Get(rt.StringValue("exitCode")).TryInt(); ok {
|
||||||
exitCode = uint8(code)
|
exitCode = uint8(code)
|
||||||
}
|
}
|
||||||
|
|
||||||
if inp, ok := runner.Get(moonlight.StringValue("input")).TryString(); ok {
|
if inp, ok := runner.Get(rt.StringValue("input")).TryString(); ok {
|
||||||
input = inp
|
input = inp
|
||||||
}
|
}
|
||||||
|
|
||||||
if errStr, ok := runner.Get(moonlight.StringValue("err")).TryString(); ok {
|
if errStr, ok := runner.Get(rt.StringValue("err")).TryString(); ok {
|
||||||
runnerErr = fmt.Errorf("%s", errStr)
|
runnerErr = fmt.Errorf("%s", errStr)
|
||||||
}
|
}
|
||||||
|
|
||||||
if c, ok := runner.Get(moonlight.StringValue("continue")).TryBool(); ok {
|
if c, ok := runner.Get(rt.StringValue("continue")).TryBool(); ok {
|
||||||
continued = c
|
continued = c
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func handleLua(input string) (string, uint8, error) {
|
||||||
|
cmdString := aliases.Resolve(input)
|
||||||
|
// First try to load input, essentially compiling to bytecode
|
||||||
|
rtm := l.UnderlyingRuntime()
|
||||||
|
chunk, err := rtm.CompileAndLoadLuaChunk("", []byte(cmdString), moonlight.TableValue(l.GlobalTable()))
|
||||||
|
if err != nil && noexecute {
|
||||||
|
fmt.Println(err)
|
||||||
|
/* if lerr, ok := err.(*lua.ApiError); ok {
|
||||||
|
if perr, ok := lerr.Cause.(*parse.Error); ok {
|
||||||
|
print(perr.Pos.Line == parse.EOF)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
return cmdString, 125, err
|
||||||
|
}
|
||||||
|
// And if there's no syntax errors and -n isnt provided, run
|
||||||
|
if !noexecute {
|
||||||
|
if chunk != nil {
|
||||||
|
_, err = l.Call1(rt.FunctionValue(chunk))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if err == nil {
|
||||||
|
return cmdString, 0, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
return cmdString, 125, err
|
||||||
|
}
|
||||||
|
|
||||||
func handleSh(cmdString string) (input string, exitCode uint8, cont bool, runErr error) {
|
func handleSh(cmdString string) (input string, exitCode uint8, cont bool, runErr error) {
|
||||||
shRunner := hshMod.Get(moonlight.StringValue("runner")).AsTable().Get(moonlight.StringValue("sh"))
|
shRunner := hshMod.Get(rt.StringValue("runner")).AsTable().Get(rt.StringValue("sh"))
|
||||||
var err error
|
var err error
|
||||||
input, exitCode, cont, runErr, err = runLuaRunner(shRunner, cmdString)
|
input, exitCode, cont, runErr, err = runLuaRunner(shRunner, cmdString)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -579,9 +607,9 @@ func splitInput(input string) ([]string, string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func cmdFinish(code uint8, cmdstr string, private bool) {
|
func cmdFinish(code uint8, cmdstr string, private bool) {
|
||||||
hshMod.SetField("exitCode", moonlight.IntValue(int64(code)))
|
hshMod.SetField("exitCode", rt.IntValue(int64(code)))
|
||||||
// using AsValue (to convert to lua type) on an interface which is an int
|
// using AsValue (to convert to lua type) on an interface which is an int
|
||||||
// results in it being unknown in lua .... ????
|
// results in it being unknown in lua .... ????
|
||||||
// so we allow the hook handler to take lua runtime Values
|
// so we allow the hook handler to take lua runtime Values
|
||||||
hooks.Emit("command.exit", moonlight.IntValue(int64(code)), cmdstr, private)
|
hooks.Emit("command.exit", rt.IntValue(int64(code)), cmdstr, private)
|
||||||
}
|
}
|
||||||
|
|
1
go.mod
1
go.mod
|
@ -5,7 +5,6 @@ go 1.21
|
||||||
toolchain go1.22.2
|
toolchain go1.22.2
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/aarzilli/golua v0.0.0-20210507130708-11106aa57765
|
|
||||||
github.com/arnodel/golua v0.0.0-20230215163904-e0b5347eaaa1
|
github.com/arnodel/golua v0.0.0-20230215163904-e0b5347eaaa1
|
||||||
github.com/atsushinee/go-markdown-generator v0.0.0-20191121114853-83f9e1f68504
|
github.com/atsushinee/go-markdown-generator v0.0.0-20191121114853-83f9e1f68504
|
||||||
github.com/blackfireio/osinfo v1.0.5
|
github.com/blackfireio/osinfo v1.0.5
|
||||||
|
|
2
go.sum
2
go.sum
|
@ -2,8 +2,6 @@ github.com/Rosettea/golua v0.0.0-20240427174124-d239074c1749 h1:jIFnWBTsYw8s7RX7
|
||||||
github.com/Rosettea/golua v0.0.0-20240427174124-d239074c1749/go.mod h1:9jzpYPiU2is0HVGCiuIOBSXdergHUW44IEjmuN1UrIE=
|
github.com/Rosettea/golua v0.0.0-20240427174124-d239074c1749/go.mod h1:9jzpYPiU2is0HVGCiuIOBSXdergHUW44IEjmuN1UrIE=
|
||||||
github.com/Rosettea/sh/v3 v3.4.0-0.dev.0.20240720131751-805c301321fd h1:THNle0FR2g7DMO1y3Bx1Zr7rYeiLXt3st3UkxEsMzL4=
|
github.com/Rosettea/sh/v3 v3.4.0-0.dev.0.20240720131751-805c301321fd h1:THNle0FR2g7DMO1y3Bx1Zr7rYeiLXt3st3UkxEsMzL4=
|
||||||
github.com/Rosettea/sh/v3 v3.4.0-0.dev.0.20240720131751-805c301321fd/go.mod h1:YZalN5H7WNQw3DGij6IvHsEhn5YMW7M2FCwG6gnfKy4=
|
github.com/Rosettea/sh/v3 v3.4.0-0.dev.0.20240720131751-805c301321fd/go.mod h1:YZalN5H7WNQw3DGij6IvHsEhn5YMW7M2FCwG6gnfKy4=
|
||||||
github.com/aarzilli/golua v0.0.0-20210507130708-11106aa57765 h1:N6gB4UCRBZz8twlJbMFiCKj0zX5Et2nFU/LRafT4x80=
|
|
||||||
github.com/aarzilli/golua v0.0.0-20210507130708-11106aa57765/go.mod h1:hMjfaJVSqVnxenMlsxrq3Ni+vrm9Hs64tU4M7dhUoO4=
|
|
||||||
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d h1:licZJFw2RwpHMqeKTCYkitsPqHNxTmd4SNR5r94FGM8=
|
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d h1:licZJFw2RwpHMqeKTCYkitsPqHNxTmd4SNR5r94FGM8=
|
||||||
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d/go.mod h1:asat636LX7Bqt5lYEZ27JNDcqxfjdBQuJ/MM4CN/Lzo=
|
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d/go.mod h1:asat636LX7Bqt5lYEZ27JNDcqxfjdBQuJ/MM4CN/Lzo=
|
||||||
github.com/arnodel/strftime v0.1.6 h1:0hc0pUvk8KhEMXE+htyaOUV42zNcf/csIbjzEFCJqsw=
|
github.com/arnodel/strftime v0.1.6 h1:0hc0pUvk8KhEMXE+htyaOUV42zNcf/csIbjzEFCJqsw=
|
||||||
|
|
|
@ -82,17 +82,16 @@ func (b *Bait) Emit(event string, args ...interface{}) {
|
||||||
}()
|
}()
|
||||||
|
|
||||||
if handle.typ == luaListener {
|
if handle.typ == luaListener {
|
||||||
//funcVal := moonlight.FunctionValue(handle.luaCaller)
|
funcVal := rt.FunctionValue(handle.luaCaller)
|
||||||
var luaArgs []moonlight.Value
|
var luaArgs []moonlight.Value
|
||||||
for _, arg := range args {
|
for _, arg := range args {
|
||||||
var luarg moonlight.Value
|
var luarg moonlight.Value
|
||||||
switch arg.(type) {
|
switch arg.(type) {
|
||||||
case moonlight.Value: luarg = arg.(moonlight.Value)
|
case moonlight.Value: luarg = arg.(moonlight.Value)
|
||||||
default: luarg = moonlight.AsValue(arg)
|
default: luarg = rt.AsValue(arg)
|
||||||
}
|
}
|
||||||
luaArgs = append(luaArgs, luarg)
|
luaArgs = append(luaArgs, luarg)
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
_, err := b.rtm.Call1(funcVal, luaArgs...)
|
_, err := b.rtm.Call1(funcVal, luaArgs...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
if event != "error" {
|
if event != "error" {
|
||||||
|
@ -103,7 +102,6 @@ func (b *Bait) Emit(event string, args ...interface{}) {
|
||||||
// (calls the go recoverer function)
|
// (calls the go recoverer function)
|
||||||
panic(err)
|
panic(err)
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
} else {
|
} else {
|
||||||
handle.caller(args...)
|
handle.caller(args...)
|
||||||
}
|
}
|
||||||
|
@ -148,7 +146,7 @@ func (b *Bait) Off(event string, listener *Listener) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// OffLua removes a Lua function handler for an event.
|
// OffLua removes a Lua function handler for an event.
|
||||||
func (b *Bait) OffLua(event string, handler *moonlight.Closure) {
|
func (b *Bait) OffLua(event string, handler *rt.Closure) {
|
||||||
handles := b.handlers[event]
|
handles := b.handlers[event]
|
||||||
|
|
||||||
for i, handle := range handles {
|
for i, handle := range handles {
|
||||||
|
@ -171,7 +169,7 @@ func (b *Bait) Once(event string, handler func(...interface{})) *Listener {
|
||||||
}
|
}
|
||||||
|
|
||||||
// OnceLua adds a Lua function listener for an event that only runs once.
|
// OnceLua adds a Lua function listener for an event that only runs once.
|
||||||
func (b *Bait) OnceLua(event string, handler *moonlight.Closure) *Listener {
|
func (b *Bait) OnceLua(event string, handler *rt.Closure) *Listener {
|
||||||
listener := &Listener{
|
listener := &Listener{
|
||||||
typ: luaListener,
|
typ: luaListener,
|
||||||
once: true,
|
once: true,
|
||||||
|
|
|
@ -36,17 +36,19 @@ import (
|
||||||
"hilbish/moonlight"
|
"hilbish/moonlight"
|
||||||
"hilbish/util"
|
"hilbish/util"
|
||||||
"hilbish/golibs/bait"
|
"hilbish/golibs/bait"
|
||||||
|
|
||||||
|
rt "github.com/arnodel/golua/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Commander struct{
|
type Commander struct{
|
||||||
Events *bait.Bait
|
Events *bait.Bait
|
||||||
Commands map[string]*moonlight.Closure
|
Commands map[string]*rt.Closure
|
||||||
}
|
}
|
||||||
|
|
||||||
func New(rtm *moonlight.Runtime) *Commander {
|
func New(rtm *moonlight.Runtime) *Commander {
|
||||||
c := &Commander{
|
c := &Commander{
|
||||||
Events: bait.New(rtm),
|
Events: bait.New(rtm),
|
||||||
Commands: make(map[string]*moonlight.Closure),
|
Commands: make(map[string]*rt.Closure),
|
||||||
}
|
}
|
||||||
|
|
||||||
return c
|
return c
|
||||||
|
@ -117,9 +119,7 @@ func (c *Commander) cregistry(mlr *moonlight.Runtime, ct *moonlight.GoCont) (moo
|
||||||
registryLua := moonlight.NewTable()
|
registryLua := moonlight.NewTable()
|
||||||
for cmdName, cmd := range c.Commands {
|
for cmdName, cmd := range c.Commands {
|
||||||
cmdTbl := moonlight.NewTable()
|
cmdTbl := moonlight.NewTable()
|
||||||
//cmdTbl.SetField("exec", moonlight.FunctionValue(cmd))
|
cmdTbl.SetField("exec", rt.FunctionValue(cmd))
|
||||||
print(cmd)
|
|
||||||
cmdTbl.SetField("exec", moonlight.StringValue("placeholder"))
|
|
||||||
|
|
||||||
registryLua.SetField(cmdName, moonlight.TableValue(cmdTbl))
|
registryLua.SetField(cmdName, moonlight.TableValue(cmdTbl))
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,8 +55,8 @@ func (f *fs) Loader(rtm *moonlight.Runtime) moonlight.Value {
|
||||||
mod := moonlight.NewTable()
|
mod := moonlight.NewTable()
|
||||||
rtm.SetExports(mod, exports)
|
rtm.SetExports(mod, exports)
|
||||||
|
|
||||||
mod.SetField("pathSep", moonlight.StringValue(string(os.PathSeparator)))
|
mod.SetField("pathSep", rt.StringValue(string(os.PathSeparator)))
|
||||||
mod.SetField("pathListSep", moonlight.StringValue(string(os.PathListSeparator)))
|
mod.SetField("pathListSep", rt.StringValue(string(os.PathListSeparator)))
|
||||||
|
|
||||||
return moonlight.TableValue(mod)
|
return moonlight.TableValue(mod)
|
||||||
}
|
}
|
||||||
|
@ -280,7 +280,7 @@ func (f *fs) freaddir(mlr *moonlight.Runtime, c *moonlight.GoCont) (moonlight.Co
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
for i, entry := range dirEntries {
|
for i, entry := range dirEntries {
|
||||||
names.Set(moonlight.IntValue(int64(i + 1)), moonlight.StringValue(entry.Name()))
|
names.Set(rt.IntValue(int64(i + 1)), rt.StringValue(entry.Name()))
|
||||||
}
|
}
|
||||||
|
|
||||||
return mlr.PushNext1(c, moonlight.TableValue(names)), nil
|
return mlr.PushNext1(c, moonlight.TableValue(names)), nil
|
||||||
|
|
|
@ -7,6 +7,7 @@ import (
|
||||||
|
|
||||||
"hilbish/moonlight"
|
"hilbish/moonlight"
|
||||||
|
|
||||||
|
rt "github.com/arnodel/golua/runtime"
|
||||||
"golang.org/x/term"
|
"golang.org/x/term"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -36,8 +37,8 @@ func termsize(mlr *moonlight.Runtime, c *moonlight.GoCont) (moonlight.Cont, erro
|
||||||
}
|
}
|
||||||
|
|
||||||
dimensions := moonlight.NewTable()
|
dimensions := moonlight.NewTable()
|
||||||
dimensions.SetField("width", moonlight.IntValue(int64(w)))
|
dimensions.Set(rt.StringValue("width"), rt.IntValue(int64(w)))
|
||||||
dimensions.SetField("height", moonlight.IntValue(int64(h)))
|
dimensions.Set(rt.StringValue("height"), rt.IntValue(int64(h)))
|
||||||
|
|
||||||
return mlr.PushNext1(c, moonlight.TableValue(dimensions)), nil
|
return mlr.PushNext1(c, moonlight.TableValue(dimensions)), nil
|
||||||
}
|
}
|
||||||
|
|
18
history.go
18
history.go
|
@ -7,17 +7,17 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"hilbish/moonlight"
|
rt "github.com/arnodel/golua/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
type luaHistory struct {}
|
type luaHistory struct {}
|
||||||
|
|
||||||
func (h *luaHistory) Write(line string) (int, error) {
|
func (h *luaHistory) Write(line string) (int, error) {
|
||||||
histWrite := hshMod.Get(moonlight.StringValue("history")).AsTable().Get(moonlight.StringValue("add"))
|
histWrite := hshMod.Get(rt.StringValue("history")).AsTable().Get(rt.StringValue("add"))
|
||||||
ln, err := l.Call1(histWrite, moonlight.StringValue(line))
|
ln, err := l.Call1(histWrite, rt.StringValue(line))
|
||||||
|
|
||||||
var num int64
|
var num int64
|
||||||
if ln.Type() == moonlight.IntType {
|
if ln.Type() == rt.IntType {
|
||||||
num = ln.AsInt()
|
num = ln.AsInt()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -25,11 +25,11 @@ func (h *luaHistory) Write(line string) (int, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *luaHistory) GetLine(idx int) (string, error) {
|
func (h *luaHistory) GetLine(idx int) (string, error) {
|
||||||
histGet := hshMod.Get(moonlight.StringValue("history")).AsTable().Get(moonlight.StringValue("get"))
|
histGet := hshMod.Get(rt.StringValue("history")).AsTable().Get(rt.StringValue("get"))
|
||||||
lcmd, err := l.Call1(histGet, moonlight.IntValue(int64(idx)))
|
lcmd, err := l.Call1(histGet, rt.IntValue(int64(idx)))
|
||||||
|
|
||||||
var cmd string
|
var cmd string
|
||||||
if lcmd.Type() == moonlight.StringType {
|
if lcmd.Type() == rt.StringType {
|
||||||
cmd = lcmd.AsString()
|
cmd = lcmd.AsString()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -37,11 +37,11 @@ func (h *luaHistory) GetLine(idx int) (string, error) {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *luaHistory) Len() int {
|
func (h *luaHistory) Len() int {
|
||||||
histSize := hshMod.Get(moonlight.StringValue("history")).AsTable().Get(moonlight.StringValue("size"))
|
histSize := hshMod.Get(rt.StringValue("history")).AsTable().Get(rt.StringValue("size"))
|
||||||
ln, _ := l.Call1(histSize)
|
ln, _ := l.Call1(histSize)
|
||||||
|
|
||||||
var num int64
|
var num int64
|
||||||
if ln.Type() == moonlight.IntType {
|
if ln.Type() == rt.IntType {
|
||||||
num = ln.AsInt()
|
num = ln.AsInt()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
4
job.go
4
job.go
|
@ -261,7 +261,7 @@ func (j *jobHandler) add(cmd string, args []string, path string) *job {
|
||||||
stdout: &bytes.Buffer{},
|
stdout: &bytes.Buffer{},
|
||||||
stderr: &bytes.Buffer{},
|
stderr: &bytes.Buffer{},
|
||||||
}
|
}
|
||||||
//jb.ud = jobUserData(jb)
|
jb.ud = jobUserData(jb)
|
||||||
|
|
||||||
j.jobs[j.latestID] = jb
|
j.jobs[j.latestID] = jb
|
||||||
hooks.Emit("job.add", rt.UserDataValue(jb.ud))
|
hooks.Emit("job.add", rt.UserDataValue(jb.ud))
|
||||||
|
@ -389,12 +389,10 @@ func valueToJob(val rt.Value) (*job, bool) {
|
||||||
return j, ok
|
return j, ok
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
func jobUserData(j *job) *rt.UserData {
|
func jobUserData(j *job) *rt.UserData {
|
||||||
jobMeta := l.UnderlyingRuntime().Registry(jobMetaKey)
|
jobMeta := l.UnderlyingRuntime().Registry(jobMetaKey)
|
||||||
return rt.NewUserData(j, jobMeta.AsTable())
|
return rt.NewUserData(j, jobMeta.AsTable())
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
// #interface jobs
|
// #interface jobs
|
||||||
// get(id) -> @Job
|
// get(id) -> @Job
|
||||||
|
|
37
lua_exec.go
37
lua_exec.go
|
@ -1,37 +0,0 @@
|
||||||
//go:build !midnight
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"hilbish/moonlight"
|
|
||||||
rt "github.com/arnodel/golua/runtime"
|
|
||||||
)
|
|
||||||
|
|
||||||
func handleLua(input string) (string, uint8, error) {
|
|
||||||
cmdString := aliases.Resolve(input)
|
|
||||||
// First try to load input, essentially compiling to bytecode
|
|
||||||
rtm := l.UnderlyingRuntime()
|
|
||||||
chunk, err := rtm.CompileAndLoadLuaChunk("", []byte(cmdString), moonlight.TableValue(l.GlobalTable()))
|
|
||||||
if err != nil && noexecute {
|
|
||||||
fmt.Println(err)
|
|
||||||
/* if lerr, ok := err.(*lua.ApiError); ok {
|
|
||||||
if perr, ok := lerr.Cause.(*parse.Error); ok {
|
|
||||||
print(perr.Pos.Line == parse.EOF)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
return cmdString, 125, err
|
|
||||||
}
|
|
||||||
// And if there's no syntax errors and -n isnt provided, run
|
|
||||||
if !noexecute {
|
|
||||||
if chunk != nil {
|
|
||||||
_, err = l.Call1(rt.FunctionValue(chunk))
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if err == nil {
|
|
||||||
return cmdString, 0, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return cmdString, 125, err
|
|
||||||
}
|
|
|
@ -1,10 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"errors"
|
|
||||||
)
|
|
||||||
|
|
||||||
func handleLua(input string) (string, uint8, error) {
|
|
||||||
return "", 7, errors.New("lua input in midnight placeholder")
|
|
||||||
}
|
|
6
main.go
6
main.go
|
@ -170,12 +170,12 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if getopt.NArgs() > 0 {
|
if getopt.NArgs() > 0 {
|
||||||
luaArgs := moonlight.NewTable()
|
luaArgs := rt.NewTable()
|
||||||
for i, arg := range getopt.Args() {
|
for i, arg := range getopt.Args() {
|
||||||
luaArgs.Set(moonlight.IntValue(int64(i)), moonlight.StringValue(arg))
|
luaArgs.Set(rt.IntValue(int64(i)), rt.StringValue(arg))
|
||||||
}
|
}
|
||||||
|
|
||||||
l.GlobalTable().SetField("args", moonlight.TableValue(luaArgs))
|
l.GlobalTable().SetField("args", rt.TableValue(luaArgs))
|
||||||
err := l.DoFile(getopt.Arg(0))
|
err := l.DoFile(getopt.Arg(0))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintln(os.Stderr, err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Callable interface{
|
|
||||||
Continuation(*Runtime, Cont) Cont
|
|
||||||
}
|
|
||||||
|
|
||||||
type Closure struct{
|
|
||||||
refIdx int // so since we cant store the actual lua closure,
|
|
||||||
// we need a index to the ref in the lua registry... or something like that.
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) ClosureArg(c *GoCont, num int) (*Closure, error) {
|
|
||||||
fmt.Println("type at ", num, "is", mlr.state.LTypename(num))
|
|
||||||
|
|
||||||
return &Closure{
|
|
||||||
refIdx: -1,
|
|
||||||
}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
func (c *Closure) Continuation(mlr *Runtime, c Cont) Cont {
|
|
||||||
}
|
|
||||||
*/
|
|
|
@ -1,12 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
type GoCont struct{
|
|
||||||
vals []Value
|
|
||||||
f GoFunctionFunc
|
|
||||||
}
|
|
||||||
type Cont interface{}
|
|
||||||
|
|
||||||
func (gc *GoCont) Next() Cont {
|
|
||||||
return gc
|
|
||||||
}
|
|
|
@ -1,4 +1,3 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -9,7 +8,6 @@ type GoCont struct{
|
||||||
cont *rt.GoCont
|
cont *rt.GoCont
|
||||||
thread *rt.Thread
|
thread *rt.Thread
|
||||||
}
|
}
|
||||||
|
|
||||||
type Cont = rt.Cont
|
type Cont = rt.Cont
|
||||||
type Closure = rt.Closure
|
type Closure = rt.Closure
|
||||||
|
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
package moonlight
|
|
||||||
|
|
||||||
type Export struct{
|
|
||||||
Function GoToLuaFunc
|
|
||||||
ArgNum int
|
|
||||||
Variadic bool
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
func (mlr *Runtime) SetExports(tbl *Table, exports map[string]Export) {
|
|
||||||
for name, export := range exports {
|
|
||||||
tbl.SetField(name, FunctionValue(mlr.GoFunction(export.Function)))
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,6 +1,11 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
|
type Export struct{
|
||||||
|
Function GoToLuaFunc
|
||||||
|
ArgNum int
|
||||||
|
Variadic bool
|
||||||
|
}
|
||||||
|
|
||||||
func (mlr *Runtime) SetExports(tbl *Table, exports map[string]Export) {
|
func (mlr *Runtime) SetExports(tbl *Table, exports map[string]Export) {
|
||||||
for name, export := range exports {
|
for name, export := range exports {
|
||||||
mlr.rt.SetEnvGoFunc(tbl.lt, name, mlr.GoFunction(export.Function), export.ArgNum, export.Variadic)
|
mlr.rt.SetEnvGoFunc(tbl.lt, name, mlr.GoFunction(export.Function), export.ArgNum, export.Variadic)
|
||||||
|
|
|
@ -1,61 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
import (
|
|
||||||
"fmt"
|
|
||||||
|
|
||||||
"github.com/aarzilli/golua/lua"
|
|
||||||
)
|
|
||||||
|
|
||||||
type GoFunctionFunc struct{
|
|
||||||
cf lua.LuaGoFunction
|
|
||||||
}
|
|
||||||
|
|
||||||
func (gf GoFunctionFunc) Continuation(mlr *Runtime, c Cont) Cont {
|
|
||||||
return &GoCont{
|
|
||||||
f: gf,
|
|
||||||
vals: []Value{},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) CheckNArgs(c *GoCont, num int) error {
|
|
||||||
args := mlr.state.GetTop()
|
|
||||||
if args < num {
|
|
||||||
return fmt.Errorf("%d arguments needed", num)
|
|
||||||
}
|
|
||||||
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) Check1Arg(c *GoCont) error {
|
|
||||||
return mlr.CheckNArgs(c, 1)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) StringArg(c *GoCont, num int) (string, error) {
|
|
||||||
return mlr.state.CheckString(num + 1), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) Arg(c *GoCont, num int) Value {
|
|
||||||
return c.vals[num]
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) GoFunction(fun GoToLuaFunc) GoFunctionFunc {
|
|
||||||
return GoFunctionFunc{
|
|
||||||
cf: func(L *lua.State) int {
|
|
||||||
cont, err := fun(mlr, &GoCont{})
|
|
||||||
if err != nil {
|
|
||||||
L.RaiseError(err.Error())
|
|
||||||
return 0
|
|
||||||
}
|
|
||||||
|
|
||||||
for _, val := range cont.(*GoCont).vals {
|
|
||||||
switch Type(val) {
|
|
||||||
case StringType:
|
|
||||||
L.PushString(val.AsString())
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return len(cont.(*GoCont).vals)
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,4 +1,3 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -27,7 +26,7 @@ func (mlr *Runtime) Arg(c *GoCont, num int) Value {
|
||||||
return c.cont.Arg(num)
|
return c.cont.Arg(num)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mlr *Runtime) GoFunction(fun GoToLuaFunc) GoFunctionFunc {
|
func (mlr *Runtime) GoFunction(fun GoToLuaFunc) rt.GoFunctionFunc {
|
||||||
return func(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
return func(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
gocont := GoCont{
|
gocont := GoCont{
|
||||||
cont: c,
|
cont: c,
|
||||||
|
@ -36,3 +35,7 @@ func (mlr *Runtime) GoFunction(fun GoToLuaFunc) GoFunctionFunc {
|
||||||
return fun(mlr, &gocont)
|
return fun(mlr, &gocont)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (mlr *Runtime) Call1(val Value, args ...Value) (Value, error) {
|
||||||
|
return rt.Call1(mlr.rt.MainThread(), val, args...)
|
||||||
|
}
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/aarzilli/golua/lua"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Loader func(*Runtime) Value
|
|
||||||
|
|
||||||
func (mlr *Runtime) LoadLibrary(ldr Loader, name string) {
|
|
||||||
cluaLoader := func (L *lua.State) int {
|
|
||||||
mlr.pushToState(ldr(mlr))
|
|
||||||
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
mlr.state.GetGlobal("package")
|
|
||||||
mlr.state.GetField(-1, "preload")
|
|
||||||
mlr.state.PushGoFunction(cluaLoader)
|
|
||||||
mlr.state.SetField(-2, name)
|
|
||||||
}
|
|
|
@ -1,4 +1,3 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
|
|
@ -1,49 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/aarzilli/golua/lua"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Runtime struct{
|
|
||||||
state *lua.State
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewRuntime() *Runtime {
|
|
||||||
L := lua.NewState()
|
|
||||||
L.OpenLibs()
|
|
||||||
|
|
||||||
return &Runtime{
|
|
||||||
state: L,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) PushNext1(c *GoCont, v Value) Cont {
|
|
||||||
c.vals = []Value{v}
|
|
||||||
|
|
||||||
return c
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) Call1(f Value, args ...Value) (Value, error) {
|
|
||||||
for _, arg := range args {
|
|
||||||
mlr.pushToState(arg)
|
|
||||||
}
|
|
||||||
|
|
||||||
if f.refIdx > 0 {
|
|
||||||
mlr.state.RawGeti(lua.LUA_REGISTRYINDEX, f.refIdx)
|
|
||||||
mlr.state.Call(len(args), 1)
|
|
||||||
}
|
|
||||||
|
|
||||||
if mlr.state.GetTop() == 0 {
|
|
||||||
return NilValue, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
return NilValue, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) pushToState(v Value) {
|
|
||||||
switch v.Type() {
|
|
||||||
case NilType: mlr.state.PushNil()
|
|
||||||
case StringType: mlr.state.PushString(v.AsString())
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,4 +1,3 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -43,7 +42,3 @@ func (mlr *Runtime) Push(c *GoCont, v Value) {
|
||||||
func (mlr *Runtime) PushNext1(c *GoCont, v Value) Cont {
|
func (mlr *Runtime) PushNext1(c *GoCont, v Value) Cont {
|
||||||
return c.cont.PushingNext1(c.thread.Runtime, v)
|
return c.cont.PushingNext1(c.thread.Runtime, v)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (mlr *Runtime) Call1(val Value, args ...Value) (Value, error) {
|
|
||||||
return rt.Call1(mlr.rt.MainThread(), val, args...)
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,43 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
//import "github.com/aarzilli/golua/lua"
|
|
||||||
|
|
||||||
type Table struct{
|
|
||||||
refIdx int
|
|
||||||
}
|
|
||||||
|
|
||||||
func NewTable() *Table {
|
|
||||||
return &Table{
|
|
||||||
refIdx: -1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *Table) Get(val Value) Value {
|
|
||||||
return NilValue
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *Table) SetField(key string, value Value) {
|
|
||||||
}
|
|
||||||
|
|
||||||
func (t *Table) Set(key Value, value Value) {
|
|
||||||
}
|
|
||||||
|
|
||||||
func ForEach(tbl *Table, cb func(key Value, val Value)) {
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) GlobalTable() *Table {
|
|
||||||
return &Table{
|
|
||||||
refIdx: -1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func ToTable(v Value) *Table {
|
|
||||||
return &Table{
|
|
||||||
refIdx: -1,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TryTable(v Value) (*Table, bool) {
|
|
||||||
return nil, false
|
|
||||||
}
|
|
|
@ -1,4 +1,3 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -51,9 +50,3 @@ func convertToMoonlightTable(t *rt.Table) *Table {
|
||||||
lt: t,
|
lt: t,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TryTable(v Value) (*Table, bool) {
|
|
||||||
t, ok := v.TryTable()
|
|
||||||
|
|
||||||
return convertToMoonlightTable(t), ok
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,12 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
func (mlr *Runtime) DoString(code string) (Value, error) {
|
|
||||||
err := mlr.state.DoString(code)
|
|
||||||
|
|
||||||
return NilValue, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func (mlr *Runtime) DoFile(filename string) error {
|
|
||||||
return mlr.state.DoFile(filename)
|
|
||||||
}
|
|
|
@ -1,4 +1,3 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -10,7 +9,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
// DoString runs the code string in the Lua runtime.
|
// DoString runs the code string in the Lua runtime.
|
||||||
func (mlr *Runtime) DoString(code string) (Value, error) {
|
func (mlr *Runtime) DoString(code string) (rt.Value, error) {
|
||||||
chunk, err := mlr.rt.CompileAndLoadLuaChunk("<string>", []byte(code), rt.TableValue(mlr.rt.GlobalEnv()))
|
chunk, err := mlr.rt.CompileAndLoadLuaChunk("<string>", []byte(code), rt.TableValue(mlr.rt.GlobalEnv()))
|
||||||
var ret rt.Value
|
var ret rt.Value
|
||||||
if chunk != nil {
|
if chunk != nil {
|
||||||
|
|
|
@ -1,121 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package moonlight
|
|
||||||
|
|
||||||
type Value struct{
|
|
||||||
iface interface{}
|
|
||||||
relIdx int
|
|
||||||
refIdx int
|
|
||||||
}
|
|
||||||
|
|
||||||
var NilValue = Value{nil, -1, -1}
|
|
||||||
|
|
||||||
type ValueType uint8
|
|
||||||
const (
|
|
||||||
NilType ValueType = iota
|
|
||||||
BoolType
|
|
||||||
IntType
|
|
||||||
StringType
|
|
||||||
TableType
|
|
||||||
FunctionType
|
|
||||||
UnknownType
|
|
||||||
)
|
|
||||||
|
|
||||||
func Type(v Value) ValueType {
|
|
||||||
return v.Type()
|
|
||||||
}
|
|
||||||
|
|
||||||
func BoolValue(b bool) Value {
|
|
||||||
return Value{iface: b}
|
|
||||||
}
|
|
||||||
|
|
||||||
func IntValue(i int64) Value {
|
|
||||||
return Value{iface: i}
|
|
||||||
}
|
|
||||||
|
|
||||||
func StringValue(str string) Value {
|
|
||||||
return Value{iface: str}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TableValue(t *Table) Value {
|
|
||||||
return Value{iface: t}
|
|
||||||
}
|
|
||||||
|
|
||||||
func FunctionValue(f Callable) Value {
|
|
||||||
return NilValue
|
|
||||||
}
|
|
||||||
|
|
||||||
func AsValue(i interface{}) Value {
|
|
||||||
if i == nil {
|
|
||||||
return NilValue
|
|
||||||
}
|
|
||||||
|
|
||||||
switch v := i.(type) {
|
|
||||||
case bool: return BoolValue(v)
|
|
||||||
case int64: return IntValue(v)
|
|
||||||
case string: return StringValue(v)
|
|
||||||
case *Table: return TableValue(v)
|
|
||||||
case Value: return v
|
|
||||||
default:
|
|
||||||
return Value{iface: i}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) Type() ValueType {
|
|
||||||
if v.iface == nil {
|
|
||||||
return NilType
|
|
||||||
}
|
|
||||||
|
|
||||||
switch v.iface.(type) {
|
|
||||||
case bool: return BoolType
|
|
||||||
case int: return IntType
|
|
||||||
case string: return StringType
|
|
||||||
case *Table: return TableType
|
|
||||||
case *Closure: return FunctionType
|
|
||||||
default: return UnknownType
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) AsInt() int64 {
|
|
||||||
return v.iface.(int64)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) AsString() string {
|
|
||||||
if v.Type() != StringType {
|
|
||||||
panic("value type was not string")
|
|
||||||
}
|
|
||||||
|
|
||||||
return v.iface.(string)
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) AsTable() *Table {
|
|
||||||
panic("Value.AsTable unimplemented in midnight")
|
|
||||||
}
|
|
||||||
|
|
||||||
func ToString(v Value) string {
|
|
||||||
return v.AsString()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) TypeName() string {
|
|
||||||
switch v.iface.(type) {
|
|
||||||
case bool: return "bool"
|
|
||||||
case int: return "number"
|
|
||||||
case string: return "string"
|
|
||||||
case *Table: return "table"
|
|
||||||
default: return "<unknown type>"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) TryBool() (n bool, ok bool) {
|
|
||||||
n, ok = v.iface.(bool)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) TryInt() (n int, ok bool) {
|
|
||||||
n, ok = v.iface.(int)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
func (v Value) TryString() (n string, ok bool) {
|
|
||||||
n, ok = v.iface.(string)
|
|
||||||
return
|
|
||||||
}
|
|
|
@ -1,31 +1,23 @@
|
||||||
//go:build !midnight
|
|
||||||
package moonlight
|
package moonlight
|
||||||
|
|
||||||
import (
|
import (
|
||||||
rt "github.com/arnodel/golua/runtime"
|
rt "github.com/arnodel/golua/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
var NilValue = rt.NilValue
|
|
||||||
|
|
||||||
type Value = rt.Value
|
type Value = rt.Value
|
||||||
type ValueType = rt.ValueType
|
type ValueType = rt.ValueType
|
||||||
const (
|
const (
|
||||||
IntType = rt.IntType
|
|
||||||
StringType = rt.StringType
|
StringType = rt.StringType
|
||||||
FunctionType = rt.FunctionType
|
FunctionType = rt.FunctionType
|
||||||
TableType = rt.TableType
|
TableType = rt.TableType
|
||||||
)
|
)
|
||||||
|
|
||||||
func Type(v Value) ValueType {
|
|
||||||
return ValueType(v.Type())
|
|
||||||
}
|
|
||||||
|
|
||||||
func StringValue(str string) Value {
|
func StringValue(str string) Value {
|
||||||
return rt.StringValue(str)
|
return rt.StringValue(str)
|
||||||
}
|
}
|
||||||
|
|
||||||
func IntValue(i int64) Value {
|
func IntValue(i int) Value {
|
||||||
return rt.IntValue(i)
|
return rt.IntValue(int64(i))
|
||||||
}
|
}
|
||||||
|
|
||||||
func BoolValue(b bool) Value {
|
func BoolValue(b bool) Value {
|
||||||
|
@ -36,6 +28,10 @@ func TableValue(t *Table) Value {
|
||||||
return rt.TableValue(t.lt)
|
return rt.TableValue(t.lt)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func Type(v Value) ValueType {
|
||||||
|
return ValueType(v.Type())
|
||||||
|
}
|
||||||
|
|
||||||
func ToString(v Value) string {
|
func ToString(v Value) string {
|
||||||
return v.AsString()
|
return v.AsString()
|
||||||
}
|
}
|
||||||
|
@ -43,7 +39,3 @@ func ToString(v Value) string {
|
||||||
func ToTable(v Value) *Table {
|
func ToTable(v Value) *Table {
|
||||||
return convertToMoonlightTable(v.AsTable())
|
return convertToMoonlightTable(v.AsTable())
|
||||||
}
|
}
|
||||||
|
|
||||||
func AsValue(v interface{}) Value {
|
|
||||||
return rt.AsValue(v)
|
|
||||||
}
|
|
||||||
|
|
7
os.go
7
os.go
|
@ -4,6 +4,7 @@ import (
|
||||||
"hilbish/moonlight"
|
"hilbish/moonlight"
|
||||||
//"hilbish/util"
|
//"hilbish/util"
|
||||||
|
|
||||||
|
rt "github.com/arnodel/golua/runtime"
|
||||||
"github.com/blackfireio/osinfo"
|
"github.com/blackfireio/osinfo"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -18,9 +19,9 @@ func hshosLoader() *moonlight.Table {
|
||||||
info, _ := osinfo.GetOSInfo()
|
info, _ := osinfo.GetOSInfo()
|
||||||
mod := moonlight.NewTable()
|
mod := moonlight.NewTable()
|
||||||
|
|
||||||
mod.SetField("family", moonlight.StringValue(info.Family))
|
mod.SetField("family", rt.StringValue(info.Family))
|
||||||
mod.SetField("name", moonlight.StringValue(info.Name))
|
mod.SetField("name", rt.StringValue(info.Name))
|
||||||
mod.SetField("version", moonlight.StringValue(info.Version))
|
mod.SetField("version", rt.StringValue(info.Version))
|
||||||
|
|
||||||
return mod
|
return mod
|
||||||
}
|
}
|
||||||
|
|
99
rl.go
99
rl.go
|
@ -5,7 +5,6 @@ import (
|
||||||
"io"
|
"io"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"hilbish/moonlight"
|
|
||||||
"hilbish/util"
|
"hilbish/util"
|
||||||
|
|
||||||
rt "github.com/arnodel/golua/runtime"
|
rt "github.com/arnodel/golua/runtime"
|
||||||
|
@ -71,8 +70,8 @@ func newLineReader(prompt string, noHist bool) *lineReader {
|
||||||
hooks.Emit("hilbish.vimAction", actionStr, args)
|
hooks.Emit("hilbish.vimAction", actionStr, args)
|
||||||
}
|
}
|
||||||
rl.HintText = func(line []rune, pos int) []rune {
|
rl.HintText = func(line []rune, pos int) []rune {
|
||||||
hinter := hshMod.Get(moonlight.StringValue("hinter"))
|
hinter := hshMod.Get(rt.StringValue("hinter"))
|
||||||
retVal, err := l.Call1(hinter, moonlight.StringValue(string(line)), moonlight.IntValue(int64(pos)))
|
retVal, err := l.Call1(hinter, rt.StringValue(string(line)), rt.IntValue(int64(pos)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Println(err)
|
||||||
return []rune{}
|
return []rune{}
|
||||||
|
@ -86,8 +85,8 @@ func newLineReader(prompt string, noHist bool) *lineReader {
|
||||||
return []rune(hintText)
|
return []rune(hintText)
|
||||||
}
|
}
|
||||||
rl.SyntaxHighlighter = func(line []rune) string {
|
rl.SyntaxHighlighter = func(line []rune) string {
|
||||||
highlighter := hshMod.Get(moonlight.StringValue("highlighter"))
|
highlighter := hshMod.Get(rt.StringValue("highlighter"))
|
||||||
retVal, err := l.Call1(highlighter, moonlight.StringValue(string(line)))
|
retVal, err := l.Call1(highlighter, rt.StringValue(string(line)))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println(err)
|
fmt.Println(err)
|
||||||
return string(line)
|
return string(line)
|
||||||
|
@ -100,7 +99,93 @@ func newLineReader(prompt string, noHist bool) *lineReader {
|
||||||
|
|
||||||
return highlighted
|
return highlighted
|
||||||
}
|
}
|
||||||
setupTabCompleter(rl)
|
rl.TabCompleter = func(line []rune, pos int, _ readline.DelayedTabContext) (string, []*readline.CompletionGroup) {
|
||||||
|
term := rt.NewTerminationWith(l.UnderlyingRuntime().MainThread().CurrentCont(), 2, false)
|
||||||
|
compHandle := hshMod.Get(rt.StringValue("completion")).AsTable().Get(rt.StringValue("handler"))
|
||||||
|
err := rt.Call(l.UnderlyingRuntime().MainThread(), compHandle, []rt.Value{rt.StringValue(string(line)),
|
||||||
|
rt.IntValue(int64(pos))}, term)
|
||||||
|
|
||||||
|
var compGroups []*readline.CompletionGroup
|
||||||
|
if err != nil {
|
||||||
|
return "", compGroups
|
||||||
|
}
|
||||||
|
|
||||||
|
luaCompGroups := term.Get(0)
|
||||||
|
luaPrefix := term.Get(1)
|
||||||
|
|
||||||
|
if luaCompGroups.Type() != rt.TableType {
|
||||||
|
return "", compGroups
|
||||||
|
}
|
||||||
|
|
||||||
|
groups := luaCompGroups.AsTable()
|
||||||
|
// prefix is optional
|
||||||
|
pfx, _ := luaPrefix.TryString()
|
||||||
|
|
||||||
|
util.ForEach(groups, func(key rt.Value, val rt.Value) {
|
||||||
|
if key.Type() != rt.IntType || val.Type() != rt.TableType {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
valTbl := val.AsTable()
|
||||||
|
luaCompType := valTbl.Get(rt.StringValue("type"))
|
||||||
|
luaCompItems := valTbl.Get(rt.StringValue("items"))
|
||||||
|
|
||||||
|
if luaCompType.Type() != rt.StringType || luaCompItems.Type() != rt.TableType {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
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
|
||||||
|
return
|
||||||
|
}
|
||||||
|
items = append(items, vlStr)
|
||||||
|
} else {
|
||||||
|
// TODO: error
|
||||||
|
return
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
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
|
||||||
|
}
|
||||||
|
|
||||||
|
compGroups = append(compGroups, &readline.CompletionGroup{
|
||||||
|
DisplayType: dispType,
|
||||||
|
Descriptions: itemDescriptions,
|
||||||
|
Suggestions: items,
|
||||||
|
TrimSlash: false,
|
||||||
|
NoSpace: true,
|
||||||
|
})
|
||||||
|
})
|
||||||
|
|
||||||
|
return pfx, compGroups
|
||||||
|
}
|
||||||
|
|
||||||
return lr
|
return lr
|
||||||
}
|
}
|
||||||
|
@ -159,13 +244,11 @@ func (lr *lineReader) Resize() {
|
||||||
// method of saving history.
|
// method of saving history.
|
||||||
func (lr *lineReader) Loader(rtm *rt.Runtime) *rt.Table {
|
func (lr *lineReader) Loader(rtm *rt.Runtime) *rt.Table {
|
||||||
lrLua := map[string]util.LuaExport{
|
lrLua := map[string]util.LuaExport{
|
||||||
/*
|
|
||||||
"add": {lr.luaAddHistory, 1, false},
|
"add": {lr.luaAddHistory, 1, false},
|
||||||
"all": {lr.luaAllHistory, 0, false},
|
"all": {lr.luaAllHistory, 0, false},
|
||||||
"clear": {lr.luaClearHistory, 0, false},
|
"clear": {lr.luaClearHistory, 0, false},
|
||||||
"get": {lr.luaGetHistory, 1, false},
|
"get": {lr.luaGetHistory, 1, false},
|
||||||
"size": {lr.luaSize, 0, false},
|
"size": {lr.luaSize, 0, false},
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mod := rt.NewTable()
|
mod := rt.NewTable()
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
//go:build midnight
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"github.com/maxlandon/readline"
|
|
||||||
)
|
|
||||||
|
|
||||||
func setupTabCompleter(rl *readline.Instance) {
|
|
||||||
// TODO
|
|
||||||
}
|
|
|
@ -1,99 +0,0 @@
|
||||||
//go:build !midnight
|
|
||||||
package main
|
|
||||||
|
|
||||||
import (
|
|
||||||
"hilbish/util"
|
|
||||||
|
|
||||||
rt "github.com/arnodel/golua/runtime"
|
|
||||||
"github.com/maxlandon/readline"
|
|
||||||
)
|
|
||||||
|
|
||||||
func setupTabCompleter(rl *readline.Instance) {
|
|
||||||
rl.TabCompleter = func(line []rune, pos int, _ readline.DelayedTabContext) (string, []*readline.CompletionGroup) {
|
|
||||||
term := rt.NewTerminationWith(l.UnderlyingRuntime().MainThread().CurrentCont(), 2, false)
|
|
||||||
compHandle := hshMod.Get(rt.StringValue("completion")).AsTable().Get(rt.StringValue("handler"))
|
|
||||||
err := rt.Call(l.UnderlyingRuntime().MainThread(), compHandle, []rt.Value{rt.StringValue(string(line)),
|
|
||||||
rt.IntValue(int64(pos))}, term)
|
|
||||||
|
|
||||||
var compGroups []*readline.CompletionGroup
|
|
||||||
if err != nil {
|
|
||||||
return "", compGroups
|
|
||||||
}
|
|
||||||
|
|
||||||
luaCompGroups := term.Get(0)
|
|
||||||
luaPrefix := term.Get(1)
|
|
||||||
|
|
||||||
if luaCompGroups.Type() != rt.TableType {
|
|
||||||
return "", compGroups
|
|
||||||
}
|
|
||||||
|
|
||||||
groups := luaCompGroups.AsTable()
|
|
||||||
// prefix is optional
|
|
||||||
pfx, _ := luaPrefix.TryString()
|
|
||||||
|
|
||||||
util.ForEach(groups, func(key rt.Value, val rt.Value) {
|
|
||||||
if key.Type() != rt.IntType || val.Type() != rt.TableType {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
valTbl := val.AsTable()
|
|
||||||
luaCompType := valTbl.Get(rt.StringValue("type"))
|
|
||||||
luaCompItems := valTbl.Get(rt.StringValue("items"))
|
|
||||||
|
|
||||||
if luaCompType.Type() != rt.StringType || luaCompItems.Type() != rt.TableType {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
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
|
|
||||||
}
|
|
||||||
|
|
||||||
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
|
|
||||||
return
|
|
||||||
}
|
|
||||||
items = append(items, vlStr)
|
|
||||||
} else {
|
|
||||||
// TODO: error
|
|
||||||
return
|
|
||||||
}
|
|
||||||
})
|
|
||||||
|
|
||||||
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
|
|
||||||
}
|
|
||||||
|
|
||||||
compGroups = append(compGroups, &readline.CompletionGroup{
|
|
||||||
DisplayType: dispType,
|
|
||||||
Descriptions: itemDescriptions,
|
|
||||||
Suggestions: items,
|
|
||||||
TrimSlash: false,
|
|
||||||
NoSpace: true,
|
|
||||||
})
|
|
||||||
})
|
|
||||||
|
|
||||||
return pfx, compGroups
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -2,6 +2,8 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"hilbish/moonlight"
|
"hilbish/moonlight"
|
||||||
|
|
||||||
|
rt "github.com/arnodel/golua/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
// #interface runner
|
// #interface runner
|
||||||
|
@ -84,13 +86,13 @@ func shRunner(mlr *moonlight.Runtime, c *moonlight.GoCont) (moonlight.Cont, erro
|
||||||
}
|
}
|
||||||
|
|
||||||
_, exitCode, cont, err := execSh(aliases.Resolve(cmd))
|
_, exitCode, cont, err := execSh(aliases.Resolve(cmd))
|
||||||
var luaErr moonlight.Value = moonlight.NilValue
|
var luaErr moonlight.Value = rt.NilValue
|
||||||
if err != nil {
|
if err != nil {
|
||||||
luaErr = moonlight.StringValue(err.Error())
|
luaErr = moonlight.StringValue(err.Error())
|
||||||
}
|
}
|
||||||
runnerRet := moonlight.NewTable()
|
runnerRet := moonlight.NewTable()
|
||||||
runnerRet.SetField("input", moonlight.StringValue(cmd))
|
runnerRet.SetField("input", moonlight.StringValue(cmd))
|
||||||
runnerRet.SetField("exitCode", moonlight.IntValue(int64(exitCode)))
|
runnerRet.SetField("exitCode", moonlight.IntValue(int(exitCode)))
|
||||||
runnerRet.SetField("continue", moonlight.BoolValue(cont))
|
runnerRet.SetField("continue", moonlight.BoolValue(cont))
|
||||||
runnerRet.SetField("err", luaErr)
|
runnerRet.SetField("err", luaErr)
|
||||||
|
|
||||||
|
@ -112,13 +114,13 @@ func luaRunner(mlr *moonlight.Runtime, c *moonlight.GoCont) (moonlight.Cont, err
|
||||||
}
|
}
|
||||||
|
|
||||||
input, exitCode, err := handleLua(cmd)
|
input, exitCode, err := handleLua(cmd)
|
||||||
var luaErr moonlight.Value = moonlight.NilValue
|
var luaErr moonlight.Value = rt.NilValue
|
||||||
if err != nil {
|
if err != nil {
|
||||||
luaErr = moonlight.StringValue(err.Error())
|
luaErr = moonlight.StringValue(err.Error())
|
||||||
}
|
}
|
||||||
runnerRet := moonlight.NewTable()
|
runnerRet := moonlight.NewTable()
|
||||||
runnerRet.SetField("input", moonlight.StringValue(input))
|
runnerRet.SetField("input", moonlight.StringValue(input))
|
||||||
runnerRet.SetField("exitCode", moonlight.IntValue(int64(exitCode)))
|
runnerRet.SetField("exitCode", moonlight.IntValue(int(exitCode)))
|
||||||
runnerRet.SetField("err", luaErr)
|
runnerRet.SetField("err", luaErr)
|
||||||
|
|
||||||
|
|
||||||
|
|
6
sink.go
6
sink.go
|
@ -220,7 +220,7 @@ func newSinkInput(r io.Reader) *sink {
|
||||||
s := &sink{
|
s := &sink{
|
||||||
reader: bufio.NewReader(r),
|
reader: bufio.NewReader(r),
|
||||||
}
|
}
|
||||||
//s.ud = sinkUserData(s)
|
s.ud = sinkUserData(s)
|
||||||
|
|
||||||
if f, ok := r.(*os.File); ok {
|
if f, ok := r.(*os.File); ok {
|
||||||
s.file = f
|
s.file = f
|
||||||
|
@ -234,7 +234,7 @@ func newSinkOutput(w io.Writer) *sink {
|
||||||
writer: bufio.NewWriter(w),
|
writer: bufio.NewWriter(w),
|
||||||
autoFlush: true,
|
autoFlush: true,
|
||||||
}
|
}
|
||||||
//s.ud = sinkUserData(s)
|
s.ud = sinkUserData(s)
|
||||||
|
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
@ -258,9 +258,7 @@ func valueToSink(val rt.Value) (*sink, bool) {
|
||||||
return s, ok
|
return s, ok
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
func sinkUserData(s *sink) *rt.UserData {
|
func sinkUserData(s *sink) *rt.UserData {
|
||||||
sinkMeta := l.UnderlyingRuntime().Registry(sinkMetaKey)
|
sinkMeta := l.UnderlyingRuntime().Registry(sinkMetaKey)
|
||||||
return rt.NewUserData(s, sinkMeta.AsTable())
|
return rt.NewUserData(s, sinkMeta.AsTable())
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
10
timer.go
10
timer.go
|
@ -2,12 +2,10 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
// "fmt"
|
"fmt"
|
||||||
// "os"
|
"os"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
// "hilbish/moonlight"
|
|
||||||
|
|
||||||
rt "github.com/arnodel/golua/runtime"
|
rt "github.com/arnodel/golua/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -49,8 +47,7 @@ func (t *timer) start() error {
|
||||||
for {
|
for {
|
||||||
select {
|
select {
|
||||||
case <-t.ticker.C:
|
case <-t.ticker.C:
|
||||||
/*
|
_, err := l.Call1(rt.FunctionValue(t.fun))
|
||||||
_, err := l.Call1(moonlight.FunctionValue(t.fun))
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Fprintln(os.Stderr, "Error in function:\n", err)
|
fmt.Fprintln(os.Stderr, "Error in function:\n", err)
|
||||||
t.stop()
|
t.stop()
|
||||||
|
@ -59,7 +56,6 @@ func (t *timer) start() error {
|
||||||
if t.typ == timerTimeout {
|
if t.typ == timerTimeout {
|
||||||
t.stop()
|
t.stop()
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
case <-t.channel:
|
case <-t.channel:
|
||||||
t.ticker.Stop()
|
t.ticker.Stop()
|
||||||
return
|
return
|
||||||
|
|
|
@ -48,7 +48,7 @@ func (th *timersModule) create(typ timerType, dur time.Duration, fun *rt.Closure
|
||||||
th: th,
|
th: th,
|
||||||
id: th.latestID,
|
id: th.latestID,
|
||||||
}
|
}
|
||||||
//t.ud = timerUserData(t)
|
t.ud = timerUserData(t)
|
||||||
|
|
||||||
th.timers[th.latestID] = t
|
th.timers[th.latestID] = t
|
||||||
|
|
||||||
|
@ -144,7 +144,6 @@ func (th *timersModule) loader() *moonlight.Table {
|
||||||
}
|
}
|
||||||
l.SetExports(timerMethods, timerFuncs)
|
l.SetExports(timerMethods, timerFuncs)
|
||||||
|
|
||||||
/*
|
|
||||||
timerMeta := rt.NewTable()
|
timerMeta := rt.NewTable()
|
||||||
timerIndex := func(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
timerIndex := func(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
ti, _ := timerArg(c, 0)
|
ti, _ := timerArg(c, 0)
|
||||||
|
@ -169,7 +168,6 @@ func (th *timersModule) loader() *moonlight.Table {
|
||||||
|
|
||||||
timerMeta.Set(rt.StringValue("__index"), rt.FunctionValue(rt.NewGoFunction(timerIndex, "__index", 2, false)))
|
timerMeta.Set(rt.StringValue("__index"), rt.FunctionValue(rt.NewGoFunction(timerIndex, "__index", 2, false)))
|
||||||
l.UnderlyingRuntime().SetRegistry(timerMetaKey, rt.TableValue(timerMeta))
|
l.UnderlyingRuntime().SetRegistry(timerMetaKey, rt.TableValue(timerMeta))
|
||||||
*/
|
|
||||||
|
|
||||||
thExports := map[string]moonlight.Export{
|
thExports := map[string]moonlight.Export{
|
||||||
/*
|
/*
|
||||||
|
@ -181,8 +179,8 @@ func (th *timersModule) loader() *moonlight.Table {
|
||||||
luaTh := moonlight.NewTable()
|
luaTh := moonlight.NewTable()
|
||||||
l.SetExports(luaTh, thExports)
|
l.SetExports(luaTh, thExports)
|
||||||
|
|
||||||
luaTh.SetField("INTERVAL", moonlight.IntValue(0))
|
luaTh.SetField("INTERVAL", rt.IntValue(0))
|
||||||
luaTh.SetField("TIMEOUT", moonlight.IntValue(1))
|
luaTh.SetField("TIMEOUT", rt.IntValue(1))
|
||||||
|
|
||||||
return luaTh
|
return luaTh
|
||||||
}
|
}
|
||||||
|
@ -206,9 +204,7 @@ func valueToTimer(val rt.Value) (*timer, bool) {
|
||||||
return j, ok
|
return j, ok
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
func timerUserData(j *timer) *rt.UserData {
|
func timerUserData(j *timer) *rt.UserData {
|
||||||
timerMeta := l.UnderlyingRuntime().Registry(timerMetaKey)
|
timerMeta := l.UnderlyingRuntime().Registry(timerMetaKey)
|
||||||
return rt.NewUserData(j, timerMeta.AsTable())
|
return rt.NewUserData(j, timerMeta.AsTable())
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
|
@ -2,6 +2,9 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"hilbish/moonlight"
|
"hilbish/moonlight"
|
||||||
|
//"hilbish/util"
|
||||||
|
|
||||||
|
rt "github.com/arnodel/golua/runtime"
|
||||||
)
|
)
|
||||||
|
|
||||||
// #interface userDir
|
// #interface userDir
|
||||||
|
@ -14,8 +17,8 @@ import (
|
||||||
func userDirLoader() *moonlight.Table {
|
func userDirLoader() *moonlight.Table {
|
||||||
mod := moonlight.NewTable()
|
mod := moonlight.NewTable()
|
||||||
|
|
||||||
mod.SetField("config", moonlight.StringValue(confDir))
|
mod.SetField("config", rt.StringValue(confDir))
|
||||||
mod.SetField("data", moonlight.StringValue(userDataDir))
|
mod.SetField("data", rt.StringValue(userDataDir))
|
||||||
|
|
||||||
return mod
|
return mod
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,9 +15,7 @@ type LuaExport struct {
|
||||||
|
|
||||||
// SetExports puts the Lua function exports in the table.
|
// SetExports puts the Lua function exports in the table.
|
||||||
func SetExports(rtm *rt.Runtime, tbl *rt.Table, exports map[string]LuaExport) {
|
func SetExports(rtm *rt.Runtime, tbl *rt.Table, exports map[string]LuaExport) {
|
||||||
/*
|
|
||||||
for name, export := range exports {
|
for name, export := range exports {
|
||||||
rtm.SetEnvGoFunc(tbl, name, export.Function, export.ArgNum, export.Variadic)
|
rtm.SetEnvGoFunc(tbl, name, export.Function, export.ArgNum, export.Variadic)
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue