2021-03-19 19:11:59 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2021-06-02 02:13:33 +00:00
|
|
|
"bufio"
|
2021-03-19 19:11:59 +00:00
|
|
|
"fmt"
|
2021-04-19 02:09:27 +00:00
|
|
|
"io"
|
2021-03-19 19:11:59 +00:00
|
|
|
"os"
|
2021-05-01 18:51:57 +00:00
|
|
|
"strings"
|
2021-03-19 19:11:59 +00:00
|
|
|
"os/signal"
|
2021-04-19 02:09:27 +00:00
|
|
|
"os/user"
|
2021-05-01 18:51:57 +00:00
|
|
|
"path/filepath"
|
2021-03-20 04:01:24 +00:00
|
|
|
|
2021-04-28 22:57:28 +00:00
|
|
|
"hilbish/golibs/bait"
|
2021-03-20 04:01:24 +00:00
|
|
|
|
2021-05-01 05:08:55 +00:00
|
|
|
"github.com/pborman/getopt"
|
2021-03-19 23:03:11 +00:00
|
|
|
"github.com/yuin/gopher-lua"
|
2021-05-11 23:37:00 +00:00
|
|
|
"layeh.com/gopher-luar"
|
2021-04-07 01:12:19 +00:00
|
|
|
"golang.org/x/term"
|
2021-03-19 19:11:59 +00:00
|
|
|
)
|
|
|
|
|
2021-05-15 13:04:27 +00:00
|
|
|
var (
|
2021-04-20 21:51:12 +00:00
|
|
|
l *lua.LState
|
2021-05-17 23:03:56 +00:00
|
|
|
lr *LineReader
|
2021-04-19 02:09:27 +00:00
|
|
|
|
2021-06-12 01:37:10 +00:00
|
|
|
commands = map[string]*lua.LFunction{}
|
2021-04-20 21:51:12 +00:00
|
|
|
aliases = map[string]string{}
|
2021-04-19 02:09:27 +00:00
|
|
|
|
2021-04-20 21:51:12 +00:00
|
|
|
homedir string
|
2021-05-01 18:51:57 +00:00
|
|
|
curuser *user.User
|
|
|
|
|
|
|
|
hooks bait.Bait
|
2021-06-10 00:30:53 +00:00
|
|
|
defaultConfPath string
|
2021-04-20 21:51:12 +00:00
|
|
|
)
|
2021-03-19 23:03:11 +00:00
|
|
|
|
2021-03-19 19:11:59 +00:00
|
|
|
func main() {
|
2021-04-07 12:40:40 +00:00
|
|
|
homedir, _ = os.UserHomeDir()
|
2021-05-01 18:51:57 +00:00
|
|
|
curuser, _ = user.Current()
|
2021-06-10 00:30:53 +00:00
|
|
|
|
|
|
|
if defaultConfDir == "" {
|
|
|
|
// we'll add *our* default if its empty (wont be if its changed comptime)
|
|
|
|
defaultConfPath = filepath.Join(homedir, "/.hilbishrc.lua")
|
|
|
|
} else {
|
|
|
|
// else do ~ substitution
|
|
|
|
defaultConfPath = filepath.Join(strings.Replace(defaultConfDir, "~", homedir, 1), ".hilbishrc.lua")
|
|
|
|
}
|
2021-04-07 12:40:40 +00:00
|
|
|
|
2021-05-01 05:08:55 +00:00
|
|
|
verflag := getopt.BoolLong("version", 'v', "Prints Hilbish version")
|
|
|
|
setshflag := getopt.BoolLong("setshellenv", 'S', "Sets $SHELL to Hilbish's executed path")
|
2021-05-11 22:19:53 +00:00
|
|
|
cmdflag := getopt.StringLong("command", 'c', "", "Executes a command on startup")
|
2021-06-10 00:30:53 +00:00
|
|
|
configflag := getopt.StringLong("config", 'C', defaultConfPath, "Sets the path to Hilbish's config")
|
2021-05-08 13:12:21 +00:00
|
|
|
getopt.BoolLong("login", 'l', "Makes Hilbish act like a login shell")
|
|
|
|
getopt.BoolLong("interactive", 'i', "Force Hilbish to be an interactive shell")
|
2021-05-08 13:30:32 +00:00
|
|
|
getopt.BoolLong("noexec", 'n', "Don't execute and only report Lua syntax errors")
|
2021-03-20 04:01:24 +00:00
|
|
|
|
2021-05-01 05:08:55 +00:00
|
|
|
getopt.Parse()
|
2021-05-01 18:08:42 +00:00
|
|
|
loginshflag := getopt.Lookup('l').Seen()
|
2021-05-01 05:50:22 +00:00
|
|
|
interactiveflag := getopt.Lookup('i').Seen()
|
2021-05-08 12:56:24 +00:00
|
|
|
noexecflag := getopt.Lookup('n').Seen()
|
2021-05-01 05:08:55 +00:00
|
|
|
|
2021-05-01 05:50:22 +00:00
|
|
|
if *cmdflag == "" || interactiveflag {
|
2021-04-24 04:12:18 +00:00
|
|
|
interactive = true
|
|
|
|
}
|
|
|
|
|
2021-06-02 02:13:33 +00:00
|
|
|
if fileInfo, _ := os.Stdin.Stat(); (fileInfo.Mode() & os.ModeCharDevice) == 0 {
|
|
|
|
interactive = false
|
|
|
|
}
|
|
|
|
|
2021-05-01 14:44:15 +00:00
|
|
|
if getopt.NArgs() > 0 {
|
|
|
|
interactive = false
|
|
|
|
}
|
|
|
|
|
2021-05-08 12:56:24 +00:00
|
|
|
if noexecflag {
|
|
|
|
noexecute = true
|
|
|
|
}
|
|
|
|
|
2021-05-01 18:08:42 +00:00
|
|
|
// first arg, first character
|
2021-05-01 18:17:14 +00:00
|
|
|
if loginshflag || os.Args[0][0] == '-' {
|
2021-05-01 18:08:42 +00:00
|
|
|
login = true
|
|
|
|
}
|
|
|
|
|
2021-03-20 04:01:24 +00:00
|
|
|
if *verflag {
|
2021-05-14 01:02:56 +00:00
|
|
|
fmt.Printf("Hilbish %s\n", version)
|
2021-03-20 04:01:24 +00:00
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// Set $SHELL if the user wants to
|
2021-04-19 02:09:27 +00:00
|
|
|
if *setshflag {
|
|
|
|
os.Setenv("SHELL", os.Args[0])
|
|
|
|
}
|
2021-03-21 07:51:44 +00:00
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// If user's config doesn't exixt,
|
2021-06-10 00:30:53 +00:00
|
|
|
if _, err := os.Stat(defaultConfPath); os.IsNotExist(err) {
|
2021-03-30 23:47:02 +00:00
|
|
|
// Read default from current directory
|
|
|
|
// (this is assuming the current dir is Hilbish's git)
|
|
|
|
input, err := os.ReadFile(".hilbishrc.lua")
|
|
|
|
if err != nil {
|
2021-06-10 00:30:53 +00:00
|
|
|
// If it wasnt found, go to the real sample conf
|
2021-06-10 00:33:30 +00:00
|
|
|
input, err = os.ReadFile(sampleConfPath)
|
2021-03-30 23:47:02 +00:00
|
|
|
if err != nil {
|
2021-06-10 00:33:30 +00:00
|
|
|
fmt.Println("could not find .hilbishrc.lua or", sampleConfPath)
|
2021-03-30 23:47:02 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// Create it using either default config we found
|
2021-06-10 00:30:53 +00:00
|
|
|
err = os.WriteFile(defaultConfPath, input, 0644)
|
2021-03-25 16:07:51 +00:00
|
|
|
if err != nil {
|
2021-03-28 22:58:58 +00:00
|
|
|
// If that fails, bail
|
2021-03-25 16:07:51 +00:00
|
|
|
fmt.Println("Error creating config file")
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2021-03-21 07:51:44 +00:00
|
|
|
|
2021-05-11 22:12:58 +00:00
|
|
|
go HandleSignals()
|
2021-05-01 18:17:14 +00:00
|
|
|
LuaInit()
|
2021-05-01 18:08:42 +00:00
|
|
|
RunLogin()
|
2021-05-01 18:17:14 +00:00
|
|
|
RunConfig(*configflag)
|
2021-03-19 19:11:59 +00:00
|
|
|
|
2021-05-17 23:03:56 +00:00
|
|
|
lr = NewLineReader("")
|
2021-05-11 22:12:58 +00:00
|
|
|
|
2021-06-02 02:13:33 +00:00
|
|
|
if fileInfo, _ := os.Stdin.Stat(); (fileInfo.Mode() & os.ModeCharDevice) == 0 {
|
|
|
|
scanner := bufio.NewScanner(bufio.NewReader(os.Stdin))
|
|
|
|
for scanner.Scan() {
|
|
|
|
RunInput(scanner.Text())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-16 12:42:20 +00:00
|
|
|
if *cmdflag != "" {
|
|
|
|
RunInput(*cmdflag)
|
|
|
|
}
|
|
|
|
|
2021-05-01 14:44:15 +00:00
|
|
|
if getopt.NArgs() > 0 {
|
2021-05-11 23:37:00 +00:00
|
|
|
l.SetGlobal("args", luar.New(l, getopt.Args()))
|
2021-05-01 14:44:15 +00:00
|
|
|
err := l.DoFile(getopt.Arg(0))
|
2021-05-01 05:08:55 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Fprintln(os.Stderr, err)
|
2021-05-01 14:44:15 +00:00
|
|
|
os.Exit(1)
|
2021-05-01 05:08:55 +00:00
|
|
|
}
|
2021-05-01 14:44:15 +00:00
|
|
|
os.Exit(0)
|
2021-05-01 05:08:55 +00:00
|
|
|
}
|
|
|
|
|
2021-06-11 22:26:34 +00:00
|
|
|
input:
|
2021-04-24 04:12:18 +00:00
|
|
|
for interactive {
|
2021-04-14 17:20:03 +00:00
|
|
|
running = false
|
2021-04-16 14:27:11 +00:00
|
|
|
|
2021-05-17 23:03:56 +00:00
|
|
|
lr.SetPrompt(fmtPrompt())
|
|
|
|
input, err := lr.Read()
|
2021-04-16 14:27:11 +00:00
|
|
|
|
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
|
|
|
|
2021-04-05 00:30:03 +00:00
|
|
|
input = strings.TrimSpace(input)
|
2021-04-24 03:42:34 +00:00
|
|
|
if len(input) == 0 { continue }
|
2021-04-05 00:30:03 +00:00
|
|
|
|
2021-04-04 22:42:56 +00:00
|
|
|
if strings.HasSuffix(input, "\\") {
|
|
|
|
for {
|
|
|
|
input, err = ContinuePrompt(strings.TrimSuffix(input, "\\"))
|
2021-06-11 22:26:34 +00:00
|
|
|
if err != nil {
|
|
|
|
goto input // continue inside nested loop
|
|
|
|
}
|
|
|
|
if !strings.HasSuffix(input, "\\") {
|
2021-04-19 02:09:27 +00:00
|
|
|
break
|
|
|
|
}
|
2021-04-04 22:42:56 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-14 17:20:03 +00:00
|
|
|
running = true
|
2021-05-17 00:09:47 +00:00
|
|
|
HandleHistory(input)
|
2021-04-04 22:42:56 +00:00
|
|
|
RunInput(input)
|
2021-04-07 01:12:19 +00:00
|
|
|
|
|
|
|
termwidth, _, err := term.GetSize(0)
|
2021-04-19 02:09:27 +00:00
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
2021-04-24 03:44:59 +00:00
|
|
|
fmt.Printf("\u001b[7m∆\u001b[0m" + strings.Repeat(" ", termwidth - 1) + "\r")
|
2021-04-04 22:42:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func ContinuePrompt(prev string) (string, error) {
|
2021-05-01 18:25:35 +00:00
|
|
|
hooks.Em.Emit("multiline", nil)
|
2021-05-17 23:03:56 +00:00
|
|
|
lr.SetPrompt(multilinePrompt)
|
|
|
|
cont, err := lr.Read()
|
2021-04-04 22:42:56 +00:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("")
|
2021-06-11 22:25:24 +00:00
|
|
|
return "", err
|
2021-03-19 19:11:59 +00:00
|
|
|
}
|
2021-06-11 22:08:31 +00:00
|
|
|
cont = strings.TrimSpace(cont)
|
2021-06-11 22:25:24 +00:00
|
|
|
|
2021-05-16 02:25:29 +00:00
|
|
|
return prev + strings.TrimSuffix(cont, "\n"), nil
|
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 {
|
2021-03-28 21:11:57 +00:00
|
|
|
host, _ := os.Hostname()
|
|
|
|
cwd, _ := os.Getwd()
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-05-01 18:51:57 +00:00
|
|
|
cwd = strings.Replace(cwd, curuser.HomeDir, "~", 1)
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
args := []string{
|
2021-03-28 22:58:58 +00:00
|
|
|
"d", cwd,
|
2021-05-01 18:51:57 +00:00
|
|
|
"D", filepath.Base(cwd),
|
2021-03-28 22:58:58 +00:00
|
|
|
"h", host,
|
2021-05-01 18:51:57 +00:00
|
|
|
"u", curuser.Username,
|
2021-03-28 21:11:57 +00:00
|
|
|
}
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
for i, v := range args {
|
|
|
|
if i % 2 == 0 {
|
|
|
|
args[i] = "%" + v
|
|
|
|
}
|
|
|
|
}
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
r := strings.NewReplacer(args...)
|
|
|
|
nprompt := r.Replace(prompt)
|
2021-03-28 22:58:58 +00:00
|
|
|
|
2021-03-28 21:11:57 +00:00
|
|
|
return nprompt
|
2021-03-26 05:06:14 +00:00
|
|
|
}
|
|
|
|
|
2021-03-28 22:58:58 +00:00
|
|
|
// do i even have to say
|
2021-03-19 19:11:59 +00:00
|
|
|
func HandleSignals() {
|
2021-03-20 04:01:24 +00:00
|
|
|
c := make(chan os.Signal)
|
2021-04-14 17:20:03 +00:00
|
|
|
signal.Notify(c, os.Interrupt)
|
|
|
|
|
|
|
|
for range c {
|
|
|
|
if !running {
|
2021-06-09 01:00:01 +00:00
|
|
|
lr.ClearInput()
|
2021-04-14 17:20:03 +00:00
|
|
|
}
|
|
|
|
}
|
2021-03-19 23:03:11 +00:00
|
|
|
}
|
2021-05-17 00:09:47 +00:00
|
|
|
|
|
|
|
func HandleHistory(cmd string) {
|
2021-05-17 23:03:56 +00:00
|
|
|
lr.AddHistory(cmd)
|
2021-05-17 00:09:47 +00:00
|
|
|
// TODO: load history again (history shared between sessions like this ye)
|
|
|
|
}
|
|
|
|
|