mirror of https://github.com/Hilbis/Hilbish
Compare commits
4 Commits
bb8d072b8c
...
f40ce3c8f7
Author | SHA1 | Date |
---|---|---|
sammyette | f40ce3c8f7 | |
sammyette | be526c15d1 | |
sammyette | 393b2009bf | |
sammyette | 77979dca19 |
155
docs/api/fs.md
155
docs/api/fs.md
|
@ -8,22 +8,28 @@ menu:
|
||||||
---
|
---
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
The fs module provides easy and simple access to filesystem functions
|
|
||||||
and other things, and acts an addition to the Lua standard library's
|
The fs module provides filesystem functions to Hilbish. While Lua's standard
|
||||||
I/O and filesystem functions.
|
library has some I/O functions, they're missing a lot of the basics. The `fs`
|
||||||
|
library offers more functions and will work on any operating system Hilbish does.
|
||||||
|
|
||||||
## Functions
|
## Functions
|
||||||
|||
|
|||
|
||||||
|----|----|
|
|----|----|
|
||||||
|<a href="#abs">abs(path) -> string</a>|Gives an absolute version of `path`.|
|
|<a href="#abs">abs(path) -> string</a>|Returns an absolute version of the `path`.|
|
||||||
|<a href="#basename">basename(path) -> string</a>|Gives the basename of `path`. For the rules,|
|
|<a href="#basename">basename(path) -> string</a>|Returns the "basename," or the last part of the provided `path`. If path is empty,|
|
||||||
|<a href="#cd">cd(dir)</a>|Changes directory to `dir`|
|
|<a href="#cd">cd(dir)</a>|Changes Hilbish's directory to `dir`.|
|
||||||
|<a href="#dir">dir(path) -> string</a>|Returns the directory part of `path`. For the rules, see Go's|
|
|<a href="#dir">dir(path) -> string</a>|Returns the directory part of `path`. If a file path like|
|
||||||
|<a href="#glob">glob(pattern) -> matches (table)</a>|Glob all files and directories that match the pattern.|
|
|<a href="#glob">glob(pattern) -> matches (table)</a>|Match all files based on the provided `pattern`.|
|
||||||
|<a href="#join">join(...) -> string</a>|Takes paths and joins them together with the OS's|
|
|<a href="#join">join(...path) -> string</a>|Takes any list of paths and joins them based on the operating system's path separator.|
|
||||||
|<a href="#mkdir">mkdir(name, recursive)</a>|Makes a directory called `name`. If `recursive` is true, it will create its parent directories.|
|
|<a href="#mkdir">mkdir(name, recursive)</a>|Creates a new directory with the provided `name`.|
|
||||||
|<a href="#readdir">readdir(dir) -> {}</a>|Returns a table of files in `dir`.|
|
|<a href="#readdir">readdir(path) -> table[string]</a>|Returns a list of all files and directories in the provided path.|
|
||||||
|<a href="#stat">stat(path) -> {}</a>|Returns a table of info about the `path`.|
|
|<a href="#stat">stat(path) -> {}</a>|Returns the information about a given `path`.|
|
||||||
|
|
||||||
|
## Static module fields
|
||||||
|
|||
|
||||||
|
|----|----|
|
||||||
|
|pathSep|The operating system's path separator.|
|
||||||
|
|
||||||
<hr><div id='abs'>
|
<hr><div id='abs'>
|
||||||
<h4 class='heading'>
|
<h4 class='heading'>
|
||||||
|
@ -33,9 +39,12 @@ fs.abs(path) -> string
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Gives an absolute version of `path`.
|
Returns an absolute version of the `path`.
|
||||||
|
This can be used to resolve short paths like `..` to `/home/user`.
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`path`**
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='basename'>
|
<hr><div id='basename'>
|
||||||
|
@ -46,10 +55,12 @@ fs.basename(path) -> string
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Gives the basename of `path`. For the rules,
|
Returns the "basename," or the last part of the provided `path`. If path is empty,
|
||||||
see Go's filepath.Base
|
`.` will be returned.
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`path`**
|
||||||
|
Path to get the base name of.
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='cd'>
|
<hr><div id='cd'>
|
||||||
|
@ -60,9 +71,11 @@ fs.cd(dir)
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Changes directory to `dir`
|
Changes Hilbish's directory to `dir`.
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`dir`**
|
||||||
|
Path to change directory to.
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='dir'>
|
<hr><div id='dir'>
|
||||||
|
@ -73,10 +86,12 @@ fs.dir(path) -> string
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Returns the directory part of `path`. For the rules, see Go's
|
Returns the directory part of `path`. If a file path like
|
||||||
filepath.Dir
|
`~/Documents/doc.txt` then this function will return `~/Documents`.
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`path`**
|
||||||
|
Path to get the directory for.
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='glob'>
|
<hr><div id='glob'>
|
||||||
|
@ -87,24 +102,50 @@ fs.glob(pattern) -> matches (table)
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Glob all files and directories that match the pattern.
|
Match all files based on the provided `pattern`.
|
||||||
For the rules, see Go's filepath.Glob
|
For the syntax' refer to Go's filepath.Match function: https://pkg.go.dev/path/filepath#Match
|
||||||
|
|
||||||
|
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`pattern`**
|
||||||
|
Pattern to compare files with.
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
```lua
|
||||||
|
--[[
|
||||||
|
Within a folder that contains the following files:
|
||||||
|
a.txt
|
||||||
|
init.lua
|
||||||
|
code.lua
|
||||||
|
doc.pdf
|
||||||
|
]]--
|
||||||
|
local matches = fs.glob './*.lua'
|
||||||
|
print(matches)
|
||||||
|
-- -> {'init.lua', 'code.lua'}
|
||||||
|
````
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='join'>
|
<hr><div id='join'>
|
||||||
<h4 class='heading'>
|
<h4 class='heading'>
|
||||||
fs.join(...) -> string
|
fs.join(...path) -> string
|
||||||
<a href="#join" class='heading-link'>
|
<a href="#join" class='heading-link'>
|
||||||
<i class="fas fa-paperclip"></i>
|
<i class="fas fa-paperclip"></i>
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Takes paths and joins them together with the OS's
|
Takes any list of paths and joins them based on the operating system's path separator.
|
||||||
directory separator (forward or backward slash).
|
|
||||||
|
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`path`** (This type is variadic. You can pass an infinite amount of parameters with this type.)
|
||||||
|
Paths to join together
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
```lua
|
||||||
|
-- This prints the directory for Hilbish's config!
|
||||||
|
print(fs.join(hilbish.userDir.config, 'hilbish'))
|
||||||
|
-- -> '/home/user/.config/hilbish' on Linux
|
||||||
|
````
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='mkdir'>
|
<hr><div id='mkdir'>
|
||||||
|
@ -115,22 +156,38 @@ fs.mkdir(name, recursive)
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
|
Creates a new directory with the provided `name`.
|
||||||
|
With `recursive`, mkdir will create parent directories.
|
||||||
|
|
||||||
|
-- This will create the directory foo, then create the directory bar in the
|
||||||
|
-- foo directory. If recursive is false in this case, it will fail.
|
||||||
|
fs.mkdir('./foo/bar', true)
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`name`**
|
||||||
|
Name of the directory
|
||||||
|
|
||||||
|
`boolean` **`recursive`**
|
||||||
|
Whether to create parent directories for the provided name
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
```lua
|
||||||
|
|
||||||
|
````
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='readdir'>
|
<hr><div id='readdir'>
|
||||||
<h4 class='heading'>
|
<h4 class='heading'>
|
||||||
fs.readdir(dir) -> {}
|
fs.readdir(path) -> table[string]
|
||||||
<a href="#readdir" class='heading-link'>
|
<a href="#readdir" class='heading-link'>
|
||||||
<i class="fas fa-paperclip"></i>
|
<i class="fas fa-paperclip"></i>
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Returns a table of files in `dir`.
|
Returns a list of all files and directories in the provided path.
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`dir`**
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<hr><div id='stat'>
|
<hr><div id='stat'>
|
||||||
|
@ -141,13 +198,33 @@ fs.stat(path) -> {}
|
||||||
</a>
|
</a>
|
||||||
</h4>
|
</h4>
|
||||||
|
|
||||||
Returns a table of info about the `path`.
|
Returns the information about a given `path`.
|
||||||
It contains the following keys:
|
The returned table contains the following values:
|
||||||
name (string) - Name of the path
|
name (string) - Name of the path
|
||||||
size (number) - Size of the path
|
size (number) - Size of the path in bytes
|
||||||
mode (string) - Permission mode in an octal format string (with leading 0)
|
mode (string) - Unix permission mode in an octal format string (with leading 0)
|
||||||
isDir (boolean) - If the path is a directory
|
isDir (boolean) - If the path is a directory
|
||||||
|
|
||||||
|
|
||||||
#### Parameters
|
#### Parameters
|
||||||
This function has no parameters.
|
`string` **`path`**
|
||||||
|
|
||||||
|
|
||||||
|
#### Example
|
||||||
|
```lua
|
||||||
|
local inspect = require 'inspect'
|
||||||
|
|
||||||
|
local stat = fs.stat '~'
|
||||||
|
print(inspect(stat))
|
||||||
|
--[[
|
||||||
|
Would print the following:
|
||||||
|
{
|
||||||
|
isDir = true,
|
||||||
|
mode = "0755",
|
||||||
|
name = "username",
|
||||||
|
size = 12288
|
||||||
|
}
|
||||||
|
]]--
|
||||||
|
````
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
|
@ -2,56 +2,51 @@
|
||||||
|
|
||||||
local fs = {}
|
local fs = {}
|
||||||
|
|
||||||
--- Gives an absolute version of `path`.
|
--- Returns an absolute version of the `path`.
|
||||||
--- @param path string
|
--- This can be used to resolve short paths like `..` to `/home/user`.
|
||||||
--- @returns string
|
|
||||||
function fs.abs(path) end
|
function fs.abs(path) end
|
||||||
|
|
||||||
--- Gives the basename of `path`. For the rules,
|
--- Returns the "basename," or the last part of the provided `path`. If path is empty,
|
||||||
--- see Go's filepath.Base
|
--- `.` will be returned.
|
||||||
--- @returns string
|
|
||||||
function fs.basename(path) end
|
function fs.basename(path) end
|
||||||
|
|
||||||
--- Changes directory to `dir`
|
--- Changes Hilbish's directory to `dir`.
|
||||||
--- @param dir string
|
|
||||||
function fs.cd(dir) end
|
function fs.cd(dir) end
|
||||||
|
|
||||||
--- Returns the directory part of `path`. For the rules, see Go's
|
--- Returns the directory part of `path`. If a file path like
|
||||||
--- filepath.Dir
|
--- `~/Documents/doc.txt` then this function will return `~/Documents`.
|
||||||
--- @param path string
|
|
||||||
--- @returns string
|
|
||||||
function fs.dir(path) end
|
function fs.dir(path) end
|
||||||
|
|
||||||
--- Glob all files and directories that match the pattern.
|
--- Match all files based on the provided `pattern`.
|
||||||
--- For the rules, see Go's filepath.Glob
|
--- For the syntax' refer to Go's filepath.Match function: https://pkg.go.dev/path/filepath#Match
|
||||||
--- @param pattern string
|
---
|
||||||
--- @returns table
|
---
|
||||||
function fs.glob(pattern) end
|
function fs.glob(pattern) end
|
||||||
|
|
||||||
--- Takes paths and joins them together with the OS's
|
--- Takes any list of paths and joins them based on the operating system's path separator.
|
||||||
--- directory separator (forward or backward slash).
|
---
|
||||||
--- @vararg string
|
---
|
||||||
--- @returns string
|
function fs.join(...path) end
|
||||||
function fs.join(...) end
|
|
||||||
|
|
||||||
--- Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
|
--- Creates a new directory with the provided `name`.
|
||||||
--- @param name string
|
--- With `recursive`, mkdir will create parent directories.
|
||||||
--- @param recursive boolean
|
---
|
||||||
|
--- -- This will create the directory foo, then create the directory bar in the
|
||||||
|
--- -- foo directory. If recursive is false in this case, it will fail.
|
||||||
|
--- fs.mkdir('./foo/bar', true)
|
||||||
function fs.mkdir(name, recursive) end
|
function fs.mkdir(name, recursive) end
|
||||||
|
|
||||||
--- Returns a table of files in `dir`.
|
--- Returns a list of all files and directories in the provided path.
|
||||||
--- @param dir string
|
function fs.readdir(path) end
|
||||||
--- @return table
|
|
||||||
function fs.readdir(dir) end
|
|
||||||
|
|
||||||
--- Returns a table of info about the `path`.
|
--- Returns the information about a given `path`.
|
||||||
--- It contains the following keys:
|
--- The returned table contains the following values:
|
||||||
--- name (string) - Name of the path
|
--- name (string) - Name of the path
|
||||||
--- size (number) - Size of the path
|
--- size (number) - Size of the path in bytes
|
||||||
--- mode (string) - Permission mode in an octal format string (with leading 0)
|
--- mode (string) - Unix permission mode in an octal format string (with leading 0)
|
||||||
--- isDir (boolean) - If the path is a directory
|
--- isDir (boolean) - If the path is a directory
|
||||||
--- @param path string
|
---
|
||||||
--- @returns table
|
---
|
||||||
function fs.stat(path) end
|
function fs.stat(path) end
|
||||||
|
|
||||||
return fs
|
return fs
|
||||||
|
|
328
golibs/fs/fs.go
328
golibs/fs/fs.go
|
@ -1,7 +1,10 @@
|
||||||
// filesystem interaction and functionality library
|
// filesystem interaction and functionality library
|
||||||
// The fs module provides easy and simple access to filesystem functions
|
/*
|
||||||
// and other things, and acts an addition to the Lua standard library's
|
The fs module provides filesystem functions to Hilbish. While Lua's standard
|
||||||
// I/O and filesystem functions.
|
library has some I/O functions, they're missing a lot of the basics. The `fs`
|
||||||
|
library offers more functions and will work on any operating system Hilbish does.
|
||||||
|
#field pathSep The operating system's path separator.
|
||||||
|
*/
|
||||||
package fs
|
package fs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
@ -42,9 +45,46 @@ func loaderFunc(rtm *rt.Runtime) (rt.Value, func()) {
|
||||||
return rt.TableValue(mod), nil
|
return rt.TableValue(mod), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// abs(path) -> string
|
||||||
|
// Returns an absolute version of the `path`.
|
||||||
|
// This can be used to resolve short paths like `..` to `/home/user`.
|
||||||
|
// #param path string
|
||||||
|
// #returns string
|
||||||
|
func fabs(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
|
path, err := c.StringArg(0)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
path = util.ExpandHome(path)
|
||||||
|
|
||||||
|
abspath, err := filepath.Abs(path)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.PushingNext1(t.Runtime, rt.StringValue(abspath)), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// basename(path) -> string
|
||||||
|
// Returns the "basename," or the last part of the provided `path`. If path is empty,
|
||||||
|
// `.` will be returned.
|
||||||
|
// #param path string Path to get the base name of.
|
||||||
|
// #returns string
|
||||||
|
func fbasename(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
|
if err := c.Check1Arg(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
path, err := c.StringArg(0)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.PushingNext(t.Runtime, rt.StringValue(filepath.Base(path))), nil
|
||||||
|
}
|
||||||
|
|
||||||
// cd(dir)
|
// cd(dir)
|
||||||
// Changes directory to `dir`
|
// Changes Hilbish's directory to `dir`.
|
||||||
// --- @param dir string
|
// #param dir string Path to change directory to.
|
||||||
func fcd(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
func fcd(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
if err := c.Check1Arg(); err != nil {
|
if err := c.Check1Arg(); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -63,10 +103,102 @@ func fcd(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
return c.Next(), err
|
return c.Next(), err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// dir(path) -> string
|
||||||
|
// Returns the directory part of `path`. If a file path like
|
||||||
|
// `~/Documents/doc.txt` then this function will return `~/Documents`.
|
||||||
|
// #param path string Path to get the directory for.
|
||||||
|
// #returns string
|
||||||
|
func fdir(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
|
if err := c.Check1Arg(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
path, err := c.StringArg(0)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.PushingNext(t.Runtime, rt.StringValue(filepath.Dir(path))), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// glob(pattern) -> matches (table)
|
||||||
|
// Match all files based on the provided `pattern`.
|
||||||
|
// For the syntax' refer to Go's filepath.Match function: https://pkg.go.dev/path/filepath#Match
|
||||||
|
// #param pattern string Pattern to compare files with.
|
||||||
|
// #returns table A list of file names/paths that match.
|
||||||
|
/*
|
||||||
|
#example
|
||||||
|
--[[
|
||||||
|
Within a folder that contains the following files:
|
||||||
|
a.txt
|
||||||
|
init.lua
|
||||||
|
code.lua
|
||||||
|
doc.pdf
|
||||||
|
]]--
|
||||||
|
local matches = fs.glob './*.lua'
|
||||||
|
print(matches)
|
||||||
|
-- -> {'init.lua', 'code.lua'}
|
||||||
|
#example
|
||||||
|
*/
|
||||||
|
func fglob(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
|
if err := c.Check1Arg(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
pattern, err := c.StringArg(0)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
matches, err := filepath.Glob(pattern)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
luaMatches := rt.NewTable()
|
||||||
|
|
||||||
|
for i, match := range matches {
|
||||||
|
luaMatches.Set(rt.IntValue(int64(i + 1)), rt.StringValue(match))
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.PushingNext(t.Runtime, rt.TableValue(luaMatches)), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// join(...path) -> string
|
||||||
|
// Takes any list of paths and joins them based on the operating system's path separator.
|
||||||
|
// #param path ...string Paths to join together
|
||||||
|
// #returns string The joined path.
|
||||||
|
/*
|
||||||
|
#example
|
||||||
|
-- This prints the directory for Hilbish's config!
|
||||||
|
print(fs.join(hilbish.userDir.config, 'hilbish'))
|
||||||
|
-- -> '/home/user/.config/hilbish' on Linux
|
||||||
|
#example
|
||||||
|
*/
|
||||||
|
func fjoin(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
|
strs := make([]string, len(c.Etc()))
|
||||||
|
for i, v := range c.Etc() {
|
||||||
|
if v.Type() != rt.StringType {
|
||||||
|
// +2; go indexes of 0 and first arg from above
|
||||||
|
return nil, fmt.Errorf("bad argument #%d to run (expected string, got %s)", i + 1, v.TypeName())
|
||||||
|
}
|
||||||
|
strs[i] = v.AsString()
|
||||||
|
}
|
||||||
|
|
||||||
|
res := filepath.Join(strs...)
|
||||||
|
|
||||||
|
return c.PushingNext(t.Runtime, rt.StringValue(res)), nil
|
||||||
|
}
|
||||||
|
|
||||||
// mkdir(name, recursive)
|
// mkdir(name, recursive)
|
||||||
// Makes a directory called `name`. If `recursive` is true, it will create its parent directories.
|
// Creates a new directory with the provided `name`.
|
||||||
// --- @param name string
|
// With `recursive`, mkdir will create parent directories.
|
||||||
// --- @param recursive boolean
|
// #param name string Name of the directory
|
||||||
|
// #param recursive boolean Whether to create parent directories for the provided name
|
||||||
|
/*
|
||||||
|
#example
|
||||||
|
-- This will create the directory foo, then create the directory bar in the
|
||||||
|
-- foo directory. If recursive is false in this case, it will fail.
|
||||||
|
fs.mkdir('./foo/bar', true)
|
||||||
|
*/
|
||||||
func fmkdir(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
func fmkdir(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
if err := c.CheckNArgs(2); err != nil {
|
if err := c.CheckNArgs(2); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -93,15 +225,58 @@ func fmkdir(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
return c.Next(), err
|
return c.Next(), err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// readdir(path) -> table[string]
|
||||||
|
// Returns a list of all files and directories in the provided path.
|
||||||
|
// #param dir string
|
||||||
|
// #returns table
|
||||||
|
func freaddir(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
|
if err := c.Check1Arg(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
dir, err := c.StringArg(0)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
dir = util.ExpandHome(dir)
|
||||||
|
names := rt.NewTable()
|
||||||
|
|
||||||
|
dirEntries, err := os.ReadDir(dir)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
for i, entry := range dirEntries {
|
||||||
|
names.Set(rt.IntValue(int64(i + 1)), rt.StringValue(entry.Name()))
|
||||||
|
}
|
||||||
|
|
||||||
|
return c.PushingNext1(t.Runtime, rt.TableValue(names)), nil
|
||||||
|
}
|
||||||
|
|
||||||
// stat(path) -> {}
|
// stat(path) -> {}
|
||||||
// Returns a table of info about the `path`.
|
// Returns the information about a given `path`.
|
||||||
// It contains the following keys:
|
// The returned table contains the following values:
|
||||||
// name (string) - Name of the path
|
// name (string) - Name of the path
|
||||||
// size (number) - Size of the path
|
// size (number) - Size of the path in bytes
|
||||||
// mode (string) - Permission mode in an octal format string (with leading 0)
|
// mode (string) - Unix permission mode in an octal format string (with leading 0)
|
||||||
// isDir (boolean) - If the path is a directory
|
// isDir (boolean) - If the path is a directory
|
||||||
// --- @param path string
|
// #param path string
|
||||||
// --- @returns table
|
// #returns table
|
||||||
|
/*
|
||||||
|
#example
|
||||||
|
local inspect = require 'inspect'
|
||||||
|
|
||||||
|
local stat = fs.stat '~'
|
||||||
|
print(inspect(stat))
|
||||||
|
--[[
|
||||||
|
Would print the following:
|
||||||
|
{
|
||||||
|
isDir = true,
|
||||||
|
mode = "0755",
|
||||||
|
name = "username",
|
||||||
|
size = 12288
|
||||||
|
}
|
||||||
|
]]--
|
||||||
|
#example
|
||||||
|
*/
|
||||||
func fstat(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
func fstat(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
if err := c.Check1Arg(); err != nil {
|
if err := c.Check1Arg(); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -125,128 +300,3 @@ func fstat(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
||||||
return c.PushingNext1(t.Runtime, rt.TableValue(statTbl)), nil
|
return c.PushingNext1(t.Runtime, rt.TableValue(statTbl)), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// readdir(dir) -> {}
|
|
||||||
// Returns a table of files in `dir`.
|
|
||||||
// --- @param dir string
|
|
||||||
// --- @return table
|
|
||||||
func freaddir(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
||||||
if err := c.Check1Arg(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
dir, err := c.StringArg(0)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
dir = util.ExpandHome(dir)
|
|
||||||
names := rt.NewTable()
|
|
||||||
|
|
||||||
dirEntries, err := os.ReadDir(dir)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
for i, entry := range dirEntries {
|
|
||||||
names.Set(rt.IntValue(int64(i + 1)), rt.StringValue(entry.Name()))
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PushingNext1(t.Runtime, rt.TableValue(names)), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// abs(path) -> string
|
|
||||||
// Gives an absolute version of `path`.
|
|
||||||
// --- @param path string
|
|
||||||
// --- @returns string
|
|
||||||
func fabs(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
||||||
path, err := c.StringArg(0)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
path = util.ExpandHome(path)
|
|
||||||
|
|
||||||
abspath, err := filepath.Abs(path)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PushingNext1(t.Runtime, rt.StringValue(abspath)), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// basename(path) -> string
|
|
||||||
// Gives the basename of `path`. For the rules,
|
|
||||||
// see Go's filepath.Base
|
|
||||||
// --- @returns string
|
|
||||||
func fbasename(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
||||||
if err := c.Check1Arg(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
path, err := c.StringArg(0)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PushingNext(t.Runtime, rt.StringValue(filepath.Base(path))), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// dir(path) -> string
|
|
||||||
// Returns the directory part of `path`. For the rules, see Go's
|
|
||||||
// filepath.Dir
|
|
||||||
// --- @param path string
|
|
||||||
// --- @returns string
|
|
||||||
func fdir(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
||||||
if err := c.Check1Arg(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
path, err := c.StringArg(0)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PushingNext(t.Runtime, rt.StringValue(filepath.Dir(path))), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// glob(pattern) -> matches (table)
|
|
||||||
// Glob all files and directories that match the pattern.
|
|
||||||
// For the rules, see Go's filepath.Glob
|
|
||||||
// --- @param pattern string
|
|
||||||
// --- @returns table
|
|
||||||
func fglob(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
||||||
if err := c.Check1Arg(); err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
pattern, err := c.StringArg(0)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
matches, err := filepath.Glob(pattern)
|
|
||||||
if err != nil {
|
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
|
|
||||||
luaMatches := rt.NewTable()
|
|
||||||
|
|
||||||
for i, match := range matches {
|
|
||||||
luaMatches.Set(rt.IntValue(int64(i + 1)), rt.StringValue(match))
|
|
||||||
}
|
|
||||||
|
|
||||||
return c.PushingNext(t.Runtime, rt.TableValue(luaMatches)), nil
|
|
||||||
}
|
|
||||||
|
|
||||||
// join(...) -> string
|
|
||||||
// Takes paths and joins them together with the OS's
|
|
||||||
// directory separator (forward or backward slash).
|
|
||||||
// --- @vararg string
|
|
||||||
// --- @returns string
|
|
||||||
func fjoin(t *rt.Thread, c *rt.GoCont) (rt.Cont, error) {
|
|
||||||
strs := make([]string, len(c.Etc()))
|
|
||||||
for i, v := range c.Etc() {
|
|
||||||
if v.Type() != rt.StringType {
|
|
||||||
// +2; go indexes of 0 and first arg from above
|
|
||||||
return nil, fmt.Errorf("bad argument #%d to run (expected string, got %s)", i + 1, v.TypeName())
|
|
||||||
}
|
|
||||||
strs[i] = v.AsString()
|
|
||||||
}
|
|
||||||
|
|
||||||
res := filepath.Join(strs...)
|
|
||||||
|
|
||||||
return c.PushingNext(t.Runtime, rt.StringValue(res)), nil
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
baseURL = 'https://rosettea.github.io/Hilbish/'
|
|
||||||
languageCode = 'en-us'
|
languageCode = 'en-us'
|
||||||
|
baseURL = 'https://rosettea.github.io/Hilbish/'
|
||||||
title = 'Hilbish'
|
title = 'Hilbish'
|
||||||
theme = 'hsh'
|
theme = 'hsh'
|
||||||
enableGitInfo = true
|
enableGitInfo = true
|
||||||
|
@ -34,6 +34,7 @@ lineNos = true
|
||||||
lineNumbersInTable = false
|
lineNumbersInTable = false
|
||||||
noClasses = false
|
noClasses = false
|
||||||
codeFences = true
|
codeFences = true
|
||||||
|
guessSyntax = true
|
||||||
|
|
||||||
[author]
|
[author]
|
||||||
[author.sammyette]
|
[author.sammyette]
|
||||||
|
|
Loading…
Reference in New Issue