2018-12-14 20:21:03 -08:00
|
|
|
#!/usr/bin/env nomsu -V5.12.12.8
|
2018-07-23 15:54:27 -07:00
|
|
|
#
|
|
|
|
Tool to automatically update code from old versions of Nomsu. Usage:
|
2018-10-31 15:05:17 -07:00
|
|
|
nomsu tools/upgrade.nom [-i] file1 file2 directory1 ...
|
2018-07-23 15:54:27 -07:00
|
|
|
If "-i" is the first argument, upgrades will be performed in-place. Otherwise, the
|
|
|
|
upgraded code will be printed.
|
2018-11-11 15:50:46 -08:00
|
|
|
|
2018-07-17 17:53:07 -07:00
|
|
|
use "compatibility"
|
|
|
|
use "lib/os.nom"
|
2018-11-20 14:52:59 -08:00
|
|
|
use "lib/consolecolor.nom"
|
2018-07-17 17:53:07 -07:00
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-12-18 19:23:20 -08:00
|
|
|
$inplace = ($(COMMAND LINE ARGS)."-i" or $(COMMAND LINE ARGS)."--inplace")
|
|
|
|
$start_version = $(COMMAND LINE ARGS)."--upgrade-from"
|
|
|
|
$version = ($(COMMAND LINE ARGS)."--upgrade-to" or (Nomsu version))
|
|
|
|
$test = ($(COMMAND LINE ARGS)."-t" or $(COMMAND LINE ARGS)."--test")
|
|
|
|
for $filename in $(COMMAND LINE ARGS).extras:
|
2018-12-14 20:21:03 -08:00
|
|
|
$file = (read file $filename)
|
|
|
|
unless $file:
|
|
|
|
barf "File does not exist: \$filename"
|
|
|
|
$leading_indent = ($file|matching "[\n]*([ ]*)")
|
|
|
|
$code = (NomsuCode from (Source $filename 1 (size of $file)) $file)
|
2018-12-14 20:34:27 -08:00
|
|
|
$tree = ($code parsed $start_version)
|
2018-12-14 20:21:03 -08:00
|
|
|
$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")"
|
2018-11-20 14:52:59 -08:00
|
|
|
when:
|
2018-12-14 20:21:03 -08:00
|
|
|
$inplace:
|
|
|
|
say "Upgraded \$filename"
|
|
|
|
write $text to file $filename
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-12-14 20:21:03 -08:00
|
|
|
$test:
|
|
|
|
if ($uptree == $tree):
|
|
|
|
say (dim "\$filename will not be changed")
|
2018-11-20 14:52:59 -08:00
|
|
|
..else:
|
2018-12-14 20:21:03 -08:00
|
|
|
say (bright "\$filename will be changed")
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-11-20 14:52:59 -08:00
|
|
|
else:
|
2018-12-14 20:21:03 -08:00
|
|
|
say $text inline
|