nomsu/lib/os.nom

48 lines
1.4 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V2.5.4.3
#
This file defines some actions that interact with the operating system and filesystem.
2018-06-14 22:17:26 -07:00
use "core"
2018-07-17 23:37:20 -07:00
action [path of Nomsu file %filename]:
lua> "for i,f in Files.walk(\%filename) do return f end"
barf "Could not find file: \%filename"
2018-07-17 23:37:20 -07:00
action [sh> %cmd]:
2018-06-14 22:17:26 -07:00
lua> ".."
local result = io.popen(\%cmd)
local contents = result:read("*a")
result:close()
return contents
action [read file %filename] (=lua "Files.read(\%filename)")
2018-07-17 23:37:20 -07:00
compile [for file %f in %path %body] to (..)
Lua ".."
for i,\(%f as lua expr) in Files.walk(\(%path as lua expr)) do
\(%body as lua statements)
2018-07-17 23:37:20 -07:00
\(compile as (===next %f ===))
end
2018-07-17 23:37:20 -07:00
\(compile as (===stop %f ===))
2018-06-14 22:17:26 -07:00
2018-07-17 23:37:20 -07:00
compile [%expr for file %f in %path] to (..)
Lua value ".."
(function()
local ret = list{}
for i,\(%f as lua expr) in Files.walk(\(%path as lua expr)) do
ret[#ret+1] = \(%expr as lua statements)
end
return ret
end)()
2018-07-17 23:37:20 -07:00
action [..]
write to file %filename %text, to file %filename write %text
write %text to file %filename
..:
lua> ".."
local file = io.open(\%filename, 'w')
file:write(\%text)
file:close()
2018-06-14 22:17:26 -07:00
action [line number of %pos in %str] (=lua "Files.get_line_number(\%str, \%pos)")
action [line %line_num in %str] (=lua "Files.get_line(\%str, \%line_num)")