Hilbish/main.go

343 lines
7.6 KiB
Go
Raw Normal View History

2021-03-19 19:11:59 +00:00
package main
import (
"bufio"
2021-03-19 19:11:59 +00:00
"fmt"
"os"
"os/user"
"syscall"
2021-03-19 19:11:59 +00:00
"os/signal"
"strings"
2021-03-20 16:57:18 +00:00
"io"
"context"
lfs "hilbish/golibs/fs"
cmds "hilbish/golibs/commander"
"github.com/akamensky/argparse"
"github.com/bobappleyard/readline"
2021-03-19 23:03:11 +00:00
"github.com/yuin/gopher-lua"
"layeh.com/gopher-luar"
"mvdan.cc/sh/v3/interp"
"mvdan.cc/sh/v3/syntax"
2021-03-19 19:11:59 +00:00
)
const version = "0.2.0-dev"
2021-03-19 23:03:11 +00:00
var l *lua.LState
2021-03-28 22:58:58 +00:00
// User's prompt, this will get set when lua side is initialized
2021-03-19 23:03:11 +00:00
var prompt string
2021-03-28 22:58:58 +00:00
// Map of builtin/custom commands defined in the commander lua module
var commands = map[string]bool{}
2021-03-28 22:58:58 +00:00
// Command aliases
2021-03-21 21:19:51 +00:00
var aliases = map[string]string{}
2021-03-19 23:03:11 +00:00
2021-03-19 19:11:59 +00:00
func main() {
parser := argparse.NewParser("hilbish", "A shell for lua and flower lovers")
verflag := parser.Flag("v", "version", &argparse.Options{
Required: false,
Help: "Prints Hilbish version",
})
setshflag := parser.Flag("S", "set-shell-env", &argparse.Options{
Required: false,
Help: "Sets $SHELL to Hilbish's executed path",
})
err := parser.Parse(os.Args)
2021-03-28 22:58:58 +00:00
// If invalid flags or --help/-h,
if err != nil {
2021-03-28 22:58:58 +00:00
// Print usage
fmt.Print(parser.Usage(err))
os.Exit(0)
}
if *verflag {
fmt.Printf("Hilbish v%s\n", version)
os.Exit(0)
}
2021-03-28 22:58:58 +00:00
// Set $SHELL if the user wants to
if *setshflag { os.Setenv("SHELL", os.Args[0]) }
2021-03-21 07:51:44 +00:00
2021-03-28 22:58:58 +00:00
// Read config from current directory
// (this is assuming the current dir is Hilbish's git)
input, err := os.ReadFile(".hilbishrc.lua")
2021-03-21 07:51:44 +00:00
if err != nil {
2021-03-28 22:58:58 +00:00
// If it wasnt found, go to "real default"
input, err = os.ReadFile("/usr/share/hilbish/.hilbishrc.lua")
if err != nil {
fmt.Println("could not find .hilbishrc.lua or /usr/share/hilbish/.hilbishrc.lua")
return
}
2021-03-21 07:51:44 +00:00
}
homedir, _ := os.UserHomeDir()
2021-03-28 22:58:58 +00:00
// If user's config doesn't exixt,
if _, err := os.Stat(homedir + "/.hilbishrc.lua"); os.IsNotExist(err) {
2021-03-28 22:58:58 +00:00
// Create it using either default config we found
err = os.WriteFile(homedir + "/.hilbishrc.lua", input, 0644)
if err != nil {
2021-03-28 22:58:58 +00:00
// If that fails, bail
fmt.Println("Error creating config file")
fmt.Println(err)
return
}
}
2021-03-21 07:51:44 +00:00
2021-03-19 19:11:59 +00:00
HandleSignals()
2021-03-19 23:03:11 +00:00
LuaInit()
2021-03-19 19:11:59 +00:00
readline.Completer = readline.FilenameCompleter
2021-03-19 19:11:59 +00:00
for {
2021-03-26 05:06:14 +00:00
cmdString, err := readline.String(fmtPrompt())
2021-03-20 16:57:18 +00:00
if err == io.EOF {
2021-03-28 22:58:58 +00:00
// Exit if user presses ^D (ctrl + d)
2021-03-20 16:57:18 +00:00
fmt.Println("")
break
}
2021-03-19 19:11:59 +00:00
if err != nil {
2021-03-28 22:58:58 +00:00
// If we get a completely random error, print
2021-03-19 19:11:59 +00:00
fmt.Fprintln(os.Stderr, err)
}
2021-03-28 22:58:58 +00:00
// I have no idea if we need this anymore
2021-03-19 19:11:59 +00:00
cmdString = strings.TrimSuffix(cmdString, "\n")
2021-03-28 22:58:58 +00:00
// First try to run user input in Lua
2021-03-19 23:03:11 +00:00
err = l.DoString(cmdString)
2021-03-25 00:21:55 +00:00
if err == nil {
2021-03-28 22:58:58 +00:00
// If it succeeds, add to history and prompt again
2021-03-25 00:21:55 +00:00
readline.AddHistory(cmdString)
continue
}
2021-03-19 23:03:11 +00:00
2021-03-28 22:58:58 +00:00
// Split up the input
cmdArgs, cmdString := splitInput(cmdString)
2021-03-28 22:58:58 +00:00
// If there's actually no input, prompt again
2021-03-19 19:11:59 +00:00
if len(cmdArgs) == 0 { continue }
2021-03-28 22:58:58 +00:00
// If alias was found, use command alias
2021-03-21 21:19:51 +00:00
if aliases[cmdArgs[0]] != "" {
cmdString = aliases[cmdArgs[0]] + strings.Trim(cmdString, cmdArgs[0])
execCommand(cmdString)
2021-03-21 21:19:51 +00:00
continue
}
2021-03-28 22:58:58 +00:00
// If command is defined in Lua then run it
if commands[cmdArgs[0]] {
err := l.CallByParam(lua.P{
Fn: l.GetField(
l.GetTable(
l.GetGlobal("commanding"),
lua.LString("__commands")),
cmdArgs[0]),
NRet: 0,
Protect: true,
}, luar.New(l, cmdArgs[1:]))
if err != nil {
// TODO: dont panic
panic(err)
}
readline.AddHistory(cmdString)
continue
}
2021-03-28 22:58:58 +00:00
// Last option: use sh interpreter
2021-03-19 19:11:59 +00:00
switch cmdArgs[0] {
case "exit":
os.Exit(0)
2021-03-20 05:22:43 +00:00
default:
err := execCommand(cmdString)
2021-03-21 21:19:51 +00:00
if err != nil {
2021-03-28 22:58:58 +00:00
// If input is incomplete, start multiline prompting
if syntax.IsIncomplete(err) {
sb := &strings.Builder{}
for {
done := StartMultiline(cmdString, sb)
if done {
break
}
}
} else {
fmt.Fprintln(os.Stderr, err)
}
2021-03-20 05:22:43 +00:00
}
2021-03-19 19:11:59 +00:00
}
}
}
2021-03-28 22:58:58 +00:00
// This semi cursed function formats our prompt (obviously)
2021-03-26 05:06:14 +00:00
func fmtPrompt() string {
user, _ := user.Current()
host, _ := os.Hostname()
cwd, _ := os.Getwd()
2021-03-28 22:58:58 +00:00
cwd = strings.Replace(cwd, user.HomeDir, "~", 1)
2021-03-28 22:58:58 +00:00
args := []string{
2021-03-28 22:58:58 +00:00
"d", cwd,
"h", host,
"u", user.Name,
}
2021-03-28 22:58:58 +00:00
for i, v := range args {
if i % 2 == 0 {
args[i] = "%" + v
}
}
2021-03-28 22:58:58 +00:00
r := strings.NewReplacer(args...)
nprompt := r.Replace(prompt)
2021-03-28 22:58:58 +00:00
return nprompt
2021-03-26 05:06:14 +00:00
}
func StartMultiline(prev string, sb *strings.Builder) bool {
2021-03-28 22:58:58 +00:00
// sb fromt outside is passed so we can
// save input from previous prompts
if sb.String() == "" { sb.WriteString(prev + "\n") }
fmt.Printf("... ")
reader := bufio.NewReader(os.Stdin)
cont, err := reader.ReadString('\n')
if err == io.EOF {
2021-03-28 22:58:58 +00:00
// Exit when ^D
fmt.Println("")
return true
}
sb.WriteString(cont)
err = execCommand(sb.String())
if err != nil && syntax.IsIncomplete(err) {
return false
}
2021-03-28 22:58:58 +00:00
return true
}
func splitInput(input string) ([]string, string) {
// end my suffering
// TODO: refactor this garbage
2021-03-21 21:19:51 +00:00
quoted := false
startlastcmd := false
lastcmddone := false
2021-03-21 21:19:51 +00:00
cmdArgs := []string{}
sb := &strings.Builder{}
cmdstr := &strings.Builder{}
lastcmd := readline.GetHistory(readline.HistorySize() - 1)
2021-03-21 21:19:51 +00:00
for _, r := range input {
if r == '"' {
2021-03-28 22:58:58 +00:00
// start quoted input
// this determines if other runes are replaced
2021-03-21 21:19:51 +00:00
quoted = !quoted
// dont add back quotes
//sb.WriteRune(r)
} else if !quoted && r == '~' {
2021-03-28 22:58:58 +00:00
// if not in quotes and ~ is found then make it $HOME
2021-03-21 21:19:51 +00:00
sb.WriteString(os.Getenv("HOME"))
} else if !quoted && r == ' ' {
2021-03-28 22:58:58 +00:00
// if not quoted and there's a space then add to cmdargs
2021-03-21 21:19:51 +00:00
cmdArgs = append(cmdArgs, sb.String())
sb.Reset()
} else if !quoted && r == '^' && startlastcmd && !lastcmddone {
2021-03-28 22:58:58 +00:00
// if ^ is found, isnt in quotes and is
// the second occurence of the character and is
// the first time "^^" has been used
cmdstr.WriteString(lastcmd)
sb.WriteString(lastcmd)
2021-03-28 22:58:58 +00:00
startlastcmd = !startlastcmd
lastcmddone = !lastcmddone
2021-03-28 22:58:58 +00:00
continue
} else if !quoted && r == '^' && !lastcmddone {
2021-03-28 22:58:58 +00:00
// if ^ is found, isnt in quotes and is the
// first time of starting "^^"
startlastcmd = !startlastcmd
continue
2021-03-21 21:19:51 +00:00
} else {
sb.WriteRune(r)
}
cmdstr.WriteRune(r)
2021-03-21 21:19:51 +00:00
}
if sb.Len() > 0 {
cmdArgs = append(cmdArgs, sb.String())
}
readline.AddHistory(input)
return cmdArgs, cmdstr.String()
2021-03-21 21:19:51 +00:00
}
2021-03-28 22:58:58 +00:00
// Run command in sh interpreter
func execCommand(cmd string) error {
file, err := syntax.NewParser().Parse(strings.NewReader(cmd), "")
if err != nil {
return err
2021-03-21 21:19:51 +00:00
}
runner, _ := interp.New(
interp.StdIO(os.Stdin, os.Stdout, os.Stderr),
)
runner.Run(context.TODO(), file)
2021-03-21 21:19:51 +00:00
return nil
}
2021-03-28 22:58:58 +00:00
// do i even have to say
2021-03-19 19:11:59 +00:00
func HandleSignals() {
c := make(chan os.Signal)
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
go func() {
<-c
}()
2021-03-19 23:03:11 +00:00
}
func LuaInit() {
2021-03-28 22:58:58 +00:00
// TODO: Move to lua.go
2021-03-19 23:03:11 +00:00
l = lua.NewState()
l.OpenLibs()
l.SetGlobal("prompt", l.NewFunction(hshprompt))
2021-03-21 21:19:51 +00:00
l.SetGlobal("alias", l.NewFunction(hshalias))
2021-03-19 23:03:11 +00:00
2021-03-28 22:58:58 +00:00
// Add fs module to Lua
l.PreloadModule("fs", lfs.Loader)
commander := cmds.New()
2021-03-28 22:58:58 +00:00
// When a command from Lua is added, register it for use
commander.Events.On("commandRegister",
func (cmdName string, cmd *lua.LFunction) {
commands[cmdName] = true
l.SetField(
l.GetTable(l.GetGlobal("commanding"),
lua.LString("__commands")),
cmdName,
cmd)
})
l.PreloadModule("commander", commander.Loader)
2021-03-28 22:58:58 +00:00
// Add more paths that Lua can require from
l.DoString("package.path = package.path .. ';./libs/?/init.lua;/usr/share/hilbish/libs/?/init.lua'")
err := l.DoFile("/usr/share/hilbish/preload.lua")
if err != nil {
err = l.DoFile("preload.lua")
if err != nil {
fmt.Fprintln(os.Stderr,
"Missing preload file, builtins may be missing.")
}
}
homedir, _ := os.UserHomeDir()
2021-03-28 22:58:58 +00:00
// Run config
err = l.DoFile(homedir + "/.hilbishrc.lua")
2021-03-19 23:03:11 +00:00
if err != nil {
panic(err)
}
2021-03-19 19:11:59 +00:00
}