Fixed stdin handling.
This commit is contained in:
parent
f7a9d1fc6b
commit
d7e297844c
12
files.lua
12
files.lua
@ -26,6 +26,7 @@ local _FILE_CACHE = setmetatable({ }, {
|
|||||||
})
|
})
|
||||||
local _BROWSE_CACHE = { }
|
local _BROWSE_CACHE = { }
|
||||||
Files.spoof = function(filename, contents)
|
Files.spoof = function(filename, contents)
|
||||||
|
print("SPOOFING " .. tostring(filename))
|
||||||
_SPOOFED_FILES[filename] = contents
|
_SPOOFED_FILES[filename] = contents
|
||||||
return contents
|
return contents
|
||||||
end
|
end
|
||||||
@ -65,6 +66,9 @@ Files.exists = function(path)
|
|||||||
if _SPOOFED_FILES[path] then
|
if _SPOOFED_FILES[path] then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
if path == 'stdin' then
|
||||||
|
return true
|
||||||
|
end
|
||||||
if run_cmd("ls " .. tostring(sanitize(path))) then
|
if run_cmd("ls " .. tostring(sanitize(path))) then
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
@ -116,7 +120,7 @@ if ok then
|
|||||||
end
|
end
|
||||||
browse = function(filename)
|
browse = function(filename)
|
||||||
if not (_BROWSE_CACHE[filename]) then
|
if not (_BROWSE_CACHE[filename]) then
|
||||||
if _SPOOFED_FILES[filename] then
|
if _SPOOFED_FILES[filename] or filename == 'stdin' then
|
||||||
_BROWSE_CACHE[filename] = {
|
_BROWSE_CACHE[filename] = {
|
||||||
filename
|
filename
|
||||||
}
|
}
|
||||||
@ -174,6 +178,11 @@ Files.walk = function(path, flush_cache)
|
|||||||
_BROWSE_CACHE = { }
|
_BROWSE_CACHE = { }
|
||||||
end
|
end
|
||||||
local files
|
local files
|
||||||
|
if path == 'stdin' then
|
||||||
|
files = {
|
||||||
|
path
|
||||||
|
}
|
||||||
|
else
|
||||||
for nomsupath in package.nomsupath:gmatch("[^;]+") do
|
for nomsupath in package.nomsupath:gmatch("[^;]+") do
|
||||||
do
|
do
|
||||||
files = browse(nomsupath .. "/" .. path)
|
files = browse(nomsupath .. "/" .. path)
|
||||||
@ -182,6 +191,7 @@ Files.walk = function(path, flush_cache)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
end
|
||||||
local iter
|
local iter
|
||||||
iter = function(files, i)
|
iter = function(files, i)
|
||||||
if not (files) then
|
if not (files) then
|
||||||
|
@ -17,6 +17,7 @@ _BROWSE_CACHE = {}
|
|||||||
|
|
||||||
-- Create a fake file and put it in the cache
|
-- Create a fake file and put it in the cache
|
||||||
Files.spoof = (filename, contents)->
|
Files.spoof = (filename, contents)->
|
||||||
|
print("SPOOFING #{filename}")
|
||||||
_SPOOFED_FILES[filename] = contents
|
_SPOOFED_FILES[filename] = contents
|
||||||
return contents
|
return contents
|
||||||
|
|
||||||
@ -46,6 +47,7 @@ sanitize = (path)->
|
|||||||
|
|
||||||
Files.exists = (path)->
|
Files.exists = (path)->
|
||||||
return true if _SPOOFED_FILES[path]
|
return true if _SPOOFED_FILES[path]
|
||||||
|
return true if path == 'stdin'
|
||||||
return true if run_cmd("ls #{sanitize(path)}")
|
return true if run_cmd("ls #{sanitize(path)}")
|
||||||
for nomsupath in package.nomsupath\gmatch("[^;]+")
|
for nomsupath in package.nomsupath\gmatch("[^;]+")
|
||||||
return true if run_cmd("ls #{nomsupath}/#{sanitize(path)}")
|
return true if run_cmd("ls #{nomsupath}/#{sanitize(path)}")
|
||||||
@ -74,7 +76,7 @@ if ok
|
|||||||
export browse
|
export browse
|
||||||
browse = (filename)->
|
browse = (filename)->
|
||||||
unless _BROWSE_CACHE[filename]
|
unless _BROWSE_CACHE[filename]
|
||||||
_BROWSE_CACHE[filename] = if _SPOOFED_FILES[filename]
|
_BROWSE_CACHE[filename] = if _SPOOFED_FILES[filename] or filename == 'stdin'
|
||||||
{filename}
|
{filename}
|
||||||
else
|
else
|
||||||
file_type, err = lfs.attributes(filename, 'mode')
|
file_type, err = lfs.attributes(filename, 'mode')
|
||||||
@ -102,6 +104,9 @@ Files.walk = (path, flush_cache=false)->
|
|||||||
export _BROWSE_CACHE
|
export _BROWSE_CACHE
|
||||||
_BROWSE_CACHE = {}
|
_BROWSE_CACHE = {}
|
||||||
local files
|
local files
|
||||||
|
if path == 'stdin'
|
||||||
|
files = {path}
|
||||||
|
else
|
||||||
for nomsupath in package.nomsupath\gmatch("[^;]+")
|
for nomsupath in package.nomsupath\gmatch("[^;]+")
|
||||||
if files = browse(nomsupath.."/"..path) then break
|
if files = browse(nomsupath.."/"..path) then break
|
||||||
iter = (files, i)->
|
iter = (files, i)->
|
||||||
|
18
nomsu.lua
18
nomsu.lua
@ -159,13 +159,25 @@ local run
|
|||||||
run = function()
|
run = function()
|
||||||
local input_files = { }
|
local input_files = { }
|
||||||
for _index_0 = 1, #file_queue do
|
for _index_0 = 1, #file_queue do
|
||||||
|
local _continue_0 = false
|
||||||
|
repeat
|
||||||
local f = file_queue[_index_0]
|
local f = file_queue[_index_0]
|
||||||
|
if f == 'stdin' then
|
||||||
|
input_files[f] = true
|
||||||
|
_continue_0 = true
|
||||||
|
break
|
||||||
|
end
|
||||||
if not (Files.exists(f)) then
|
if not (Files.exists(f)) then
|
||||||
error("Could not find: '" .. tostring(f) .. "'")
|
error("Could not find: '" .. tostring(f) .. "'")
|
||||||
end
|
end
|
||||||
for _, filename in Files.walk(f) do
|
for _, filename in Files.walk(f) do
|
||||||
input_files[filename] = true
|
input_files[filename] = true
|
||||||
end
|
end
|
||||||
|
_continue_0 = true
|
||||||
|
until true
|
||||||
|
if not _continue_0 then
|
||||||
|
break
|
||||||
|
end
|
||||||
end
|
end
|
||||||
nomsu.can_optimize = function(f)
|
nomsu.can_optimize = function(f)
|
||||||
if args.optimization == 0 then
|
if args.optimization == 0 then
|
||||||
@ -186,11 +198,7 @@ run = function()
|
|||||||
local get_file_and_source
|
local get_file_and_source
|
||||||
get_file_and_source = function(filename)
|
get_file_and_source = function(filename)
|
||||||
local file, source
|
local file, source
|
||||||
if filename == 'stdin' then
|
if filename == 'stdin' or filename:match("%.nom$") then
|
||||||
file = io.read("*a")
|
|
||||||
Files.spoof('stdin', file)
|
|
||||||
source = Source('stdin', 1, #file)
|
|
||||||
elseif filename:match("%.nom$") then
|
|
||||||
file = Files.read(filename)
|
file = Files.read(filename)
|
||||||
if not file then
|
if not file then
|
||||||
error("File does not exist: " .. tostring(filename), 0)
|
error("File does not exist: " .. tostring(filename), 0)
|
||||||
|
@ -110,6 +110,9 @@ FILE_CACHE = setmetatable {}, {
|
|||||||
run = ->
|
run = ->
|
||||||
input_files = {}
|
input_files = {}
|
||||||
for f in *file_queue
|
for f in *file_queue
|
||||||
|
if f == 'stdin'
|
||||||
|
input_files[f] = true
|
||||||
|
continue
|
||||||
unless Files.exists(f)
|
unless Files.exists(f)
|
||||||
error("Could not find: '#{f}'")
|
error("Could not find: '#{f}'")
|
||||||
for _,filename in Files.walk(f)
|
for _,filename in Files.walk(f)
|
||||||
@ -127,11 +130,7 @@ run = ->
|
|||||||
|
|
||||||
get_file_and_source = (filename)->
|
get_file_and_source = (filename)->
|
||||||
local file, source
|
local file, source
|
||||||
if filename == 'stdin'
|
if filename == 'stdin' or filename\match("%.nom$")
|
||||||
file = io.read("*a")
|
|
||||||
Files.spoof('stdin', file)
|
|
||||||
source = Source('stdin', 1, #file)
|
|
||||||
elseif filename\match("%.nom$")
|
|
||||||
file = Files.read(filename)
|
file = Files.read(filename)
|
||||||
if not file
|
if not file
|
||||||
error("File does not exist: #{filename}", 0)
|
error("File does not exist: #{filename}", 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user