2018-10-30 23:42:04 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
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-07-17 17:53:07 -07:00
|
|
|
use "compatibility"
|
|
|
|
use "lib/os.nom"
|
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-07-18 01:27:56 -07:00
|
|
|
%args = (command line args)
|
|
|
|
%inplace = (no)
|
2018-10-31 15:05:17 -07:00
|
|
|
%start_version = (nil)
|
2018-10-30 20:32:14 -07:00
|
|
|
%version = (Nomsu version)
|
|
|
|
repeat:
|
|
|
|
if %args.1 is:
|
|
|
|
"-i":
|
|
|
|
%inplace = (yes)
|
|
|
|
%args::remove index 1
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-10-30 20:32:14 -07:00
|
|
|
"-t":
|
|
|
|
use "lib/consolecolor.nom"
|
|
|
|
%test = (yes)
|
|
|
|
%args::remove index 1
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-10-30 20:32:14 -07:00
|
|
|
"-V":
|
|
|
|
%version = %args.2
|
|
|
|
%args::remove index 1
|
|
|
|
%args::remove index 1
|
2018-10-31 15:05:17 -07:00
|
|
|
|
|
|
|
"-S":
|
|
|
|
%start_version = %args.2
|
|
|
|
%args::remove index 1
|
|
|
|
%args::remove index 1
|
|
|
|
|
2018-10-30 20:32:14 -07:00
|
|
|
else: stop
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-07-17 23:08:13 -07:00
|
|
|
for %path in %args:
|
2018-07-17 17:53:07 -07:00
|
|
|
for file %filename in %path:
|
2018-09-10 16:26:08 -07:00
|
|
|
unless (%filename::matches "%.nom$"): do next %filename
|
2018-11-09 17:02:39 -08:00
|
|
|
%file = (read file %filename)
|
|
|
|
%code = (%NomsuCode::from (%Source %filename 1 (size of %file)) %file)
|
|
|
|
%tree = (%code parsed)
|
2018-10-31 15:05:17 -07:00
|
|
|
%uptree = (..)
|
|
|
|
%tree upgraded from (%start_version or (%tree.version or (Nomsu version))) to %version
|
2018-11-09 17:34:27 -08:00
|
|
|
%text = ((%uptree as nomsu)::text)
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-11-09 17:02:39 -08:00
|
|
|
when:
|
2018-07-18 17:55:29 -07:00
|
|
|
%inplace:
|
|
|
|
say "Upgraded \%filename"
|
|
|
|
write %text to file %filename
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-07-18 17:55:29 -07:00
|
|
|
%test:
|
|
|
|
if (%uptree == %tree):
|
|
|
|
say (dim "\%filename will not be changed")
|
|
|
|
..else:
|
|
|
|
say (bright "\%filename will be changed")
|
2018-07-20 20:27:15 -07:00
|
|
|
|
2018-07-21 14:43:49 -07:00
|
|
|
else: say %text
|