mirror of https://github.com/Hilbis/Hilbish
Compare commits
No commits in common. "bc4e0f835ff3cf3dcfcabe27ec6b275e53e57567" and "822b2876e9168e6ab53b67999e45291469c4258b" have entirely different histories.
bc4e0f835f
...
822b2876e9
|
@ -5,8 +5,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
|
||||||
"strings"
|
|
||||||
|
|
||||||
"github.com/pborman/getopt"
|
"github.com/pborman/getopt"
|
||||||
"github.com/yuin/gopher-lua"
|
"github.com/yuin/gopher-lua"
|
||||||
|
@ -23,14 +21,9 @@ func HilbishLoader(L *lua.LState) int {
|
||||||
mod := L.SetFuncs(L.NewTable(), exports)
|
mod := L.SetFuncs(L.NewTable(), exports)
|
||||||
|
|
||||||
host, _ := os.Hostname()
|
host, _ := os.Hostname()
|
||||||
username := curuser.Username
|
|
||||||
// this will be baked into binary since GOOS is a constant
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
username = strings.Split(username, "\\")[1] // for some reason Username includes the hostname on windows
|
|
||||||
}
|
|
||||||
|
|
||||||
L.SetField(mod, "ver", lua.LString(version))
|
L.SetField(mod, "ver", lua.LString(version))
|
||||||
L.SetField(mod, "user", lua.LString(username))
|
L.SetField(mod, "user", lua.LString(curuser.Username))
|
||||||
L.SetField(mod, "host", lua.LString(host))
|
L.SetField(mod, "host", lua.LString(host))
|
||||||
L.SetField(mod, "home", lua.LString(homedir))
|
L.SetField(mod, "home", lua.LString(homedir))
|
||||||
|
|
||||||
|
|
3
lua.go
3
lua.go
|
@ -152,8 +152,7 @@ func hshgoroutine(gofunc func()) {
|
||||||
|
|
||||||
func hshtimeout(timeoutfunc func(), ms int) {
|
func hshtimeout(timeoutfunc func(), ms int) {
|
||||||
timeout := time.Duration(ms) * time.Millisecond
|
timeout := time.Duration(ms) * time.Millisecond
|
||||||
time.Sleep(timeout)
|
time.AfterFunc(timeout, timeoutfunc)
|
||||||
timeoutfunc()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func hshinterval(L *lua.LState) int {
|
func hshinterval(L *lua.LState) int {
|
||||||
|
|
65
main.go
65
main.go
|
@ -2,20 +2,22 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
"runtime"
|
|
||||||
"strings"
|
"strings"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"os/user"
|
"os/user"
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
"time"
|
||||||
|
|
||||||
"hilbish/golibs/bait"
|
"hilbish/golibs/bait"
|
||||||
|
|
||||||
"github.com/pborman/getopt"
|
"github.com/pborman/getopt"
|
||||||
"github.com/yuin/gopher-lua"
|
"github.com/yuin/gopher-lua"
|
||||||
"layeh.com/gopher-luar"
|
"layeh.com/gopher-luar"
|
||||||
|
"mvdan.cc/sh/v3/interp"
|
||||||
"golang.org/x/term"
|
"golang.org/x/term"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -31,13 +33,13 @@ var (
|
||||||
|
|
||||||
hooks bait.Bait
|
hooks bait.Bait
|
||||||
defaultConfPath string
|
defaultConfPath string
|
||||||
|
|
||||||
|
runner *interp.Runner
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
homedir, _ = os.UserHomeDir()
|
homedir, _ = os.UserHomeDir()
|
||||||
curuser, _ = user.Current()
|
curuser, _ = user.Current()
|
||||||
preloadPath = strings.Replace(preloadPath, "~", homedir, 1)
|
|
||||||
sampleConfPath = strings.Replace(sampleConfPath, "~", homedir, 1)
|
|
||||||
|
|
||||||
if defaultConfDir == "" {
|
if defaultConfDir == "" {
|
||||||
// we'll add *our* default if its empty (wont be if its changed comptime)
|
// we'll add *our* default if its empty (wont be if its changed comptime)
|
||||||
|
@ -149,6 +151,56 @@ func main() {
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Execute handler for sh runner
|
||||||
|
exechandle := func(ctx context.Context, args []string) error {
|
||||||
|
hc := interp.HandlerCtx(ctx)
|
||||||
|
_, argstring := splitInput(strings.Join(args, " "))
|
||||||
|
|
||||||
|
// If alias was found, use command alias
|
||||||
|
if aliases[args[0]] != "" {
|
||||||
|
alias := aliases[args[0]]
|
||||||
|
argstring = alias + strings.TrimPrefix(argstring, args[0])
|
||||||
|
cmdArgs, _ := splitInput(argstring)
|
||||||
|
args = cmdArgs
|
||||||
|
}
|
||||||
|
|
||||||
|
// If command is defined in Lua then run it
|
||||||
|
if commands[args[0]] != nil {
|
||||||
|
err := l.CallByParam(lua.P{
|
||||||
|
Fn: commands[args[0]],
|
||||||
|
NRet: 1,
|
||||||
|
Protect: true,
|
||||||
|
}, luar.New(l, args[1:]))
|
||||||
|
luaexitcode := l.Get(-1)
|
||||||
|
var exitcode uint8 = 0
|
||||||
|
|
||||||
|
l.Pop(1)
|
||||||
|
|
||||||
|
if code, ok := luaexitcode.(lua.LNumber); luaexitcode != lua.LNil && ok {
|
||||||
|
exitcode = uint8(code)
|
||||||
|
}
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
fmt.Fprintln(os.Stderr,
|
||||||
|
"Error in command:\n\n" + err.Error())
|
||||||
|
}
|
||||||
|
hooks.Em.Emit("command.exit", exitcode)
|
||||||
|
return interp.NewExitStatus(exitcode)
|
||||||
|
}
|
||||||
|
|
||||||
|
if _, err := interp.LookPathDir(hc.Dir, hc.Env, args[0]); err != nil {
|
||||||
|
hooks.Em.Emit("command.not-found", args[0])
|
||||||
|
return interp.NewExitStatus(127)
|
||||||
|
}
|
||||||
|
|
||||||
|
return interp.DefaultExecHandler(2 * time.Second)(ctx, args)
|
||||||
|
}
|
||||||
|
// Setup sh runner outside of input label
|
||||||
|
runner, _ = interp.New(
|
||||||
|
interp.StdIO(os.Stdin, os.Stdout, os.Stderr),
|
||||||
|
interp.ExecHandler(exechandle),
|
||||||
|
)
|
||||||
|
|
||||||
input:
|
input:
|
||||||
for interactive {
|
for interactive {
|
||||||
running = false
|
running = false
|
||||||
|
@ -211,17 +263,12 @@ func fmtPrompt() string {
|
||||||
cwd, _ := os.Getwd()
|
cwd, _ := os.Getwd()
|
||||||
|
|
||||||
cwd = strings.Replace(cwd, curuser.HomeDir, "~", 1)
|
cwd = strings.Replace(cwd, curuser.HomeDir, "~", 1)
|
||||||
username := curuser.Username
|
|
||||||
// this will be baked into binary since GOOS is a constant
|
|
||||||
if runtime.GOOS == "windows" {
|
|
||||||
username = strings.Split(username, "\\")[1] // for some reason Username includes the hostname on windows
|
|
||||||
}
|
|
||||||
|
|
||||||
args := []string{
|
args := []string{
|
||||||
"d", cwd,
|
"d", cwd,
|
||||||
"D", filepath.Base(cwd),
|
"D", filepath.Base(cwd),
|
||||||
"h", host,
|
"h", host,
|
||||||
"u", username,
|
"u", curuser.Username,
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, v := range args {
|
for i, v := range args {
|
||||||
|
|
50
shell.go
50
shell.go
|
@ -5,7 +5,6 @@ import (
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
|
||||||
|
|
||||||
// "github.com/bobappleyard/readline"
|
// "github.com/bobappleyard/readline"
|
||||||
"github.com/yuin/gopher-lua"
|
"github.com/yuin/gopher-lua"
|
||||||
|
@ -114,54 +113,7 @@ func execCommand(cmd string) error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
exechandle := func(ctx context.Context, args []string) error {
|
|
||||||
hc := interp.HandlerCtx(ctx)
|
|
||||||
_, argstring := splitInput(strings.Join(args, " "))
|
|
||||||
|
|
||||||
// If alias was found, use command alias
|
|
||||||
if aliases[args[0]] != "" {
|
|
||||||
alias := aliases[args[0]]
|
|
||||||
argstring = alias + strings.TrimPrefix(argstring, args[0])
|
|
||||||
cmdArgs, _ := splitInput(argstring)
|
|
||||||
args = cmdArgs
|
|
||||||
}
|
|
||||||
|
|
||||||
// If command is defined in Lua then run it
|
|
||||||
if commands[args[0]] != nil {
|
|
||||||
err := l.CallByParam(lua.P{
|
|
||||||
Fn: commands[args[0]],
|
|
||||||
NRet: 1,
|
|
||||||
Protect: true,
|
|
||||||
}, luar.New(l, args[1:]))
|
|
||||||
luaexitcode := l.Get(-1)
|
|
||||||
var exitcode uint8 = 0
|
|
||||||
|
|
||||||
l.Pop(1)
|
|
||||||
|
|
||||||
if code, ok := luaexitcode.(lua.LNumber); luaexitcode != lua.LNil && ok {
|
|
||||||
exitcode = uint8(code)
|
|
||||||
}
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
fmt.Fprintln(os.Stderr,
|
|
||||||
"Error in command:\n\n" + err.Error())
|
|
||||||
}
|
|
||||||
hooks.Em.Emit("command.exit", exitcode)
|
|
||||||
return interp.NewExitStatus(exitcode)
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, err := interp.LookPathDir(hc.Dir, hc.Env, args[0]); err != nil {
|
|
||||||
hooks.Em.Emit("command.not-found", args[0])
|
|
||||||
return interp.NewExitStatus(127)
|
|
||||||
}
|
|
||||||
|
|
||||||
return interp.DefaultExecHandler(2 * time.Second)(ctx, args)
|
|
||||||
}
|
|
||||||
runner, _ := interp.New(
|
|
||||||
interp.StdIO(os.Stdin, os.Stdout, os.Stderr),
|
|
||||||
interp.ExecHandler(exechandle),
|
|
||||||
)
|
|
||||||
err = runner.Run(context.TODO(), file)
|
err = runner.Run(context.TODO(), file)
|
||||||
|
|
||||||
return err
|
return err
|
||||||
|
|
11
vars.go
11
vars.go
|
@ -3,7 +3,18 @@ package main
|
||||||
// String vars that are free to be changed at compile time
|
// String vars that are free to be changed at compile time
|
||||||
var (
|
var (
|
||||||
version = "v0.5.1"
|
version = "v0.5.1"
|
||||||
|
requirePaths = `';./libs/?/init.lua;./?/init.lua;./?/?.lua'
|
||||||
|
.. ';/usr/share/hilbish/libs/?/init.lua;'
|
||||||
|
.. ';/usr/share/hilbish/libs/?/?.lua;'
|
||||||
|
.. hilbish.home .. '/.local/share/hilbish/libs/?/init.lua;'
|
||||||
|
.. hilbish.home .. '/.local/share/hilbish/libs/?/?.lua;'
|
||||||
|
.. hilbish.home .. '/.local/share/hilbish/libs/?.lua'
|
||||||
|
.. hilbish.home .. '/.config/hilbish/?/init.lua'
|
||||||
|
.. hilbish.home .. '/.config/hilbish/?/?.lua'
|
||||||
|
.. hilbish.home .. '/.config/hilbish/?.lua'`
|
||||||
|
preloadPath = "/usr/share/hilbish/preload.lua"
|
||||||
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
defaultConfDir = "" // ~ will be substituted for home, path for user's default config
|
||||||
|
sampleConfPath = "/usr/share/hilbish/.hilbishrc.lua" // Path to default/sample config
|
||||||
|
|
||||||
prompt string // Prompt will always get changed anyway
|
prompt string // Prompt will always get changed anyway
|
||||||
multilinePrompt = "> "
|
multilinePrompt = "> "
|
||||||
|
|
|
@ -1,18 +0,0 @@
|
||||||
// +build linux
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
// String vars that are free to be changed at compile time
|
|
||||||
var (
|
|
||||||
requirePaths = `';./libs/?/init.lua;./?/init.lua;./?/?.lua'
|
|
||||||
.. ';/usr/share/hilbish/libs/?/init.lua;'
|
|
||||||
.. ';/usr/share/hilbish/libs/?/?.lua;'
|
|
||||||
.. hilbish.home .. '/.local/share/hilbish/libs/?/init.lua;'
|
|
||||||
.. hilbish.home .. '/.local/share/hilbish/libs/?/?.lua;'
|
|
||||||
.. hilbish.home .. '/.local/share/hilbish/libs/?.lua'
|
|
||||||
.. hilbish.home .. '/.config/hilbish/?/init.lua'
|
|
||||||
.. hilbish.home .. '/.config/hilbish/?/?.lua'
|
|
||||||
.. hilbish.home .. '/.config/hilbish/?.lua'`
|
|
||||||
preloadPath = "/usr/share/hilbish/preload.lua"
|
|
||||||
sampleConfPath = "/usr/share/hilbish/.hilbishrc.lua" // Path to default/sample config
|
|
||||||
)
|
|
|
@ -1,12 +0,0 @@
|
||||||
// +build windows
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
// String vars that are free to be changed at compile time
|
|
||||||
var (
|
|
||||||
requirePaths = `';./libs/?/init.lua;./?/init.lua;./?/?.lua'
|
|
||||||
.. hilbish.home .. '\\Appdata\\Roaming\\Hilbish\\libs\\?\\init.lua;'
|
|
||||||
.. hilbish.home .. '\\Appdata\\Roaming\\Hilbish\\libs\\?\\?.lua;'`
|
|
||||||
preloadPath = "~\\Appdata\\Roaming\\Hilbish\\preload.lua" // ~ and \ gonna cry?
|
|
||||||
sampleConfPath = "~\\Appdata\\Roaming\\Hilbish\\hilbishrc.lua" // Path to default/sample config
|
|
||||||
)
|
|
Loading…
Reference in New Issue