nomsu/tools/find_action.nom

43 lines
1.5 KiB
Plaintext
Raw Normal View History

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.
use "lib/os.nom"
use "lib/consolecolor.nom"
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
%stub = (command line args).1
say "Looking for stub: \%stub..."
2018-11-19 17:21:08 -08:00
for % in 2 to (size of (command line args)):
for %filename in (files for (command line args).%):
if (%filename == "-"): %filename = "stdin"
unless ((%filename == "stdin") or (%filename::matches "%.nom$")):
do next %filename
%file = (read file %filename)
%code = (NomsuCode from (%Source %filename 1 (size of %file)) %file)
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")
%tree = (nil)
unless %tree:
do next %filename
%results = []
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:")\n\(yellow (source lines of %t))"
2018-07-22 16:35:07 -07:00
if (%t is syntax tree):
for %sub in %t:
recurse %t on %sub
sort %results by % -> %.line
for % in %results:
say %.text