Software / code / prosody
Comparison
tools/tb2err @ 11191:13e2ac7b5798
tools/tb2err: Formats Lua traceback in errors.err format
Manually opening to the files and line numbers from a Lua traceback is
tedious. This tool converts tracebacks into a format that many compilers
and such tools use, which is also compatible with Vim (and possibly
other editors).
Thus if someone sends you a pastebin link with a traceback, a command
like the following gets you right to the relevant lines:
curl paste.example/abc123.txt | tb2err > errors.err; vim -q
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Wed, 28 Oct 2020 22:42:43 +0100 |
| child | 13063:414952def2d3 |
comparison
equal
deleted
inserted
replaced
| 11190:88ce53df44a9 | 11191:13e2ac7b5798 |
|---|---|
| 1 #!/usr/bin/env lua-any | |
| 2 -- Lua-Versions: 5.3 5.2 5.1 | |
| 3 -- traceback to errors.err for vim -q | |
| 4 local path_sep = package.config:sub(1,1); | |
| 5 for line in io.lines() do | |
| 6 local src, err = line:match("%s*(%S+)(:%d+: .*)") | |
| 7 if src then | |
| 8 src = src:gsub("\\", path_sep); | |
| 9 local cut = src:match("/()core/") | |
| 10 or src:match("/()net/") | |
| 11 or src:match("/()util/") | |
| 12 or src:match("/()modules/") | |
| 13 or src:match("/()plugins/") | |
| 14 or src:match("/()prosody[ctl]*$") | |
| 15 if cut then | |
| 16 src = src:sub(cut); | |
| 17 end | |
| 18 src = src:gsub("^modules/", "plugins/") | |
| 19 io.write(src, err, "\n"); | |
| 20 end | |
| 21 end |