2018-12-31 00:20:07 -08:00
|
|
|
#!/usr/bin/env nomsu -V6.13.12.8
|
2018-07-15 19:41:22 -07:00
|
|
|
#
|
|
|
|
This file defines some actions that interact with the operating system and filesystem.
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-22 16:30:49 -07:00
|
|
|
test:
|
2018-11-19 17:21:08 -08:00
|
|
|
assume (nomsu files for "core")
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (files for $path) means:
|
|
|
|
$files = (=lua "Files.list(\$path)")
|
|
|
|
if $files:
|
|
|
|
$files = (List $files)
|
|
|
|
return $files
|
2018-11-19 17:21:08 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (nomsu files for $path) means:
|
2018-12-30 19:04:34 -08:00
|
|
|
for $nomsupath in ($package.nomsupath, all matches of "[^;]+"):
|
2018-12-14 20:21:03 -08:00
|
|
|
$files = (files for "\($nomsupath)/\$path")
|
|
|
|
if $files:
|
|
|
|
return $files
|
2018-06-23 17:22:23 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (sh> $cmd) means:
|
2018-12-30 19:04:34 -08:00
|
|
|
lua> ("
|
2018-12-14 20:21:03 -08:00
|
|
|
local result = io.popen(\$cmd)
|
2018-06-14 22:17:26 -07:00
|
|
|
local contents = result:read("*a")
|
|
|
|
result:close()
|
2018-12-30 19:04:34 -08: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-07-30 15:05:41 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (read file $filename) means (=lua "Files.read(\$filename)")
|
2018-12-30 19:04:34 -08:00
|
|
|
externally [
|
2018-12-14 20:21:03 -08:00
|
|
|
write to file $filename $text, to file $filename write $text
|
|
|
|
write $text to file $filename
|
2018-12-30 19:04:34 -08:00
|
|
|
] all mean:
|
2018-12-14 20:21:03 -08:00
|
|
|
assume ($filename != "stdin") or barf "Cannot write to stdin"
|
2018-12-30 19:04:34 -08:00
|
|
|
lua> ("
|
|
|
|
local file = io.open(\$filename, 'w')
|
|
|
|
file:write(\$text)
|
|
|
|
file:close()
|
|
|
|
")
|
2018-06-14 22:17:26 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (source lines of $tree) means:
|
|
|
|
$source = ($tree.source if ($tree is syntax tree) else $tree)
|
|
|
|
$file = (read file $source.filename)
|
2018-12-30 19:04:34 -08:00
|
|
|
return
|
|
|
|
[
|
2018-11-11 15:50:46 -08:00
|
|
|
:
|
2018-12-30 19:04:34 -08:00
|
|
|
for $ in ($file, line number at $source.start) to
|
|
|
|
$file, line number at $source.stop
|
|
|
|
..: add ($file, line $)
|
|
|
|
], joined with "\n"
|
2018-11-08 15:23:22 -08:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
externally (spoof file $text) means ($Files.spoof $text)
|
|
|
|
externally (spoof file $filename = $text) means ($Files.spoof $filename $text)
|