Adding some compatibility stuff.

This commit is contained in:
Bruce Hill 2018-07-09 19:22:40 -07:00
parent 0d70332ccf
commit de34592dbe
7 changed files with 34 additions and 9 deletions

View File

@ -59,7 +59,7 @@ if ok then
local raw_file_exists local raw_file_exists
raw_file_exists = function(filename) raw_file_exists = function(filename)
local mode = lfs.attributes(filename, 'mode') local mode = lfs.attributes(filename, 'mode')
if mode == 'file' or mode == 'directory' then if mode == 'file' or mode == 'directory' or mode == 'link' then
return true return true
else else
return false return false
@ -80,15 +80,15 @@ if ok then
end end
local browse local browse
browse = function(filename) browse = function(filename)
local file_type = lfs.attributes(filename, 'mode') local file_type, err = lfs.attributes(filename, 'mode')
if file_type == 'file' then if file_type == 'file' then
if match(filename, "%.nom$") or match(filename, "%.lua$") then if match(filename, "%.nom$") or match(filename, "%.lua$") then
coroutine.yield(filename) coroutine.yield(filename)
return true return true
end end
elseif file_type == 'directory' then elseif file_type == 'directory' or file_type == 'link' then
for subfile in lfs.dir(filename) do for subfile in lfs.dir(filename) do
if not (subfile == "." or subfile == ".." or not subfile:match("%.nom$")) then if not (subfile == "." or subfile == "..") then
browse(filename .. "/" .. subfile) browse(filename .. "/" .. subfile)
end end
end end

View File

@ -37,7 +37,7 @@ ok, lfs = pcall(require, "lfs")
if ok if ok
raw_file_exists = (filename)-> raw_file_exists = (filename)->
mode = lfs.attributes(filename, 'mode') mode = lfs.attributes(filename, 'mode')
return if mode == 'file' or mode == 'directory' then true else false return if mode == 'file' or mode == 'directory' or mode == 'link' then true else false
files.exists = (path)-> files.exists = (path)->
return true if path == 'stdin' or raw_file_exists(path) return true if path == 'stdin' or raw_file_exists(path)
if package.nomsupath if package.nomsupath
@ -46,20 +46,20 @@ if ok
return false return false
-- Return 'true' if any files or directories are found, otherwise 'false', and yield every filename -- Return 'true' if any files or directories are found, otherwise 'false', and yield every filename
browse = (filename)-> browse = (filename)->
file_type = lfs.attributes(filename, 'mode') file_type, err = lfs.attributes(filename, 'mode')
if file_type == 'file' if file_type == 'file'
if match(filename, "%.nom$") or match(filename, "%.lua$") if match(filename, "%.nom$") or match(filename, "%.lua$")
coroutine.yield filename coroutine.yield filename
return true return true
elseif file_type == 'directory' elseif file_type == 'directory' or file_type == 'link'
for subfile in lfs.dir(filename) for subfile in lfs.dir(filename)
-- Only include .nom files unless directly specified unless subfile == "." or subfile == ".."
unless subfile == "." or subfile == ".." or not subfile\match("%.nom$")
browse(filename.."/"..subfile) browse(filename.."/"..subfile)
return true return true
elseif file_type == 'char device' elseif file_type == 'char device'
coroutine.yield(filename) coroutine.yield(filename)
return true return true
return false return false
files.walk = (path)-> files.walk = (path)->
if match(path, "%.nom$") or match(path, "%.lua$") or path == 'stdin' if match(path, "%.nom$") or match(path, "%.lua$") or path == 'stdin'

View File

@ -1,10 +1,14 @@
-- Nomsu version 1 -- Nomsu version 1
file: file:
shebang?
(ignored_line %nl)* (ignored_line %nl)*
(file_chunks / block / action / expression)? (file_chunks / block / action / expression)?
(%nl ignored_line)* (%nl ignored_line)*
(!. / (({} (.* -> "Parse error") %userdata) => error)) (!. / (({} (.* -> "Parse error") %userdata) => error))
shebang:
("#!" (!"nomsu" !%nl .)* "nomsu" ((%ws* "-V" %ws* {[0-9]+ ("." [0-9]+)*}) / {''}) %ws* (%nl / !.) %userdata) => Version
file_chunks (FileChunks): file_chunks (FileChunks):
{| (block/action/expression) (nodent chunk_delimeter nodent (block/action/expression))+ |} {| (block/action/expression) (nodent chunk_delimeter nodent (block/action/expression))+ |}
chunk_delimeter: "~~~" (("~")*) chunk_delimeter: "~~~" (("~")*)

View File

@ -486,6 +486,14 @@ do
return run_lua_fn() return run_lua_fn()
end end
NomsuCompiler.compile = function(self, tree) NomsuCompiler.compile = function(self, tree)
if tree.version then
do
local upgrade = self['A' .. string.as_lua_id("upgrade 1 from 2")]
if upgrade then
tree = upgrade(tree, tree.version)
end
end
end
local _exp_0 = tree.type local _exp_0 = tree.type
if "Action" == _exp_0 then if "Action" == _exp_0 then
local stub = tree.stub local stub = tree.stub

View File

@ -321,6 +321,9 @@ with NomsuCompiler
return run_lua_fn! return run_lua_fn!
.compile = (tree)=> .compile = (tree)=>
if tree.version
if upgrade = @['A'..string.as_lua_id("upgrade 1 from 2")]
tree = upgrade(tree, tree.version)
switch tree.type switch tree.type
when "Action" when "Action"
stub = tree.stub stub = tree.stub

View File

@ -97,6 +97,10 @@ do
userdata.comments[start_pos] = value userdata.comments[start_pos] = value
return true return true
end end
_with_0.Version = function(src, end_pos, version, userdata)
userdata.version = version
return true
end
NOMSU_DEFS = _with_0 NOMSU_DEFS = _with_0
end end
setmetatable(NOMSU_DEFS, { setmetatable(NOMSU_DEFS, {
@ -195,6 +199,7 @@ Parser.parse = function(nomsu_code, source)
error("Errors occurred while parsing:\n\n" .. table.concat(errors, "\n\n"), 0) error("Errors occurred while parsing:\n\n" .. table.concat(errors, "\n\n"), 0)
end end
tree.comments = userdata.comments tree.comments = userdata.comments
tree.version = userdata.version
return tree return tree
end end
return Parser return Parser

View File

@ -76,6 +76,10 @@ NOMSU_DEFS = with {}
userdata.comments[start_pos] = value userdata.comments[start_pos] = value
return true return true
.Version = (src,end_pos,version,userdata)->
userdata.version = version
return true
setmetatable(NOMSU_DEFS, {__index:(key)=> setmetatable(NOMSU_DEFS, {__index:(key)=>
make_node = (start, value, stop, userdata)-> make_node = (start, value, stop, userdata)->
if userdata.source if userdata.source
@ -133,6 +137,7 @@ Parser.parse = (nomsu_code, source=nil)->
error("Errors occurred while parsing:\n\n"..table.concat(errors, "\n\n"), 0) error("Errors occurred while parsing:\n\n"..table.concat(errors, "\n\n"), 0)
tree.comments = userdata.comments tree.comments = userdata.comments
tree.version = userdata.version
return tree return tree
return Parser return Parser