nomsu/lib/os.nom
Bruce Hill be06fc096a Major changes to how versioning and parsing work. This should be a
better path going forward to handling upgrades. Old syntax files will
stick around for compatibility purposes. Old syntax can be parsed into
valid syntax trees via the old syntax (.peg) files, and then old syntax
trees should be valid and can be upgraded via the normal code path. This
change has lots of improvements to Nomsu codegen too.
2018-07-15 19:43:28 -07:00

51 lines
1.4 KiB
Plaintext

#!/usr/bin/env nomsu -V1
#
This file defines some actions that interact with the operating system and filesystem.
use "core"
action [path of Nomsu file %filename]
lua> ".."
for f in files.walk(\%filename) do return f end
barf "Could not find file: \%filename"
action [sh> %cmd]
lua> ".."
local result = io.popen(\%cmd)
local contents = result:read("*a")
result:close()
return contents
action [read file %filename]
=lua "files.read(\%filename)"
compile [for file %f in %path %body] to
Lua ".."
for \(%f as lua expr) in files.walk(\(%path as lua expr)) do
\(%body as lua statements)
\(compile as: === next %f ===)
end
\(compile as: === stop %f ===)
compile [%expr for file %f in %path] to
Lua value ".."
(function()
local ret = list{}
for \(%f as lua expr) in files.walk(\(%path as lua expr)) do
ret[#ret+1] = \(%expr as lua statements)
end
return ret
end)()
action [write to file %filename %text, to file %filename write %text]
lua> ".."
local file = io.open(\%filename, 'w')
file:write(\%text)
file:close()
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)"