2018-10-31 15:05:17 -07:00
|
|
|
#!/usr/bin/env nomsu -V4.8.10
|
2018-07-23 15:54:27 -07:00
|
|
|
#
|
|
|
|
Find an action by its stub. Usage:
|
2018-10-31 15:05:17 -07:00
|
|
|
nomsu tools/find_action.nom "foo %" file1 file2 directory1 ...
|
2018-07-23 15:54:27 -07:00
|
|
|
Will print all the code locations and code that uses the stub.
|
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
use "lib/os.nom"
|
|
|
|
use "lib/consolecolor.nom"
|
|
|
|
|
|
|
|
%stub = (command line args).1
|
2018-08-28 15:34:45 -07:00
|
|
|
say "Looking for stub: \%stub..."
|
2018-08-30 14:16:09 -07:00
|
|
|
%files = ((command line args).% for % in 2 to (size of (command line args)))
|
2018-07-22 13:59:08 -07:00
|
|
|
for %path in %files:
|
|
|
|
for file %filename in %path:
|
2018-09-10 16:26:08 -07:00
|
|
|
unless (%filename::matches "%.nom$") (do next %filename)
|
2018-07-22 13:59:08 -07:00
|
|
|
%file = (read file %filename)
|
|
|
|
%tree = (parse %file from %filename)
|
2018-09-26 12:45:08 -07:00
|
|
|
%results = []
|
2018-07-22 13:59:08 -07:00
|
|
|
for %t in recursive %tree:
|
2018-08-27 13:38:58 -07:00
|
|
|
if (%t is "Action" syntax tree):
|
2018-07-22 13:59:08 -07:00
|
|
|
if (%t.stub is %stub):
|
|
|
|
%line_num = (line number of %t.source.start in %file)
|
2018-09-26 12:45:08 -07:00
|
|
|
%results::add {..}
|
|
|
|
line: %line_num
|
|
|
|
text: "\
|
2018-10-29 13:00:08 -07:00
|
|
|
..\(blue "\%filename:\%line_num:")
|
|
|
|
\(yellow (source lines of %t))"
|
2018-07-22 13:59:08 -07:00
|
|
|
|
2018-07-22 16:35:07 -07:00
|
|
|
if (%t is syntax tree):
|
2018-07-23 14:40:20 -07:00
|
|
|
for %sub in %t: recurse %t on %sub
|
2018-10-31 15:05:17 -07:00
|
|
|
|
2018-09-26 12:45:08 -07:00
|
|
|
sort %results by % -> %.line
|
2018-10-31 15:05:17 -07:00
|
|
|
for % in %results: say %.text
|