Added error checking for bad paths.
This commit is contained in:
parent
5758626bf7
commit
0c07968e07
11
nomsu.lua
11
nomsu.lua
@ -88,7 +88,16 @@ all_files = function(path)
|
|||||||
return iterate_single, path
|
return iterate_single, path
|
||||||
end
|
end
|
||||||
path = path:gsub("\\", "\\\\"):gsub("`", ""):gsub('"', '\\"'):gsub("$", "")
|
path = path:gsub("\\", "\\\\"):gsub("`", ""):gsub('"', '\\"'):gsub("$", "")
|
||||||
return io.popen('find -L "' .. path .. '" -type f -name "*.nom"'):lines()
|
return coroutine.wrap(function()
|
||||||
|
local f = io.popen('find -L "' .. path .. '" -type f -name "*.nom"')
|
||||||
|
for line in f:lines() do
|
||||||
|
coroutine.yield(line)
|
||||||
|
end
|
||||||
|
local success = f:close()
|
||||||
|
if not (success) then
|
||||||
|
return error("Invalid file path: " .. tostring(path))
|
||||||
|
end
|
||||||
|
end)
|
||||||
end
|
end
|
||||||
local line_counter = re.compile([[ lines <- {| line (%nl line)* |}
|
local line_counter = re.compile([[ lines <- {| line (%nl line)* |}
|
||||||
line <- {} (!%nl .)*
|
line <- {} (!%nl .)*
|
||||||
|
@ -77,7 +77,13 @@ all_files = (path)->
|
|||||||
return iterate_single, path
|
return iterate_single, path
|
||||||
-- TODO: improve sanitization
|
-- TODO: improve sanitization
|
||||||
path = path\gsub("\\","\\\\")\gsub("`","")\gsub('"','\\"')\gsub("$","")
|
path = path\gsub("\\","\\\\")\gsub("`","")\gsub('"','\\"')\gsub("$","")
|
||||||
return io.popen('find -L "'..path..'" -type f -name "*.nom"')\lines!
|
return coroutine.wrap ->
|
||||||
|
f = io.popen('find -L "'..path..'" -type f -name "*.nom"')
|
||||||
|
for line in f\lines!
|
||||||
|
coroutine.yield(line)
|
||||||
|
success = f\close!
|
||||||
|
unless success
|
||||||
|
error("Invalid file path: "..tostring(path))
|
||||||
|
|
||||||
line_counter = re.compile([[
|
line_counter = re.compile([[
|
||||||
lines <- {| line (%nl line)* |}
|
lines <- {| line (%nl line)* |}
|
||||||
|
Loading…
Reference in New Issue
Block a user