mirror of https://github.com/Hilbis/Hilbish
Compare commits
No commits in common. "352c5f73a8f461d99b20456126ab2502dc798789" and "8b7c7e707a7d06e7e49d00c457d140e760488142" have entirely different histories.
352c5f73a8
...
8b7c7e707a
15
Makefile
15
Makefile
|
@ -1,5 +1,4 @@
|
||||||
PREFIX ?= /usr
|
PREFIX ?= /usr
|
||||||
DESTDIR ?=
|
|
||||||
BINDIR ?= $(PREFIX)/bin
|
BINDIR ?= $(PREFIX)/bin
|
||||||
LIBDIR ?= $(PREFIX)/share/hilbish
|
LIBDIR ?= $(PREFIX)/share/hilbish
|
||||||
|
|
||||||
|
@ -7,17 +6,17 @@ build:
|
||||||
@go build
|
@go build
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@install -v -d "$(DESTDIR)$(BINDIR)/" && install -m 0755 -v hilbish "$(DESTDIR)$(BINDIR)/hilbish"
|
@install -v -d "$(BINDIR)/" && install -m 0755 -v hilbish "$(BINDIR)/hilbish"
|
||||||
@mkdir -p "$(DESTDIR)$(LIBDIR)"
|
@mkdir -p "$(LIBDIR)"
|
||||||
@cp libs preload.lua .hilbishrc.lua "$(DESTDIR)$(LIBDIR)" -r
|
@cp libs preload.lua .hilbishrc.lua "$(LIBDIR)" -r
|
||||||
@echo "$(DESTDIR)$(BINDIR)/hilbish" >> /etc/shells
|
@echo /usr/bin/hilbish >> /etc/shells
|
||||||
@echo "Hilbish Installed"
|
@echo "Hilbish Installed"
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
@rm -vrf \
|
@rm -vrf \
|
||||||
"$(DESTDIR)$(BINDIR)/hilbish" \
|
"$(BINDIR)/hilbish" \
|
||||||
"$(DESTDIR)$(LIBDIR)"
|
"$(LIBDIR)"
|
||||||
@sed -i '/hilbish/d' /etc/shells
|
@sed '/\/usr\/bin\/hilbish/d' /etc/shells
|
||||||
@echo "Hilbish Uninstalled"
|
@echo "Hilbish Uninstalled"
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
|
|
|
@ -22,7 +22,7 @@ cd Hilbish
|
||||||
make build
|
make build
|
||||||
sudo make install
|
sudo make install
|
||||||
# Or
|
# Or
|
||||||
sudo make all
|
sudo make
|
||||||
```
|
```
|
||||||
|
|
||||||
Alternativly, if you use Arch Linux, you can install Hilbish with an **(unofficial)** AUR package
|
Alternativly, if you use Arch Linux, you can install Hilbish with an **(unofficial)** AUR package
|
||||||
|
|
105
main.go
105
main.go
|
@ -4,7 +4,8 @@ import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
"os/user"
|
_ "os/exec"
|
||||||
|
_ "os/user"
|
||||||
"syscall"
|
"syscall"
|
||||||
"os/signal"
|
"os/signal"
|
||||||
"strings"
|
"strings"
|
||||||
|
@ -24,11 +25,8 @@ import (
|
||||||
|
|
||||||
const version = "0.2.0-dev"
|
const version = "0.2.0-dev"
|
||||||
var l *lua.LState
|
var l *lua.LState
|
||||||
// User's prompt, this will get set when lua side is initialized
|
|
||||||
var prompt string
|
var prompt string
|
||||||
// Map of builtin/custom commands defined in the commander lua module
|
|
||||||
var commands = map[string]bool{}
|
var commands = map[string]bool{}
|
||||||
// Command aliases
|
|
||||||
var aliases = map[string]string{}
|
var aliases = map[string]string{}
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -43,9 +41,7 @@ func main() {
|
||||||
})
|
})
|
||||||
|
|
||||||
err := parser.Parse(os.Args)
|
err := parser.Parse(os.Args)
|
||||||
// If invalid flags or --help/-h,
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// Print usage
|
|
||||||
fmt.Print(parser.Usage(err))
|
fmt.Print(parser.Usage(err))
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
@ -55,14 +51,10 @@ func main() {
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Set $SHELL if the user wants to
|
|
||||||
if *setshflag { os.Setenv("SHELL", os.Args[0]) }
|
if *setshflag { os.Setenv("SHELL", os.Args[0]) }
|
||||||
|
|
||||||
// Read config from current directory
|
|
||||||
// (this is assuming the current dir is Hilbish's git)
|
|
||||||
input, err := os.ReadFile(".hilbishrc.lua")
|
input, err := os.ReadFile(".hilbishrc.lua")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If it wasnt found, go to "real default"
|
|
||||||
input, err = os.ReadFile("/usr/share/hilbish/.hilbishrc.lua")
|
input, err = os.ReadFile("/usr/share/hilbish/.hilbishrc.lua")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("could not find .hilbishrc.lua or /usr/share/hilbish/.hilbishrc.lua")
|
fmt.Println("could not find .hilbishrc.lua or /usr/share/hilbish/.hilbishrc.lua")
|
||||||
|
@ -71,12 +63,9 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
homedir, _ := os.UserHomeDir()
|
homedir, _ := os.UserHomeDir()
|
||||||
// If user's config doesn't exixt,
|
|
||||||
if _, err := os.Stat(homedir + "/.hilbishrc.lua"); os.IsNotExist(err) {
|
if _, err := os.Stat(homedir + "/.hilbishrc.lua"); os.IsNotExist(err) {
|
||||||
// Create it using either default config we found
|
|
||||||
err = os.WriteFile(homedir + "/.hilbishrc.lua", input, 0644)
|
err = os.WriteFile(homedir + "/.hilbishrc.lua", input, 0644)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If that fails, bail
|
|
||||||
fmt.Println("Error creating config file")
|
fmt.Println("Error creating config file")
|
||||||
fmt.Println(err)
|
fmt.Println(err)
|
||||||
return
|
return
|
||||||
|
@ -87,43 +76,41 @@ func main() {
|
||||||
LuaInit()
|
LuaInit()
|
||||||
|
|
||||||
readline.Completer = readline.FilenameCompleter
|
readline.Completer = readline.FilenameCompleter
|
||||||
|
|
||||||
for {
|
for {
|
||||||
|
//user, _ := user.Current()
|
||||||
|
//dir, _ := os.Getwd()
|
||||||
|
//host, _ := os.Hostname()
|
||||||
|
|
||||||
|
//reader := bufio.NewReader(os.Stdin)
|
||||||
|
|
||||||
|
//fmt.Printf(prompt)
|
||||||
|
|
||||||
cmdString, err := readline.String(fmtPrompt())
|
cmdString, err := readline.String(fmtPrompt())
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
// Exit if user presses ^D (ctrl + d)
|
|
||||||
fmt.Println("")
|
fmt.Println("")
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If we get a completely random error, print
|
|
||||||
fmt.Fprintln(os.Stderr, err)
|
fmt.Fprintln(os.Stderr, err)
|
||||||
}
|
}
|
||||||
|
|
||||||
// I have no idea if we need this anymore
|
|
||||||
cmdString = strings.TrimSuffix(cmdString, "\n")
|
cmdString = strings.TrimSuffix(cmdString, "\n")
|
||||||
// First try to run user input in Lua
|
|
||||||
err = l.DoString(cmdString)
|
err = l.DoString(cmdString)
|
||||||
|
|
||||||
if err == nil {
|
if err == nil {
|
||||||
// If it succeeds, add to history and prompt again
|
|
||||||
readline.AddHistory(cmdString)
|
readline.AddHistory(cmdString)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// Split up the input
|
cmdArgs := splitInput(cmdString)
|
||||||
cmdArgs, cmdString := splitInput(cmdString)
|
|
||||||
// If there's actually no input, prompt again
|
|
||||||
if len(cmdArgs) == 0 { continue }
|
if len(cmdArgs) == 0 { continue }
|
||||||
|
|
||||||
// If alias was found, use command alias
|
|
||||||
if aliases[cmdArgs[0]] != "" {
|
if aliases[cmdArgs[0]] != "" {
|
||||||
cmdString = aliases[cmdArgs[0]] + strings.Trim(cmdString, cmdArgs[0])
|
cmdString = aliases[cmdArgs[0]] + strings.Trim(cmdString, cmdArgs[0])
|
||||||
|
//cmdArgs := splitInput(cmdString)
|
||||||
execCommand(cmdString)
|
execCommand(cmdString)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// If command is defined in Lua then run it
|
|
||||||
if commands[cmdArgs[0]] {
|
if commands[cmdArgs[0]] {
|
||||||
err := l.CallByParam(lua.P{
|
err := l.CallByParam(lua.P{
|
||||||
Fn: l.GetField(
|
Fn: l.GetField(
|
||||||
|
@ -141,15 +128,12 @@ func main() {
|
||||||
readline.AddHistory(cmdString)
|
readline.AddHistory(cmdString)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
// Last option: use sh interpreter
|
|
||||||
switch cmdArgs[0] {
|
switch cmdArgs[0] {
|
||||||
case "exit":
|
case "exit":
|
||||||
os.Exit(0)
|
os.Exit(0)
|
||||||
default:
|
default:
|
||||||
err := execCommand(cmdString)
|
err := execCommand(cmdString)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
// If input is incomplete, start multiline prompting
|
|
||||||
if syntax.IsIncomplete(err) {
|
if syntax.IsIncomplete(err) {
|
||||||
sb := &strings.Builder{}
|
sb := &strings.Builder{}
|
||||||
for {
|
for {
|
||||||
|
@ -166,35 +150,11 @@ func main() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// This semi cursed function formats our prompt (obviously)
|
|
||||||
func fmtPrompt() string {
|
func fmtPrompt() string {
|
||||||
user, _ := user.Current()
|
return prompt
|
||||||
host, _ := os.Hostname()
|
|
||||||
cwd, _ := os.Getwd()
|
|
||||||
|
|
||||||
cwd = strings.Replace(cwd, user.HomeDir, "~", 1)
|
|
||||||
|
|
||||||
args := []string{
|
|
||||||
"d", cwd,
|
|
||||||
"h", host,
|
|
||||||
"u", user.Name,
|
|
||||||
}
|
|
||||||
|
|
||||||
for i, v := range args {
|
|
||||||
if i % 2 == 0 {
|
|
||||||
args[i] = "%" + v
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
r := strings.NewReplacer(args...)
|
|
||||||
nprompt := r.Replace(prompt)
|
|
||||||
|
|
||||||
return nprompt
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func StartMultiline(prev string, sb *strings.Builder) bool {
|
func StartMultiline(prev string, sb *strings.Builder) bool {
|
||||||
// sb fromt outside is passed so we can
|
|
||||||
// save input from previous prompts
|
|
||||||
if sb.String() == "" { sb.WriteString(prev + "\n") }
|
if sb.String() == "" { sb.WriteString(prev + "\n") }
|
||||||
|
|
||||||
fmt.Printf("... ")
|
fmt.Printf("... ")
|
||||||
|
@ -203,7 +163,6 @@ func StartMultiline(prev string, sb *strings.Builder) bool {
|
||||||
|
|
||||||
cont, err := reader.ReadString('\n')
|
cont, err := reader.ReadString('\n')
|
||||||
if err == io.EOF {
|
if err == io.EOF {
|
||||||
// Exit when ^D
|
|
||||||
fmt.Println("")
|
fmt.Println("")
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
@ -218,61 +177,33 @@ func StartMultiline(prev string, sb *strings.Builder) bool {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
func splitInput(input string) ([]string, string) {
|
func splitInput(input string) []string {
|
||||||
// end my suffering
|
|
||||||
// TODO: refactor this garbage
|
|
||||||
quoted := false
|
quoted := false
|
||||||
startlastcmd := false
|
|
||||||
lastcmddone := false
|
|
||||||
cmdArgs := []string{}
|
cmdArgs := []string{}
|
||||||
sb := &strings.Builder{}
|
sb := &strings.Builder{}
|
||||||
cmdstr := &strings.Builder{}
|
|
||||||
lastcmd := readline.GetHistory(readline.HistorySize() - 1)
|
|
||||||
|
|
||||||
for _, r := range input {
|
for _, r := range input {
|
||||||
if r == '"' {
|
if r == '"' {
|
||||||
// start quoted input
|
|
||||||
// this determines if other runes are replaced
|
|
||||||
quoted = !quoted
|
quoted = !quoted
|
||||||
// dont add back quotes
|
// dont add back quotes
|
||||||
//sb.WriteRune(r)
|
//sb.WriteRune(r)
|
||||||
} else if !quoted && r == '~' {
|
} else if !quoted && r == '~' {
|
||||||
// if not in quotes and ~ is found then make it $HOME
|
|
||||||
sb.WriteString(os.Getenv("HOME"))
|
sb.WriteString(os.Getenv("HOME"))
|
||||||
} else if !quoted && r == ' ' {
|
} else if !quoted && r == ' ' {
|
||||||
// if not quoted and there's a space then add to cmdargs
|
|
||||||
cmdArgs = append(cmdArgs, sb.String())
|
cmdArgs = append(cmdArgs, sb.String())
|
||||||
sb.Reset()
|
sb.Reset()
|
||||||
} else if !quoted && r == '^' && startlastcmd && !lastcmddone {
|
|
||||||
// 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)
|
|
||||||
|
|
||||||
startlastcmd = !startlastcmd
|
|
||||||
lastcmddone = !lastcmddone
|
|
||||||
|
|
||||||
continue
|
|
||||||
} else if !quoted && r == '^' && !lastcmddone {
|
|
||||||
// if ^ is found, isnt in quotes and is the
|
|
||||||
// first time of starting "^^"
|
|
||||||
startlastcmd = !startlastcmd
|
|
||||||
continue
|
|
||||||
} else {
|
} else {
|
||||||
sb.WriteRune(r)
|
sb.WriteRune(r)
|
||||||
}
|
}
|
||||||
cmdstr.WriteRune(r)
|
|
||||||
}
|
}
|
||||||
if sb.Len() > 0 {
|
if sb.Len() > 0 {
|
||||||
cmdArgs = append(cmdArgs, sb.String())
|
cmdArgs = append(cmdArgs, sb.String())
|
||||||
}
|
}
|
||||||
|
|
||||||
readline.AddHistory(input)
|
readline.AddHistory(input)
|
||||||
return cmdArgs, cmdstr.String()
|
return cmdArgs
|
||||||
}
|
}
|
||||||
|
|
||||||
// Run command in sh interpreter
|
|
||||||
func execCommand(cmd string) error {
|
func execCommand(cmd string) error {
|
||||||
file, err := syntax.NewParser().Parse(strings.NewReader(cmd), "")
|
file, err := syntax.NewParser().Parse(strings.NewReader(cmd), "")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
@ -286,7 +217,6 @@ func execCommand(cmd string) error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// do i even have to say
|
|
||||||
func HandleSignals() {
|
func HandleSignals() {
|
||||||
c := make(chan os.Signal)
|
c := make(chan os.Signal)
|
||||||
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
signal.Notify(c, os.Interrupt, syscall.SIGTERM)
|
||||||
|
@ -296,7 +226,6 @@ func HandleSignals() {
|
||||||
}
|
}
|
||||||
|
|
||||||
func LuaInit() {
|
func LuaInit() {
|
||||||
// TODO: Move to lua.go
|
|
||||||
l = lua.NewState()
|
l = lua.NewState()
|
||||||
|
|
||||||
l.OpenLibs()
|
l.OpenLibs()
|
||||||
|
@ -304,11 +233,9 @@ func LuaInit() {
|
||||||
l.SetGlobal("prompt", l.NewFunction(hshprompt))
|
l.SetGlobal("prompt", l.NewFunction(hshprompt))
|
||||||
l.SetGlobal("alias", l.NewFunction(hshalias))
|
l.SetGlobal("alias", l.NewFunction(hshalias))
|
||||||
|
|
||||||
// Add fs module to Lua
|
|
||||||
l.PreloadModule("fs", lfs.Loader)
|
l.PreloadModule("fs", lfs.Loader)
|
||||||
|
|
||||||
commander := cmds.New()
|
commander := cmds.New()
|
||||||
// When a command from Lua is added, register it for use
|
|
||||||
commander.Events.On("commandRegister",
|
commander.Events.On("commandRegister",
|
||||||
func (cmdName string, cmd *lua.LFunction) {
|
func (cmdName string, cmd *lua.LFunction) {
|
||||||
commands[cmdName] = true
|
commands[cmdName] = true
|
||||||
|
@ -321,7 +248,6 @@ func LuaInit() {
|
||||||
|
|
||||||
l.PreloadModule("commander", commander.Loader)
|
l.PreloadModule("commander", commander.Loader)
|
||||||
|
|
||||||
// Add more paths that Lua can require from
|
|
||||||
l.DoString("package.path = package.path .. ';./libs/?/init.lua;/usr/share/hilbish/libs/?/init.lua'")
|
l.DoString("package.path = package.path .. ';./libs/?/init.lua;/usr/share/hilbish/libs/?/init.lua'")
|
||||||
|
|
||||||
err := l.DoFile("/usr/share/hilbish/preload.lua")
|
err := l.DoFile("/usr/share/hilbish/preload.lua")
|
||||||
|
@ -334,7 +260,6 @@ func LuaInit() {
|
||||||
}
|
}
|
||||||
|
|
||||||
homedir, _ := os.UserHomeDir()
|
homedir, _ := os.UserHomeDir()
|
||||||
// Run config
|
|
||||||
err = l.DoFile(homedir + "/.hilbishrc.lua")
|
err = l.DoFile(homedir + "/.hilbishrc.lua")
|
||||||
if err != nil {
|
if err != nil {
|
||||||
panic(err)
|
panic(err)
|
||||||
|
|
Loading…
Reference in New Issue