2018-10-30 23:42:04 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
2018-07-15 19:41:22 -07:00
|
|
|
#
|
|
|
|
This file defines some actions that interact with the operating system and filesystem.
|
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
path of Nomsu file "lib/os.nom"
|
2018-10-30 23:42:04 -07:00
|
|
|
externally (path of Nomsu file %filename) means:
|
2018-07-21 14:43:49 -07:00
|
|
|
lua> "for i,f in Files.walk(\%filename) do return f end"
|
2018-06-23 17:22:23 -07:00
|
|
|
barf "Could not find file: \%filename"
|
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
externally (sh> %cmd) means:
|
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
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
read file "lib/os.nom"
|
2018-10-30 23:42:04 -07:00
|
|
|
externally (read file %filename) means (=lua "Files.read(\%filename)")
|
2018-07-30 15:05:41 -07:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
|
|
|
for file %f in "core": do nothing
|
2018-10-30 23:42:04 -07:00
|
|
|
(for file %f in %path %body) compiles to (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua "\
|
|
|
|
..for i,\(%f as lua expr) in Files.walk(\(%path as lua expr)) do
|
2018-06-23 17:22:23 -07:00
|
|
|
\(%body as lua statements)
|
2018-10-30 23:42:04 -07:00
|
|
|
\(what (===next %f ===) compiles to)
|
2018-06-23 17:22:23 -07:00
|
|
|
end
|
2018-10-30 23:42:04 -07:00
|
|
|
\(what (===stop %f ===) compiles to)"
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
(%expr for file %f in %path) compiles to (..)
|
2018-09-14 19:17:09 -07:00
|
|
|
Lua value "\
|
|
|
|
..(function()
|
2018-11-06 15:13:55 -08:00
|
|
|
local ret = List{}
|
2018-07-21 14:43:49 -07:00
|
|
|
for i,\(%f as lua expr) in Files.walk(\(%path as lua expr)) do
|
2018-07-09 17:13:40 -07:00
|
|
|
ret[#ret+1] = \(%expr as lua statements)
|
|
|
|
end
|
|
|
|
return ret
|
2018-09-14 19:17:09 -07:00
|
|
|
end)()"
|
2018-07-09 17:13:40 -07:00
|
|
|
|
2018-10-30 23:42:04 -07:00
|
|
|
externally [..]
|
2018-07-17 23:37:20 -07:00
|
|
|
write to file %filename %text, to file %filename write %text
|
|
|
|
write %text to file %filename
|
2018-10-30 23:42:04 -07:00
|
|
|
..all mean:
|
2018-08-27 13:38:58 -07:00
|
|
|
assume (%filename != "stdin") or barf "Cannot write to stdin"
|
2018-09-14 19:17:09 -07:00
|
|
|
lua> "\
|
|
|
|
..local file = io.open(\%filename, 'w')
|
2018-07-20 20:27:15 -07:00
|
|
|
file:write(\%text)
|
2018-09-14 19:17:09 -07:00
|
|
|
file:close()"
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
2018-09-14 19:17:09 -07:00
|
|
|
assume (line number of 3 in "x\ny") == 2
|
2018-10-30 23:42:04 -07:00
|
|
|
externally (line number of %pos in %str) means (..)
|
|
|
|
=lua "Files.get_line_number(\%str, \%pos)"
|
2018-07-30 15:05:41 -07:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
2018-09-14 19:17:09 -07:00
|
|
|
assume (line 2 in "one\ntwo\nthree") == "two"
|
2018-10-30 23:42:04 -07:00
|
|
|
externally (line %line_num in %str) means (..)
|
|
|
|
=lua "Files.get_line(\%str, \%line_num)"
|
2018-07-22 16:30:49 -07:00
|
|
|
|
|
|
|
test:
|
|
|
|
assume (source lines of \(this))
|
2018-10-30 23:42:04 -07:00
|
|
|
externally (source lines of %tree) means:
|
2018-07-22 13:59:08 -07:00
|
|
|
%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
|
2018-09-10 16:26:08 -07:00
|
|
|
..::joined with "\n"
|