2018-11-08 16:59:10 -08:00
|
|
|
#!/usr/bin/env nomsu -V4.10.12.7
|
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"
|
|
|
|
|
2018-11-08 15:23:22 -08:00
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
2018-07-22 13:59:08 -07:00
|
|
|
%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-11-08 16:59:10 -08:00
|
|
|
unless (%filename::matches "%.nom$"): do next %filename
|
2018-07-22 13:59:08 -07:00
|
|
|
%file = (read file %filename)
|
2018-11-08 16:59:10 -08:00
|
|
|
%code = (%NomsuCode (%Source %filename 1 (size of %file)) %file)
|
2018-11-02 14:38:24 -07:00
|
|
|
try:
|
2018-11-08 16:59:10 -08:00
|
|
|
%tree = (%code parsed)
|
|
|
|
..and if it barfs %msg:
|
|
|
|
say (red "\%filename failed to parse:\n\%msg")
|
2018-11-02 14:38:24 -07:00
|
|
|
%tree = (nil)
|
|
|
|
unless %tree: do next %filename
|
2018-09-26 12:45:08 -07:00
|
|
|
%results = []
|
2018-07-22 13:59:08 -07:00
|
|
|
for %t in recursive %tree:
|
2018-11-08 16:59:10 -08:00
|
|
|
if ((%t is "Action" syntax tree) and (%t.stub is %stub)):
|
|
|
|
%line_num = (line number of %t.source.start in %file)
|
|
|
|
%results::add {..}
|
|
|
|
line: %line_num
|
|
|
|
text: "\
|
|
|
|
..\(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
|