Simplifying the filesystem code (no longer entangled with nomsupath) and

using that to simplify the tools. Now the tools directly take lists of
file paths rather than things that might go through nomsupath or
directories or get processed by filetype. Use your shell for globbing stuff like
`nomsu tools/test.nom core/*.nom`
This commit is contained in:
Bruce Hill 2018-11-20 14:52:59 -08:00
parent f304138530
commit 2bbc035f5d
17 changed files with 172 additions and 219 deletions

View File

@ -7,7 +7,5 @@ use "compatibility/compatibility.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
upgrade action "traceback" to "3.5.5.6" via (..) upgrade action "traceback" to "3.5.5.6" via (..)
-> (barf "'traceback' has been deprecated") for %tree:
compile error at %tree "'traceback' has been deprecated."
upgrade action "traceback 1" to "3.5.5.6" via (..)
-> (barf "'traceback 1' has been deprecated")

View File

@ -10,4 +10,6 @@ upgrade action (method %spec %body) to "3" as (my action %spec %body)
upgrade action (me) to "3" as %me upgrade action (me) to "3" as %me
upgrade action (@) to "3" as %me upgrade action (@) to "3" as %me
upgrade action "as" to "3" via (..) upgrade action "as" to "3" via (..)
-> (barf "Object API has changed. Use (%obj::action ...) instead of (as %obj: action ...)") for %tree:
compile error at %tree "Object API has changed and 'as' is no longer supported." "\
..Use (%obj::action ...) instead of (as %obj: action ...)"

View File

@ -27,6 +27,11 @@ upgrade action "set" to "4.11" via (..)
%rhs.%i = %entry.2 %rhs.%i = %entry.2
return (SyntaxTree {type: "Action", source: %tree.source, 1: %lhs, 2: "=", 3: %rhs}) return (SyntaxTree {type: "Action", source: %tree.source, 1: %lhs, 2: "=", 3: %rhs})
upgrade action "1 with 2 ~>" to "4.11" via (..)
for %tree:
compile error at %tree "This method has been deprecated." "\
..Perhaps this could be use %tree::map instead."
# Changing filesystem API: # Changing filesystem API:
upgrade action (for file %f in %path %body) to "4.11" as (..) upgrade action (for file %f in %path %body) to "4.11" as (..)
for %f in (files for %path) %body for %f in (files for %path) %body

View File

@ -92,7 +92,11 @@ externally [..]
add %k = (%v upgraded from %start_version to %end_version) add %k = (%v upgraded from %start_version to %end_version)
set %with_upgraded_args's metatable to (%tree's metatable) set %with_upgraded_args's metatable to (%tree's metatable)
%tree = (%UPGRADES.%ver %with_upgraded_args %end_version) %tree = (%UPGRADES.%ver %with_upgraded_args %end_version)
%tree.shebang = "#!/usr/bin/env nomsu -V\%end_version\n" if (%tree.version != %end_version):
%tree = (SyntaxTree {: for %k = %v in %tree: add %k = %v})
%tree.version = %end_version
if %tree.shebang:
%tree.shebang = "#!/usr/bin/env nomsu -V\%end_version\n"
return %tree return %tree
externally (%tree upgraded from %start_version) means (..) externally (%tree upgraded from %start_version) means (..)

View File

@ -338,21 +338,6 @@ externally (match %tree with %patt) means:
end end
return matches" return matches"
externally (%tree with %patt ~> %replacement) means:
lua> "\
..return \%tree:map(function(\%t)
local \%vars = \(match %t with %patt)
if not \%vars then return nil end
for \%k,\%v in pairs(\%vars) do
\%vars[\%k] = \(%v with %patt ~> %replacement)
end
return \%replacement:map(function(\%t)
if \%t.type == "Var" then
return \%vars[\%t[1]]
end
end)
end)"
test: test:
assume ((quote "one\n\"two\"") == "\"one\\n\\\"two\\\"\"") assume ((quote "one\n\"two\"") == "\"one\\n\\\"two\\\"\"")

View File

@ -37,12 +37,13 @@ Files.read = function(filename)
do do
local file_contents = _FILE_CACHE[filename] local file_contents = _FILE_CACHE[filename]
if file_contents then if file_contents then
return file_contents return file_contents or nil
end end
end end
if filename == 'stdin' then if filename == 'stdin' or filename == '-' then
local contents = io.read('*a') local contents = io.read('*a')
Files.spoof('stdin', contents) Files.spoof('stdin', contents)
Files.spoof('-', contents)
return contents return contents
end end
local file = io.open(filename) local file = io.open(filename)
@ -52,7 +53,7 @@ Files.read = function(filename)
local contents = file:read("*a") local contents = file:read("*a")
file:close() file:close()
_FILE_CACHE[filename] = contents _FILE_CACHE[filename] = contents
return contents return contents or nil
end end
local match, gsub local match, gsub
do do
@ -71,7 +72,7 @@ Files.exists = function(path)
if _SPOOFED_FILES[path] then if _SPOOFED_FILES[path] then
return true return true
end end
if path == 'stdin' then if path == 'stdin' or path == '-' then
return true return true
end end
if run_cmd("ls " .. tostring(sanitize(path))) then if run_cmd("ls " .. tostring(sanitize(path))) then
@ -82,7 +83,7 @@ end
Files.list = function(path) Files.list = function(path)
if not (_BROWSE_CACHE[path]) then if not (_BROWSE_CACHE[path]) then
local files local files
if _SPOOFED_FILES[path] or path == 'stdin' then if _SPOOFED_FILES[path] or path == 'stdin' or path == '-' then
_BROWSE_CACHE[path] = { _BROWSE_CACHE[path] = {
path path
} }
@ -107,14 +108,14 @@ if ok then
if _SPOOFED_FILES[path] then if _SPOOFED_FILES[path] then
return true return true
end end
if path == 'stdin' or raw_file_exists(path) then if path == 'stdin' or path == '-' or raw_file_exists(path) then
return true return true
end end
return false return false
end end
Files.list = function(path) Files.list = function(path)
if not (_BROWSE_CACHE[path]) then if not (_BROWSE_CACHE[path]) then
if _SPOOFED_FILES[path] or path == 'stdin' then if _SPOOFED_FILES[path] or path == 'stdin' or path == '-' then
_BROWSE_CACHE[path] = { _BROWSE_CACHE[path] = {
path path
} }

View File

@ -25,17 +25,18 @@ Files.spoof = (filename, contents)->
-- Read a file's contents -- Read a file's contents
Files.read = (filename)-> Files.read = (filename)->
if file_contents = _FILE_CACHE[filename] if file_contents = _FILE_CACHE[filename]
return file_contents return file_contents or nil
if filename == 'stdin' if filename == 'stdin' or filename == '-'
contents = io.read('*a') contents = io.read('*a')
Files.spoof('stdin', contents) Files.spoof('stdin', contents)
Files.spoof('-', contents)
return contents return contents
file = io.open(filename) file = io.open(filename)
return nil unless file return nil unless file
contents = file\read("*a") contents = file\read("*a")
file\close! file\close!
_FILE_CACHE[filename] = contents _FILE_CACHE[filename] = contents
return contents return contents or nil
{:match, :gsub} = string {:match, :gsub} = string
@ -49,14 +50,14 @@ 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 path == 'stdin' or path == '-'
return true if run_cmd("ls #{sanitize(path)}") return true if run_cmd("ls #{sanitize(path)}")
return false return false
Files.list = (path)-> Files.list = (path)->
unless _BROWSE_CACHE[path] unless _BROWSE_CACHE[path]
local files local files
_BROWSE_CACHE[path] = if _SPOOFED_FILES[path] or path == 'stdin' _BROWSE_CACHE[path] = if _SPOOFED_FILES[path] or path == 'stdin' or path == '-'
{path} {path}
else run_cmd('find -L "'..path..'" -not -path "*/\\.*" -type f') or false else run_cmd('find -L "'..path..'" -not -path "*/\\.*" -type f') or false
return _BROWSE_CACHE[path] return _BROWSE_CACHE[path]
@ -68,12 +69,12 @@ if ok
return if mode == 'file' or mode == 'directory' or mode == 'link' 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 _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 path == '-' or raw_file_exists(path)
return false return false
Files.list = (path)-> Files.list = (path)->
unless _BROWSE_CACHE[path] unless _BROWSE_CACHE[path]
_BROWSE_CACHE[path] = if _SPOOFED_FILES[path] or path == 'stdin' _BROWSE_CACHE[path] = if _SPOOFED_FILES[path] or path == 'stdin' or path == '-'
{path} {path}
else else
file_type, err = lfs.attributes(path, 'mode') file_type, err = lfs.attributes(path, 'mode')

View File

@ -102,7 +102,7 @@ end
local file_queue = List({ }) local file_queue = List({ })
local sep = "\3" local sep = "\3"
local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: %true :} %sep)? local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: %true :} %sep)?
{:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !. {:nomsu_args: {| (nomsu_flag %sep)* {:extra_args: {| ({[^%sep]+} %sep)* |} :} |} :} |} !.
flag <- flag <-
{:optimization: "-O" (%sep? %number)? :} {:optimization: "-O" (%sep? %number)? :}
/ ("-I" %sep? ({~ file ~} -> add_file)) / ("-I" %sep? ({~ file ~} -> add_file))
@ -115,6 +115,7 @@ local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file
/ {:no_core: "--no-core" %true :} / {:no_core: "--no-core" %true :}
/ {:debugger: ("-d" %sep? {(!%sep .)*}) :} / {:debugger: ("-d" %sep? {(!%sep .)*}) :}
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :} / {:requested_version: "-V" (%sep? {([0-9.])+})? :}
nomsu_flag <- {| ({:key: ('-' [a-z]) :} {:value: %true :}) / ({:key: ('--' [^%sep=]+) :} {:value: ('=' {[^%sep]+}) / %true :}) |}
file <- ("-" -> "stdin") / {(!%sep .)+} file <- ("-" -> "stdin") / {(!%sep .)+}
]], { ]], {
["true"] = lpeg.Cc(true), ["true"] = lpeg.Cc(true),
@ -135,7 +136,14 @@ if not args or args.help then
print(usage) print(usage)
os.exit(EXIT_FAILURE) os.exit(EXIT_FAILURE)
end end
nomsu_environment.command_line_args = List(args.nomsu_args) local nomsu_args = Dict({ })
local _list_0 = args.nomsu_args
for _index_0 = 1, #_list_0 do
local argpair = _list_0[_index_0]
nomsu_args[argpair.key] = argpair.value
end
nomsu_args.extra_args = List(args.nomsu_args.extra_args or { })
nomsu_environment.command_line_args = nomsu_args
nomsu_environment.OPTIMIZATION = tonumber(args.optimization or 1) nomsu_environment.OPTIMIZATION = tonumber(args.optimization or 1)
if args.version then if args.version then
nomsu_environment.run_file_1_in('core', nomsu_environment, nomsu_environment.OPTIMIZATION) nomsu_environment.run_file_1_in('core', nomsu_environment, nomsu_environment.OPTIMIZATION)
@ -146,26 +154,14 @@ 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 local f = file_queue[_index_0]
repeat if not (Files.exists(f)) then
local f = file_queue[_index_0] error("Could not find: '" .. tostring(f) .. "'")
if f == 'stdin' then end
input_files[f] = true local _list_1 = Files.list(f)
_continue_0 = true for _index_1 = 1, #_list_1 do
break local filename = _list_1[_index_1]
end input_files[filename] = true
if not (Files.exists(f)) then
error("Could not find: '" .. tostring(f) .. "'")
end
local _list_0 = Files.list(f)
for _index_1 = 1, #_list_0 do
local filename = _list_0[_index_1]
input_files[filename] = true
end
_continue_0 = true
until true
if not _continue_0 then
break
end end
end end
if not (args.no_core) then if not (args.no_core) then

View File

@ -61,7 +61,7 @@ file_queue = List{}
sep = "\3" sep = "\3"
parser = re.compile([[ parser = re.compile([[
args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: %true :} %sep)? args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: %true :} %sep)?
{:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !. {:nomsu_args: {| (nomsu_flag %sep)* {:extra_args: {| ({[^%sep]+} %sep)* |} :} |} :} |} !.
flag <- flag <-
{:optimization: "-O" (%sep? %number)? :} {:optimization: "-O" (%sep? %number)? :}
/ ("-I" %sep? ({~ file ~} -> add_file)) / ("-I" %sep? ({~ file ~} -> add_file))
@ -74,6 +74,7 @@ parser = re.compile([[
/ {:no_core: "--no-core" %true :} / {:no_core: "--no-core" %true :}
/ {:debugger: ("-d" %sep? {(!%sep .)*}) :} / {:debugger: ("-d" %sep? {(!%sep .)*}) :}
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :} / {:requested_version: "-V" (%sep? {([0-9.])+})? :}
nomsu_flag <- {| ({:key: ('-' [a-z]) :} {:value: %true :}) / ({:key: ('--' [^%sep=]+) :} {:value: ('=' {[^%sep]+}) / %true :}) |}
file <- ("-" -> "stdin") / {(!%sep .)+} file <- ("-" -> "stdin") / {(!%sep .)+}
]], { ]], {
true:lpeg.Cc(true), number:lpeg.R("09")^1/tonumber, sep:lpeg.P(sep) true:lpeg.Cc(true), number:lpeg.R("09")^1/tonumber, sep:lpeg.P(sep)
@ -88,7 +89,11 @@ args = parser\match(arg_string)
if not args or args.help if not args or args.help
print usage print usage
os.exit(EXIT_FAILURE) os.exit(EXIT_FAILURE)
nomsu_environment.command_line_args = List(args.nomsu_args) nomsu_args = Dict{}
for argpair in *args.nomsu_args
nomsu_args[argpair.key] = argpair.value
nomsu_args.extra_args = List(args.nomsu_args.extra_args or {})
nomsu_environment.command_line_args = nomsu_args
nomsu_environment.OPTIMIZATION = tonumber(args.optimization or 1) nomsu_environment.OPTIMIZATION = tonumber(args.optimization or 1)
if args.version if args.version
@ -99,9 +104,6 @@ if args.version
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.list(f) for filename in *Files.list(f)

View File

@ -296,6 +296,7 @@ local nomsu_environment = Importer({
end end
_currently_running_files:add(path) _currently_running_files:add(path)
local mod = _1_forked(environment) local mod = _1_forked(environment)
local did_anything = false
for nomsupath in package.nomsupath:gmatch("[^;]+") do for nomsupath in package.nomsupath:gmatch("[^;]+") do
local _continue_0 = false local _continue_0 = false
repeat repeat
@ -323,6 +324,7 @@ local nomsu_environment = Importer({
code = NomsuCode:from(Source(filename, 1, #file), file) code = NomsuCode:from(Source(filename, 1, #file), file)
end end
environment.run_1_in(code, mod) environment.run_1_in(code, mod)
did_anything = true
_continue_1 = true _continue_1 = true
until true until true
if not _continue_1 then if not _continue_1 then
@ -337,6 +339,9 @@ local nomsu_environment = Importer({
break break
end end
end end
if not (did_anything) then
error("File not found: " .. tostring(path), 0)
end
import_to_1_from(environment, mod, prefix) import_to_1_from(environment, mod, prefix)
environment.FILE_CACHE[path] = mod environment.FILE_CACHE[path] = mod
return _currently_running_files:remove() return _currently_running_files:remove()

View File

@ -169,6 +169,7 @@ nomsu_environment = Importer{
_currently_running_files\add path _currently_running_files\add path
mod = _1_forked(environment) mod = _1_forked(environment)
did_anything = false
for nomsupath in package.nomsupath\gmatch("[^;]+") for nomsupath in package.nomsupath\gmatch("[^;]+")
files = Files.list(nomsupath.."/"..path) files = Files.list(nomsupath.."/"..path)
continue unless files continue unless files
@ -183,7 +184,10 @@ nomsu_environment = Importer{
file = Files.read(filename) file = Files.read(filename)
NomsuCode\from(Source(filename, 1, #file), file) NomsuCode\from(Source(filename, 1, #file), file)
environment.run_1_in(code, mod) environment.run_1_in(code, mod)
did_anything = true
break break
unless did_anything
error("File not found: #{path}", 0)
import_to_1_from(environment, mod, prefix) import_to_1_from(environment, mod, prefix)
environment.FILE_CACHE[path] = mod environment.FILE_CACHE[path] = mod
_currently_running_files\remove! _currently_running_files\remove!

View File

@ -10,23 +10,17 @@ use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%args = (command line args) %args = (command line args)
%inplace = (no) for %filename in %args.extra_args:
if (%args.1 is "-i"): %file = (read file %filename)
%inplace = (yes) unless %file:
%args::remove index 1 barf "File does not exist: \%filename"
%leading_indent = (%file::matching "[\n]*([ ]*)")
%code = (NomsuCode from (%Source %filename 1 (size of %file)) %file)
%tree = (%code parsed)
%formatted = "\
..\%leading_indent\(((%tree as nomsu)::text)::with "\n" -> "\n\%leading_indent")"
for %path in %args: if %args."-i":
if (%path == "-"): write %formatted to file %filename
%path = "stdin" ..else:
say %formatted inline
for %filename in (files for %path):
unless ((%filename::matches "%.nom$") or (%filename == "stdin")):
do next %filename
%contents = (read file %filename)
%code = (NomsuCode from (Source %filename 1 (size of %contents)) %contents)
%tree = (%code parsed)
%formatted = ((%tree as nomsu)::text)
if %inplace:
write %formatted to file %filename
..else:
say %formatted inline

View File

@ -9,37 +9,33 @@ use "lib/consolecolor.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%stub = (command line args).1 %stub = (command line args).extra_args.1
say "Looking for stub: \%stub..." say "Looking for stub: \%stub..."
for % in 2 to (size of (command line args)): for % in 2 to (size of (command line args).extra_args):
for %filename in (files for (command line args).%): %filename = (command line args).extra_args.%
if (%filename == "-"): %file = (read file %filename)
%filename = "stdin" unless %file:
barf "File does not exist: \%filename"
%code = (NomsuCode from (%Source %filename 1 (size of %file)) %file)
try:
%tree = (%code parsed)
..and if it barfs %msg:
say (red "\%filename failed to parse:\n\%msg")
%tree = (nil)
unless ((%filename == "stdin") or (%filename::matches "%.nom$")): unless %tree:
do next %filename do next %filename
%file = (read file %filename) %results = []
%code = (NomsuCode from (%Source %filename 1 (size of %file)) %file) for %t in recursive %tree:
try: if ((%t is "Action" syntax tree) and (%t.stub is %stub)):
%tree = (%code parsed) %line_num = (%file::line number at %t.source.start)
..and if it barfs %msg: %results::add {..}
say (red "\%filename failed to parse:\n\%msg") line: %line_num, text: "\(blue "\%filename:\%line_num:")\n\(yellow (source lines of %t))"
%tree = (nil)
unless %tree: if (%t is syntax tree):
do next %filename for %sub in %t:
recurse %t on %sub
%results = [] sort %results by % -> %.line
for %t in recursive %tree: for % in %results:
if ((%t is "Action" syntax tree) and (%t.stub is %stub)): say %.text
%line_num = (%file::line number at %t.source.start)
%results::add {..}
line: %line_num, text: "\(blue "\%filename:\%line_num:")\n\(yellow (source lines of %t))"
if (%t is syntax tree):
for %sub in %t:
recurse %t on %sub
sort %results by % -> %.line
for % in %results:
say %.text

View File

@ -35,15 +35,10 @@ externally (print tree %t at indent %indent) means:
else: else:
say "\%indent \(quote %arg)" say "\%indent \(quote %arg)"
for %path in (command line args): for %filename in (command line args).extra_args:
for %filename in (files for %path): %file = (read file %filename)
if (%filename == "-"): unless %file:
%filename = "stdin" barf "File does not exist: \%filename"
%nomsu = (NomsuCode from (Source %filename 1 (size of %file)) %file)
unless ((%filename == "stdin") or (%filename::matches "%.nom$")): %tree = (%nomsu parsed)
do next %filename print tree %tree at indent ""
%text = (read file %filename)
%nomsu = (NomsuCode from (Source %filename 1 (size of %text)) %text)
%tree = (%nomsu parsed)
print tree %tree at indent ""

View File

@ -9,36 +9,35 @@ use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%args = (command line args) barf "Deprecated."
%inplace = (no)
if (%args.1 is "-i"):
%inplace = (yes)
%args::remove index 1
if ((size of %args) < 3): if ((size of %args.extra_args) < 3):
say "Usage: nomsu tools/replace.nom [-i] tree_to_replace replacement files..." say "Usage: nomsu tools/replace.nom [-i] tree_to_replace replacement files..."
lua> "os.exit(1)" lua> "os.exit(1)"
%pattern = (parse (%args::remove index 1)) %pattern = ((%args.extra_args.1) parsed)
%replacement = (parse (%args::remove index 1)) %replacement = ((%args.extra_args.2) parsed)
for %path in %args: for %filename in %args.extra_args at %i:
for %filename in (files for %path): if (%i < 3): do next %i
unless (any [%filename::matches "%.nom$", %filename == "-", %filename == "stdin"]): %file = (read file %filename)
do next %filename unless %file: barf "File does not exist: \%filename"
%tree = (parse (read file %filename) from %filename) %nomsu = (NomsuCode from (Source %filename 1 (size of %file)) %file)
%tree2 = (%tree with %pattern ~> %replacement) %tree = (%nomsu parsed)
if (%tree2 == %tree): # TODO: fix this to use variable substitution
say "No changes in \%filename" %tree2 = (..)
do next %filename %tree::map (..)
for %subtree:
if (%subtree == %pattern):
return %replacement
if (%tree2 == %tree):
say "No changes in \%filename"
do next %filename
%text = "\ %text = ((%tree2 as nomsu)::text)
..#!/usr/bin/env nomsu -V\(%tree.version or (Nomsu version)) when:
\(%tree2 as nomsu)" %args."-i":
say "Replaced in \%filename"
write %text to file %filename
when: else:
%inplace: say %text
say "Replaced in \%filename"
write %text to file %filename
else:
say %text

View File

@ -8,24 +8,10 @@ use "lib/consolecolor.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%args = (command line args)
if (%args.1 == "-v"):
%args::remove index 1
%verbose = (yes)
%to_run = [..]
:
for %path in (command line args):
for %filename in (files for %path):
if (%filename == "-"):
%filename = "stdin"
if ((%filename::matches "%.nom$") or (%filename == "stdin")): add %filename
# Make sure all the files get run # Make sure all the files get run
for %filename in %to_run: for %filename in (command line args).extra_args: use %filename
use %filename
%tests = {: for %s = %t in (tests): add (=lua "Source:from_string(\%s)") = %t} %tests = {: for %s = %t in (tests): add (=lua "Source:from_string(\%s)") = %t}
for %filename in %to_run: for %filename in (command line args).extra_args:
%file_tests = [] %file_tests = []
for %src = %test in %tests: for %src = %test in %tests:
if (%src.filename == %filename): if (%src.filename == %filename):
@ -34,13 +20,13 @@ for %filename in %to_run:
unless (%file_tests is empty): unless (%file_tests is empty):
sort %file_tests by % -> %.source sort %file_tests by % -> %.source
lua> "io.write('[ .. ] ', \%filename); io.flush()" lua> "io.write('[ .. ] ', \%filename); io.flush()"
if %verbose: say "" if (command line args)."-v": say ""
for % in %file_tests: for % in %file_tests:
if %verbose: if (command line args)."-v":
say " \(yellow (%.test::with "\n" -> "\n "))" say " \(yellow (%.test::with "\n" -> "\n "))"
run %.test run %.test
if %verbose: if (command line args)."-v":
say (green "PASS") say (green "PASS")
..else: ..else:
say "\r[\(green "PASS")" say "\r[\(green "PASS")"

View File

@ -7,56 +7,36 @@
use "compatibility" use "compatibility"
use "lib/os.nom" use "lib/os.nom"
use "lib/consolecolor.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%args = (command line args) %args = (command line args)
%inplace = (no) %inplace = (%args."-i" or %args."--inplace")
%start_version = (nil) %start_version = %args."--upgrade-from"
%version = (Nomsu version) %version = (%args."--upgrade-to" or (Nomsu version))
repeat: %test = (%args."-t" or %args."--test")
if %args.1 is: for %filename in %args.extra_args:
"-i": %file = (read file %filename)
%inplace = (yes) unless %file:
%args::remove index 1 barf "File does not exist: \%filename"
%leading_indent = (%file::matching "[\n]*([ ]*)")
%code = (NomsuCode from (Source %filename 1 (size of %file)) %file)
%tree = (%code parsed)
%uptree = (..)
%tree upgraded from (%start_version or (%tree.version or (Nomsu version))) to \
..%version
%text = "\%leading_indent\(((%uptree as nomsu)::text)::with "\n" -> "\n\%leading_indent")"
when:
%inplace:
say "Upgraded \%filename"
write %text to file %filename
"-t": %test:
use "lib/consolecolor.nom" if (%uptree == %tree):
%test = (yes) say (dim "\%filename will not be changed")
%args::remove index 1 ..else:
say (bright "\%filename will be changed")
"-V": else:
%version = %args.2 say %text inline
%args::remove index 1
%args::remove index 1
"-S":
%start_version = %args.2
%args::remove index 1
%args::remove index 1
else: stop
for %path in %args:
for %filename in (files for %path):
unless (%filename::matches "%.nom$"): do next %filename
%file = (read file %filename)
%code = (NomsuCode from (%Source %filename 1 (size of %file)) %file)
%tree = (%code parsed)
%uptree = (..)
%tree upgraded from (%start_version or (%tree.version or (Nomsu version))) to \
..%version
%text = ((%uptree as nomsu)::text)
when:
%inplace:
say "Upgraded \%filename"
write %text to file %filename
%test:
if (%uptree == %tree):
say (dim "\%filename will not be changed")
..else:
say (bright "\%filename will be changed")
else:
say %text