2021-12-15 00:54:23 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"strings"
|
2021-12-20 02:37:44 +00:00
|
|
|
"sync"
|
2021-12-15 00:54:23 +00:00
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
"hilbish/util"
|
|
|
|
|
|
|
|
rt "github.com/arnodel/golua/runtime"
|
2021-12-15 00:54:23 +00:00
|
|
|
)
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
var aliases *aliasModule
|
2021-12-15 00:54:23 +00:00
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
type aliasModule struct {
|
2021-12-15 00:54:23 +00:00
|
|
|
aliases map[string]string
|
2021-12-20 02:37:44 +00:00
|
|
|
mu *sync.RWMutex
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// initialize aliases map
|
2022-12-15 04:00:54 +00:00
|
|
|
func newAliases() *aliasModule {
|
|
|
|
return &aliasModule{
|
2021-12-15 00:54:23 +00:00
|
|
|
aliases: make(map[string]string),
|
2021-12-20 02:37:44 +00:00
|
|
|
mu: &sync.RWMutex{},
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
func (a *aliasModule) Add(alias, cmd string) {
|
2022-03-19 16:43:48 +00:00
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
2021-12-20 02:37:44 +00:00
|
|
|
|
2022-03-19 16:43:48 +00:00
|
|
|
a.aliases[alias] = cmd
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
func (a *aliasModule) All() map[string]string {
|
2022-03-19 16:43:48 +00:00
|
|
|
return a.aliases
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
func (a *aliasModule) Delete(alias string) {
|
2022-03-19 16:43:48 +00:00
|
|
|
a.mu.Lock()
|
|
|
|
defer a.mu.Unlock()
|
2021-12-20 02:37:44 +00:00
|
|
|
|
2022-03-19 16:43:48 +00:00
|
|
|
delete(a.aliases, alias)
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
func (a *aliasModule) Resolve(cmdstr string) string {
|
2022-03-19 16:43:48 +00:00
|
|
|
a.mu.RLock()
|
|
|
|
defer a.mu.RUnlock()
|
2021-12-20 02:37:44 +00:00
|
|
|
|
2021-12-15 00:54:23 +00:00
|
|
|
args := strings.Split(cmdstr, " ")
|
2022-03-19 16:43:48 +00:00
|
|
|
for a.aliases[args[0]] != "" {
|
|
|
|
alias := a.aliases[args[0]]
|
2021-12-15 00:54:23 +00:00
|
|
|
cmdstr = alias + strings.TrimPrefix(cmdstr, args[0])
|
|
|
|
cmdArgs, _ := splitInput(cmdstr)
|
|
|
|
args = cmdArgs
|
|
|
|
|
2022-03-19 16:43:48 +00:00
|
|
|
if a.aliases[args[0]] == alias {
|
2021-12-15 00:54:23 +00:00
|
|
|
break
|
|
|
|
}
|
2022-03-19 16:43:48 +00:00
|
|
|
if a.aliases[args[0]] != "" {
|
2021-12-15 00:54:23 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return cmdstr
|
|
|
|
}
|
|
|
|
|
|
|
|
// lua section
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
// #interface aliases
|
|
|
|
// command aliasing
|
|
|
|
// The alias interface deals with all command aliases in Hilbish.
|
|
|
|
func (a *aliasModule) Loader(rtm *rt.Runtime) *rt.Table {
|
2021-12-15 00:54:23 +00:00
|
|
|
// create a lua module with our functions
|
2022-04-04 10:40:02 +00:00
|
|
|
hshaliasesLua := map[string]util.LuaExport{
|
|
|
|
"add": util.LuaExport{hlalias, 2, false},
|
|
|
|
"list": util.LuaExport{a.luaList, 0, false},
|
|
|
|
"del": util.LuaExport{a.luaDelete, 1, false},
|
2022-04-23 16:28:28 +00:00
|
|
|
"resolve": util.LuaExport{a.luaResolve, 1, false},
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
mod := rt.NewTable()
|
|
|
|
util.SetExports(rtm, mod, hshaliasesLua)
|
2021-12-15 00:54:23 +00:00
|
|
|
|
|
|
|
return mod
|
|
|
|
}
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
// #interface aliases
|
|
|
|
// add(alias, cmd)
|
|
|
|
// This is an alias (ha) for the `hilbish.alias` function.
|
|
|
|
// --- @param alias string
|
|
|
|
// --- @param cmd string
|
|
|
|
func _hlalias() {}
|
|
|
|
|
|
|
|
// #interface aliases
|
2023-01-07 15:52:05 +00:00
|
|
|
// list() -> table<string, string>
|
2022-12-21 00:59:55 +00:00
|
|
|
// Get a table of all aliases, with string keys as the alias and the value as the command.
|
2023-01-07 15:52:05 +00:00
|
|
|
// --- @returns table<string, string>
|
2022-12-15 04:00:54 +00:00
|
|
|
func (a *aliasModule) luaList(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
2022-04-04 10:40:02 +00:00
|
|
|
aliasesList := rt.NewTable()
|
2022-03-19 16:43:48 +00:00
|
|
|
for k, v := range a.All() {
|
2022-04-04 10:40:02 +00:00
|
|
|
aliasesList.Set(rt.StringValue(k), rt.StringValue(v))
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
return c.PushingNext1(t.Runtime, rt.TableValue(aliasesList)), nil
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
// #interface aliases
|
|
|
|
// delete(name)
|
|
|
|
// Removes an alias.
|
|
|
|
// --- @param name string
|
|
|
|
func (a *aliasModule) luaDelete(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
2022-04-04 10:40:02 +00:00
|
|
|
if err := c.Check1Arg(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
alias, err := c.StringArg(0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-03-19 16:43:48 +00:00
|
|
|
a.Delete(alias)
|
2021-12-15 00:54:23 +00:00
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
return c.Next(), nil
|
2021-12-15 00:54:23 +00:00
|
|
|
}
|
2022-04-23 16:28:28 +00:00
|
|
|
|
2022-12-15 04:00:54 +00:00
|
|
|
// #interface aliases
|
2022-12-21 00:59:55 +00:00
|
|
|
// resolve(alias) -> command (string)
|
2022-12-15 04:00:54 +00:00
|
|
|
// Tries to resolve an alias to its command.
|
|
|
|
// --- @param alias string
|
2022-12-21 00:59:55 +00:00
|
|
|
// --- @returns string
|
2022-12-15 04:00:54 +00:00
|
|
|
func (a *aliasModule) luaResolve(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
2022-04-23 16:28:28 +00:00
|
|
|
if err := c.Check1Arg(); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
alias, err := c.StringArg(0)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
resolved := a.Resolve(alias)
|
|
|
|
|
|
|
|
return c.PushingNext1(t.Runtime, rt.StringValue(resolved)), nil
|
|
|
|
}
|