nomsu/lib/os.nom

70 lines
2.1 KiB
Plaintext
Raw Normal View History

2018-09-14 19:17:09 -07:00
#!/usr/bin/env nomsu -V4.8.8.6
#
This file defines some actions that interact with the operating system and filesystem.
test:
path of Nomsu file "lib/os.nom"
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-09-14 19:17:09 -07:00
lua> "\
..local result = io.popen(\%cmd)
2018-06-14 22:17:26 -07:00
local contents = result:read("*a")
result:close()
2018-09-14 19:17:09 -07:00
return contents"
2018-06-14 22:17:26 -07:00
test:
read file "lib/os.nom"
action [read file %filename] (=lua "Files.read(\%filename)")
test:
for file %f in "core": do nothing
2018-07-17 23:37:20 -07:00
compile [for file %f in %path %body] to (..)
2018-09-14 19:17:09 -07:00
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-09-14 19:17:09 -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 (..)
2018-09-14 19:17:09 -07:00
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
2018-09-14 19:17:09 -07:00
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
..:
assume (%filename != "stdin") or barf "Cannot write to stdin"
2018-09-14 19:17:09 -07:00
lua> "\
..local file = io.open(\%filename, 'w')
file:write(\%text)
2018-09-14 19:17:09 -07:00
file:close()"
2018-06-14 22:17:26 -07:00
test:
2018-09-14 19:17:09 -07:00
assume (line number of 3 in "x\ny") == 2
action [line number of %pos in %str] (=lua "Files.get_line_number(\%str, \%pos)")
test:
2018-09-14 19:17:09 -07:00
assume (line 2 in "one\ntwo\nthree") == "two"
action [line %line_num in %str] (=lua "Files.get_line(\%str, \%line_num)")
test:
assume (source lines of \(this))
action [source lines of %tree]:
%source = (%tree.source if (%tree is syntax tree) else %tree)
%file = (read file %source.filename)
return (..)
(..)
(line % in %file) for % in (line number of %source.start in %file) to (..)
line number of %source.stop in %file
..::joined with "\n"