nomsu/tools/replace.nom

44 lines
1.4 KiB
Plaintext
Raw Normal View History

2018-10-31 15:05:17 -07:00
#!/usr/bin/env nomsu -V4.8.10
2018-08-29 15:12:01 -07:00
#
Tool to find and replace one tree with another.
2018-10-31 15:05:17 -07:00
nomsu tools/replace.nom [-i] tree_to_replace replacement file1 file2 directory1 ...
2018-08-29 15:12:01 -07:00
If "-i" is the first argument, replacements will be performed in-place. Otherwise, the
upgraded code will be printed.
use "lib/os.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2018-08-29 15:12:01 -07:00
%args = (command line args)
%inplace = (no)
if (%args.1 is "-i"):
%inplace = (yes)
%args::remove index 1
2018-08-29 15:12:01 -07:00
2018-08-30 14:16:09 -07:00
if ((size of %args) < 3):
2018-08-29 15:12:01 -07:00
say "Usage: nomsu tools/replace.nom [-i] tree_to_replace replacement files..."
lua> "os.exit(1)"
%pattern = (parse (%args::remove index 1))
%replacement = (parse (%args::remove index 1))
2018-08-29 15:12:01 -07:00
for %path in %args:
for file %filename in %path:
unless (any [%filename::matches "%.nom$", %filename == "-", %filename == "stdin"]):
2018-08-29 15:12:01 -07:00
do next %filename
%tree = (parse (read file %filename) from %filename)
%tree2 = (%tree with %pattern ~> %replacement)
if (%tree2 == %tree):
say "No changes in \%filename"
do next %filename
2018-09-14 19:17:09 -07:00
%text = "\
..#!/usr/bin/env nomsu -V\(%tree.version or (Nomsu version))
\(%tree2 as nomsu)"
2018-08-29 15:12:01 -07:00
if:
%inplace:
say "Replaced in \%filename"
write %text to file %filename
2018-08-29 15:12:01 -07:00
else: say %text