2021-10-16 16:40:53 +00:00
|
|
|
package util
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
import (
|
2022-05-01 04:49:59 +00:00
|
|
|
"strings"
|
|
|
|
"os/user"
|
2022-04-04 10:40:02 +00:00
|
|
|
|
|
|
|
rt "github.com/arnodel/golua/runtime"
|
|
|
|
)
|
2021-10-16 16:40:53 +00:00
|
|
|
|
2021-11-22 23:59:28 +00:00
|
|
|
// SetField sets a field in a table, adding docs for it.
|
|
|
|
// It is accessible via the __docProp metatable. It is a table of the names of the fields.
|
2024-07-19 20:54:15 +00:00
|
|
|
func SetField(module *rt.Table, field string, value rt.Value) {
|
2022-04-22 14:42:04 +00:00
|
|
|
module.Set(rt.StringValue(field), value)
|
|
|
|
}
|
|
|
|
|
2022-04-04 10:40:02 +00:00
|
|
|
// HandleStrCallback handles function parameters for Go functions which take
|
|
|
|
// a string and a closure.
|
|
|
|
func HandleStrCallback(t *rt.Thread, c *rt.GoCont) (string, *rt.Closure, error) {
|
|
|
|
if err := c.CheckNArgs(2); err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
|
|
|
name, err := c.StringArg(0)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
|
|
|
cb, err := c.ClosureArg(1)
|
|
|
|
if err != nil {
|
|
|
|
return "", nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
return name, cb, err
|
|
|
|
}
|
2022-04-21 18:01:59 +00:00
|
|
|
|
|
|
|
// ForEach loops through a Lua table.
|
|
|
|
func ForEach(tbl *rt.Table, cb func(key rt.Value, val rt.Value)) {
|
|
|
|
nextVal := rt.NilValue
|
|
|
|
for {
|
|
|
|
key, val, _ := tbl.Next(nextVal)
|
|
|
|
if key == rt.NilValue {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
nextVal = key
|
|
|
|
|
|
|
|
cb(key, val)
|
|
|
|
}
|
|
|
|
}
|
2022-05-01 04:49:59 +00:00
|
|
|
|
2022-05-01 11:20:40 +00:00
|
|
|
// ExpandHome expands ~ (tilde) in the path, changing it to the user home
|
|
|
|
// directory.
|
2022-05-01 04:49:59 +00:00
|
|
|
func ExpandHome(path string) string {
|
2022-05-01 11:20:40 +00:00
|
|
|
if strings.HasPrefix(path, "~") {
|
|
|
|
curuser, _ := user.Current()
|
|
|
|
homedir := curuser.HomeDir
|
2022-05-01 04:49:59 +00:00
|
|
|
|
2022-05-01 11:20:40 +00:00
|
|
|
return strings.Replace(path, "~", homedir, 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
return path
|
2022-05-01 04:49:59 +00:00
|
|
|
}
|
2022-05-01 11:20:40 +00:00
|
|
|
|
2022-05-18 01:37:42 +00:00
|
|
|
// AbbrevHome changes the user's home directory in the path string to ~ (tilde)
|
|
|
|
func AbbrevHome(path string) string {
|
|
|
|
curuser, _ := user.Current()
|
|
|
|
if strings.HasPrefix(path, curuser.HomeDir) {
|
|
|
|
return "~" + strings.TrimPrefix(path, curuser.HomeDir)
|
|
|
|
}
|
|
|
|
|
|
|
|
return path
|
|
|
|
}
|