Updated package.nomsupath behavior to first search the installed

locations, *then* search the current directory. This makes the system `nomsu` run
properly, even if the local directory has a broken file that has the
same name as a nomsu file.
This commit is contained in:
Bruce Hill 2018-07-24 15:08:44 -07:00
parent 3cf97066be
commit b6c99c56a1
7 changed files with 70 additions and 62 deletions

View File

@ -1,6 +1,7 @@
local lpeg = require('lpeg') local lpeg = require('lpeg')
local re = require('re') local re = require('re')
local Files = { } local Files = { }
assert(package.nomsupath, "No package.nomsupath was found")
local _SPOOFED_FILES = { } local _SPOOFED_FILES = { }
local _FILE_CACHE = setmetatable({ }, { local _FILE_CACHE = setmetatable({ }, {
__index = _SPOOFED_FILES __index = _SPOOFED_FILES
@ -21,14 +22,6 @@ Files.read = function(filename)
return Files.spoof('stdin', io.read('*a')) return Files.spoof('stdin', io.read('*a'))
end end
local file = io.open(filename) local file = io.open(filename)
if package.nomsupath and not file then
for nomsupath in package.nomsupath:gmatch("[^;]+") do
file = io.open(nomsupath .. "/" .. filename)
if file then
break
end
end
end
if not (file) then if not (file) then
return nil return nil
end end
@ -57,13 +50,11 @@ Files.exists = function(path)
if not (io.popen("ls " .. tostring(sanitize(path))):close()) then if not (io.popen("ls " .. tostring(sanitize(path))):close()) then
return true return true
end end
if package.nomsupath then
for nomsupath in package.nomsupath:gmatch("[^;]+") do for nomsupath in package.nomsupath:gmatch("[^;]+") do
if not (io.popen("ls " .. tostring(nomsupath) .. "/" .. tostring(sanitize(path))):close()) then if not (io.popen("ls " .. tostring(nomsupath) .. "/" .. tostring(sanitize(path))):close()) then
return true return true
end end
end end
end
return false return false
end end
local browse local browse
@ -75,16 +66,24 @@ browse = function(path)
path path
} }
else else
local f = io.popen('find -L "' .. package.nomsupath .. '/' .. path .. '" -not -path "*/\\.*" -type f -name "*.nom"') local result = false
for nomsupath in package.nomsupath:gmatch("[^;]+") do
local f = io.popen('find -L "' .. nomsupath .. '/' .. path .. '" -not -path "*/\\.*" -type f -name "*.nom"')
do do
local _tbl_0 = { } local _accum_0 = { }
local _len_0 = 1
for line in f:lines() do for line in f:lines() do
local _key_0, _val_0 = line _accum_0[_len_0] = line
_tbl_0[_key_0] = _val_0 _len_0 = _len_0 + 1
end end
files = _tbl_0 files = _accum_0
end end
_BROWSE_CACHE[path] = f:close() and files or false if f:close() then
result = files
break
end
end
_BROWSE_CACHE[path] = result
end end
end end
return _BROWSE_CACHE[path] return _BROWSE_CACHE[path]
@ -107,13 +106,11 @@ if ok then
if path == 'stdin' or raw_file_exists(path) then if path == 'stdin' or raw_file_exists(path) then
return true return true
end end
if package.nomsupath then
for nomsupath in package.nomsupath:gmatch("[^;]+") do for nomsupath in package.nomsupath:gmatch("[^;]+") do
if raw_file_exists(nomsupath .. "/" .. path) then if raw_file_exists(nomsupath .. "/" .. path) then
return true return true
end end
end end
end
return false return false
end end
browse = function(filename) browse = function(filename)
@ -139,12 +136,21 @@ if ok then
elseif file_type == 'directory' or file_type == 'link' then elseif file_type == 'directory' or file_type == 'link' then
local files = { } local files = { }
for subfile in lfs.dir(filename) do for subfile in lfs.dir(filename) do
if not (subfile == "." or subfile == "..") then local _continue_0 = false
repeat
if subfile == "." or subfile == ".." then
_continue_0 = true
break
end
local _list_0 = (browse(filename .. "/" .. subfile) or { }) local _list_0 = (browse(filename .. "/" .. subfile) or { })
for _index_0 = 1, #_list_0 do for _index_0 = 1, #_list_0 do
local f = _list_0[_index_0] local f = _list_0[_index_0]
files[#files + 1] = f files[#files + 1] = f
end end
_continue_0 = true
until true
if not _continue_0 then
break
end end
end end
_BROWSE_CACHE[filename] = files _BROWSE_CACHE[filename] = files
@ -167,8 +173,7 @@ Files.walk = function(path, flush_cache)
if flush_cache then if flush_cache then
_BROWSE_CACHE = { } _BROWSE_CACHE = { }
end end
local files = browse(path) local files
if package.nomsupath and not files then
for nomsupath in package.nomsupath:gmatch("[^;]+") do for nomsupath in package.nomsupath:gmatch("[^;]+") do
do do
files = browse(nomsupath .. "/" .. path) files = browse(nomsupath .. "/" .. path)
@ -177,7 +182,6 @@ 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

View File

@ -2,6 +2,7 @@
lpeg = require 'lpeg' lpeg = require 'lpeg'
re = require 're' re = require 're'
Files = {} Files = {}
assert package.nomsupath, "No package.nomsupath was found"
_SPOOFED_FILES = {} _SPOOFED_FILES = {}
_FILE_CACHE = setmetatable {}, __index:_SPOOFED_FILES _FILE_CACHE = setmetatable {}, __index:_SPOOFED_FILES
@ -19,10 +20,6 @@ Files.read = (filename)->
if filename == 'stdin' if filename == 'stdin'
return Files.spoof('stdin', io.read('*a')) return Files.spoof('stdin', io.read('*a'))
file = io.open(filename) file = io.open(filename)
if package.nomsupath and not file
for nomsupath in package.nomsupath\gmatch("[^;]+")
file = io.open(nomsupath.."/"..filename)
break if file
return nil unless file return nil unless file
contents = file\read("*a") contents = file\read("*a")
file\close! file\close!
@ -43,7 +40,6 @@ sanitize = (path)->
Files.exists = (path)-> Files.exists = (path)->
return true if _SPOOFED_FILES[path] return true if _SPOOFED_FILES[path]
return true unless io.popen("ls #{sanitize(path)}")\close! return true unless io.popen("ls #{sanitize(path)}")\close!
if package.nomsupath
for nomsupath in package.nomsupath\gmatch("[^;]+") for nomsupath in package.nomsupath\gmatch("[^;]+")
return true unless io.popen("ls #{nomsupath}/#{sanitize(path)}")\close! return true unless io.popen("ls #{nomsupath}/#{sanitize(path)}")\close!
return false return false
@ -54,9 +50,14 @@ browse = (path)->
_BROWSE_CACHE[path] = if _SPOOFED_FILES[path] _BROWSE_CACHE[path] = if _SPOOFED_FILES[path]
{path} {path}
else else
f = io.popen('find -L "'..package.nomsupath..'/'..path..'" -not -path "*/\\.*" -type f -name "*.nom"') result = false
files = {line for line in f\lines!} for nomsupath in package.nomsupath\gmatch("[^;]+")
f\close! and files or false f = io.popen('find -L "'..nomsupath..'/'..path..'" -not -path "*/\\.*" -type f -name "*.nom"')
files = [line for line in f\lines!]
if f\close!
result = files
break
result
return _BROWSE_CACHE[path] return _BROWSE_CACHE[path]
ok, lfs = pcall(require, "lfs") ok, lfs = pcall(require, "lfs")
@ -67,7 +68,6 @@ if ok
Files.exists = (path)-> Files.exists = (path)->
return true if _SPOOFED_FILES[path] return true if _SPOOFED_FILES[path]
return true if path == 'stdin' or raw_file_exists(path) return true if path == 'stdin' or raw_file_exists(path)
if package.nomsupath
for nomsupath in package.nomsupath\gmatch("[^;]+") for nomsupath in package.nomsupath\gmatch("[^;]+")
return true if raw_file_exists(nomsupath.."/"..path) return true if raw_file_exists(nomsupath.."/"..path)
return false return false
@ -88,7 +88,7 @@ if ok
elseif file_type == 'directory' or file_type == 'link' elseif file_type == 'directory' or file_type == 'link'
files = {} files = {}
for subfile in lfs.dir(filename) for subfile in lfs.dir(filename)
unless subfile == "." or subfile == ".." continue if subfile == "." or subfile == ".."
for f in *(browse(filename.."/"..subfile) or {}) for f in *(browse(filename.."/"..subfile) or {})
files[#files+1] = f files[#files+1] = f
files files
@ -102,8 +102,7 @@ Files.walk = (path, flush_cache=false)->
if flush_cache if flush_cache
export _BROWSE_CACHE export _BROWSE_CACHE
_BROWSE_CACHE = {} _BROWSE_CACHE = {}
files = browse(path) local files
if package.nomsupath and not files
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)->

View File

@ -1,3 +1,3 @@
#!/usr/bin/env nomsu -V2.5.4.3 #!/usr/bin/env nomsu -V2.5.4.3
# This file sets the current library version. # This file sets the current library version.
lua> "NOMSU_LIB_VERSION = 3" lua> "NOMSU_LIB_VERSION = 4"

View File

@ -48,7 +48,9 @@ if NOMSU_VERSION and NOMSU_PREFIX then
_len_0 = _len_0 + 1 _len_0 = _len_0 + 1
end end
return _accum_0 return _accum_0
end)(), ";") end)(), ";") .. ";."
else
package.nomsupath = "."
end end
local EXIT_SUCCESS, EXIT_FAILURE = 0, 1 local EXIT_SUCCESS, EXIT_FAILURE = 0, 1
local usage = [=[Nomsu Compiler local usage = [=[Nomsu Compiler

View File

@ -5,7 +5,9 @@ if NOMSU_VERSION and NOMSU_PREFIX
partial_vers = [table.concat(ver_bits,'.',1,i) for i=#ver_bits,1,-1] partial_vers = [table.concat(ver_bits,'.',1,i) for i=#ver_bits,1,-1]
package.path = table.concat(["#{NOMSU_PREFIX}/share/nomsu/#{v}/?.lua" for v in *partial_vers],";")..";"..package.path package.path = table.concat(["#{NOMSU_PREFIX}/share/nomsu/#{v}/?.lua" for v in *partial_vers],";")..";"..package.path
package.cpath = table.concat(["#{NOMSU_PREFIX}/lib/nomsu/#{v}/?.so" for v in *partial_vers],";")..";"..package.cpath package.cpath = table.concat(["#{NOMSU_PREFIX}/lib/nomsu/#{v}/?.so" for v in *partial_vers],";")..";"..package.cpath
package.nomsupath = table.concat(["#{NOMSU_PREFIX}/share/nomsu/#{v}" for v in *partial_vers],";") package.nomsupath = table.concat(["#{NOMSU_PREFIX}/share/nomsu/#{v}" for v in *partial_vers],";")..";."
else
package.nomsupath = "."
EXIT_SUCCESS, EXIT_FAILURE = 0, 1 EXIT_SUCCESS, EXIT_FAILURE = 0, 1
usage = [=[ usage = [=[

View File

@ -158,7 +158,7 @@ local NomsuCompiler = setmetatable({ }, {
end end
}) })
do do
NomsuCompiler.NOMSU_COMPILER_VERSION = 4 NomsuCompiler.NOMSU_COMPILER_VERSION = 5
NomsuCompiler.NOMSU_SYNTAX_VERSION = Parser.version NomsuCompiler.NOMSU_SYNTAX_VERSION = Parser.version
NomsuCompiler._ENV = NomsuCompiler NomsuCompiler._ENV = NomsuCompiler
NomsuCompiler.nomsu = NomsuCompiler NomsuCompiler.nomsu = NomsuCompiler
@ -454,7 +454,7 @@ do
if not (ran_lua) then if not (ran_lua) then
local file = Files.read(filename) local file = Files.read(filename)
if not file then if not file then
error("File does not exist: " .. tostring(filename), 0) error("Tried to run file that does not exist: " .. tostring(filename))
end end
ret = self:run(file, Source(filename, 1, #file)) ret = self:run(file, Source(filename, 1, #file))
end end

View File

@ -95,7 +95,7 @@ dict = (t)-> setmetatable(t, _dict_mt)
MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer than this value
NomsuCompiler = setmetatable({}, {__index: (k)=> if _self = rawget(@, "self") then _self[k] else nil}) NomsuCompiler = setmetatable({}, {__index: (k)=> if _self = rawget(@, "self") then _self[k] else nil})
with NomsuCompiler with NomsuCompiler
.NOMSU_COMPILER_VERSION = 4 .NOMSU_COMPILER_VERSION = 5
.NOMSU_SYNTAX_VERSION = Parser.version .NOMSU_SYNTAX_VERSION = Parser.version
._ENV = NomsuCompiler ._ENV = NomsuCompiler
.nomsu = NomsuCompiler .nomsu = NomsuCompiler
@ -260,6 +260,7 @@ with NomsuCompiler
_running_files = {} -- For detecting circular imports _running_files = {} -- For detecting circular imports
.run_file = (filename)=> .run_file = (filename)=>
-- Filename should be an absolute path, i.e. package.nomsupath will not be searched for it
if @LOADED[filename] if @LOADED[filename]
return @LOADED[filename] return @LOADED[filename]
-- Check for circular import -- Check for circular import
@ -284,7 +285,7 @@ with NomsuCompiler
unless ran_lua unless ran_lua
file = Files.read(filename) file = Files.read(filename)
if not file if not file
error("File does not exist: #{filename}", 0) error("Tried to run file that does not exist: #{filename}")
ret = @run file, Source(filename,1,#file) ret = @run file, Source(filename,1,#file)
else else
error("Invalid filetype for #{filename}", 0) error("Invalid filetype for #{filename}", 0)