nomsu/nomnom/files.nom

111 lines
4.4 KiB
Plaintext
Raw Normal View History

2018-10-31 15:05:17 -07:00
#!/usr/bin/env nomsu -V4.8.10
# Some file utilities for searching for files recursively and using package.nomsupath
use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%_SPOOFED_FILES = {}
%_FILE_CACHE = ({} with fallback % -> %_SPOOFED_FILES.%)
%_BROWSE_CACHE = {}
# Create a fake file and put it in the cache
2018-10-31 15:05:17 -07:00
externally (spoof file %filename %contents) means:
%_SPOOFED_FILES.%filename = %contents
return %contents
# Read a file's contents
2018-10-31 15:05:17 -07:00
externally (read file %filename) means:
%contents = %_FILE_CACHE.%filename
if %contents: return %contents
if (%filename == "stdin"):
return (spoof file "stdin" (=lua "io.read('*a')"))
%file = (=lua "io.open(\%filename)")
unless %file: return (nil)
%contents = (call %file.read with [%file, "*a"])
%file::close
%_FILE_CACHE.%filename = %contents
return %contents
2018-10-31 15:05:17 -07:00
externally (%path sanitized) means:
%path = (%path::with "\\" -> "\\\\")
%path = (%path::with "`" -> "")
%path = (%path::with "\"" -> "\\\"")
%path = (%path::with "$" -> "")
%path = (%path::with "%.%." -> "\\..")
return %path
try:
%lfs = (=lua "require('lfs')")
..and if it succeeds:
2018-10-31 15:05:17 -07:00
(filesystem has %filename) means:
%mode = (call %lfs.attributes with [%filename, "mode"])
if %mode is:
2018-10-31 15:05:17 -07:00
"file" "directory" "link" "char device": return (yes)
else: return (no)
2018-10-31 15:05:17 -07:00
externally (file %path exists) means:
if (any of [%_SPOOFED_FILES.%path, %path == "stdin", filesystem has %path]):
return (yes)
for %nomsupath in (%package.nomsupath::all matches of "[^;]+"):
2018-10-31 15:05:17 -07:00
if (filesystem has "\(%nomsupath)/\%path"): return (yes)
return (no)
2018-10-31 15:05:17 -07:00
externally (files in %path) means:
unless %_BROWSE_CACHE.%path:
if (%_SPOOFED_FILES.%path or (%filename == "stdin")):
%_BROWSE_CACHE.%path = [%path]
..else:
if (call %lfs.attributes with [%filename, "mode"]) is:
2018-10-31 15:05:17 -07:00
"file" "char device":
%_BROWSE_CACHE.%path = [%filename]
2018-10-31 15:05:17 -07:00
"directory" "link":
for %nomsupath in (%package.nomsupath::all matches of "[^;]+"):
%files = []
2018-10-31 15:05:17 -07:00
for %member in (call %lfs.dir with ["\(%nomsupath)/\%filename"]):
if ((%member == ".") or (%member == "..")): do next %member
for % in (files in %member): %files::add %
2018-10-31 15:05:17 -07:00
if ((size of %files) > 0):
%_BROWSE_CACHE.%path = %files
go to (Found Files)
2018-10-31 15:05:17 -07:00
%_BROWSE_CACHE.%path = []
2018-10-31 15:05:17 -07:00
else:
%_BROWSE_CACHE.%path = []
2018-10-31 15:05:17 -07:00
=== (Found Files) ===
return %_BROWSE_CACHE.%filename
..or if it barfs:
# LFS not found! Fall back to shell commands, if available.
unless (sh> "find . -maxdepth 0"):
barf "\
2018-10-31 15:05:17 -07:00
..Could not find 'luafilesystem' module and couldn't run system command 'find' (this might happen on Windows). Please install \
..'luafilesystem' (which can be found at \(..)
"https://github.com/spacewander/luafilesystem" if %jit else "\
..https://github.com/keplerproject/luafilesystem"
.. or obtained through `luarocks install luafilesystem`)"
2018-10-31 15:05:17 -07:00
externally (file %path exists) means:
if (any of [%_SPOOFED_FILES.%path, %path == "stdin", sh> "ls \(%path sanitized)"]) \
..: return (yes)
for %nomsupath in (%package.nomsupath::all matches of "[^;]+"):
2018-10-31 15:05:17 -07:00
if (sh> "ls \(%nomsupath)/\%path"): return (yes)
return (no)
2018-10-31 15:05:17 -07:00
externally (files in %path) means:
unless %_BROWSE_CACHE.%path:
if %_SPOOFED_FILES.%path:
%_BROWSE_CACHE.%path = [%_SPOOFED_FILES.%path]
..else:
for %nomsupath in (%package.nomsupath::all matches of "[^;]+"):
2018-10-31 15:05:17 -07:00
%files = (sh> "find -L '\(%path)' -not -path '*/\\.*' -type f'")
if %files:
%_BROWSE_CACHE.%path = (%files::lines)
go to (Found Files)
2018-10-31 15:05:17 -07:00
%_BROWSE_CACHE.%path = []
2018-10-31 15:05:17 -07:00
=== (Found Files) ===
return %_BROWSE_CACHE.%path