1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
|
import std/os
import std/posix
import std/strutils
from std/unicode import runeLenAt
import bindings/libregexp
import js/jsregex
import types/opt
import utils/twtstr
proc lre_check_stack_overflow(opaque: pointer; alloca_size: csize_t): cint
{.exportc.} =
return 0
proc parseSection(query: string): tuple[page, section: string] =
var section = ""
if query.len > 0 and query[^1] == ')':
for i in countdown(query.high, 0):
if query[i] == '(':
section = query.substr(i + 1, query.high - 1)
break
if section != "":
return (query.substr(0, query.high - 2 - section.len), section)
return (query, "")
func processBackspace(line: string): string =
var s = ""
var i = 0
var thiscs = 0 .. -1
var bspace = false
var inU = false
var inB = false
var pendingInU = false
var pendingInB = false
template flushChar =
if pendingInU != inU:
s &= (if inU: "</u>" else: "<u>")
inU = pendingInU
if pendingInB != inB:
s &= (if inB: "</b>" else: "<b>")
inB = pendingInB
if thiscs.len > 0:
let cs = case line[thiscs.a]
of '&': "&"
of '<': "<"
of '>': ">"
else: line.substr(thiscs.a, thiscs.b)
s &= cs
thiscs = i ..< i + n
pendingInU = false
pendingInB = false
while i < line.len:
# this is the same "sometimes works" algorithm as in ansi2html
if line[i] == '\b' and thiscs.len > 0:
bspace = true
inc i
continue
let n = line.runeLenAt(i)
if thiscs.len == 0:
thiscs = i ..< i + n
i += n
continue
if bspace and thiscs.len > 0:
if line[i] == '_' and not pendingInU and line[thiscs.a] != '_':
pendingInU = true
elif line[thiscs.a] == '_' and not pendingInU and line[i] != '_':
# underscore comes first; set thiscs to the current charseq
thiscs = i ..< i + n
pendingInU = true
elif line[i] == '_' and line[thiscs.a] == '_':
if inB and not pendingInB:
pendingInB = true
elif inU and not pendingInU:
pendingInU = true
elif not pendingInB:
pendingInB = true
else:
pendingInU = true
elif not pendingInB:
pendingInB = true
bspace = false
else:
flushChar
i += n
let n = 0
flushChar
if inU: s &= "</u>"
if inB: s &= "</b>"
return s
proc isCommand(paths: seq[string]; name, s: string): bool =
for p in paths:
if p & name == s:
return true
false
iterator myCaptures(captures: var seq[RegexCapture]; target: int;
offset: var int): RegexCapture =
for cap in captures.mitems:
if cap.i == target:
cap.s += offset
cap.e += offset
yield cap
proc readErrorMsg(efile: File; line: var string): string =
var msg = ""
while true:
# try to get the error message into an acceptable format
if line.startsWith("man: "):
line.delete(0..4)
line = line.toLower().strip().replaceControls()
if line.len > 0 and line[^1] == '.':
line.setLen(line.high)
if msg != "":
msg &= ' '
msg &= line
if not efile.readLine(line):
break
return msg
proc processManpage(ofile, efile: File; header, keyword: string) =
var line: string
# The "right thing" would be to check for the error code and output error
# messages accordingly. Unfortunately that would prevent us from streaming
# the output, so what we do instead is:
# * read first line
# * if EOF, probably an error; read all of stderr and print it
# * if not EOF, probably not an error; print stdout as a document and ignore
# stderr
# This may break in some edge cases, e.g. if man writes a long error
# message to stdout. But it's much better (faster) than not streaming the
# output.
if not ofile.readLine(line) or ofile.endOfFile():
stdout.write("Cha-Control: ConnectionError 4 " & efile.readErrorMsg(line))
ofile.close()
efile.close()
quit(1)
# skip formatting of line 0, like w3mman does
# this is useful because otherwise the header would get caught in the man
# regex, and that makes navigation slightly more annoying
stdout.write(header)
stdout.write(line.processBackspace() & '\n')
var wasBlank = false
template re(s: static string): Regex =
let r = s.compileRegex({LRE_FLAG_GLOBAL, LRE_FLAG_UNICODE})
if r.isNone:
stdout.write(s & ": " & r.error)
quit(1)
r.get
# regexes partially from w3mman2html
let linkRe = re"(https?|ftp)://[\w/~.-]+"
let mailRe = re"(mailto:|)(\w[\w.-]*@[\w-]+\.[\w.-]*)"
let fileRe = re"(file:)?[/~][\w/~.-]+[\w/]"
let includeRe = re"#include(</?[bu]>|\s)*<([\w./-]+)"
let manRe = re"(</?[bu]>)*(\w[\w.-]*)(</?[bu]>)*(\([0-9nlx]\w*\))"
var paths: seq[string] = @[]
var ignoreMan = keyword.toUpperAscii()
if ignoreMan == keyword or keyword.len == 1:
ignoreMan = ""
for p in getEnv("PATH").split(':'):
var i = p.high
while i > 0 and p[i] == '/':
dec i
paths.add(p.substr(0, i) & "/")
while ofile.readLine(line):
if line == "":
if wasBlank:
continue
wasBlank = true
else:
wasBlank = false
var line = line.processBackspace()
var offset = 0
var linkRes = linkRe.exec(line)
var mailRes = mailRe.exec(line)
var fileRes = fileRe.exec(line)
var includeRes = includeRe.exec(line)
var manRes = manRe.exec(line)
if linkRes.success:
for cap in linkRes.captures.myCaptures(0, offset):
let s = line[cap.s..<cap.e]
let link = "<a href='" & s & "'>" & s & "</a>"
line[cap.s..<cap.e] = link
offset += link.len - (cap.e - cap.s)
if mailRes.success:
for cap in mailRes.captures.myCaptures(2, offset):
let s = line[cap.s..<cap.e]
let link = "<a href='mailto:" & s & "'>" & s & "</a>"
line[cap.s..<cap.e] = link
offset += link.len - (cap.e - cap.s)
if fileRes.success:
for cap in fileRes.captures.myCaptures(0, offset):
let s = line[cap.s..<cap.e]
let target = s.expandTilde()
if not fileExists(target) and not symlinkExists(target) and
not dirExists(target):
continue
let name = target.afterLast('/')
let link = if paths.isCommand(name, target):
"<a href='man:" & name & "'>" & s & "</a>"
else:
"<a href='file:" & target & "'>" & s & "</a>"
line[cap.s..<cap.e] = link
offset += link.len - (cap.e - cap.s)
if includeRes.success:
for cap in includeRes.captures.myCaptures(2, offset):
let s = line[cap.s..<cap.e]
const includePaths = [
"/usr/include/",
"/usr/local/include/",
"/usr/X11R6/include/",
"/usr/X11/include/",
"/usr/X/include/",
"/usr/include/X11/"
]
for path in includePaths:
let file = path & s
if fileExists(file):
let link = "<a href='file:" & file & "'>" & s & "</a>"
line[cap.s..<cap.e] = link
offset += link.len - (cap.e - cap.s)
break
if manRes.success:
for j, cap in manRes.captures.mpairs:
if cap.i == 0:
cap.s += offset
cap.e += offset
var manCap = manRes.captures[j + 2]
manCap.s += offset
manCap.e += offset
var secCap = manRes.captures[j + 4]
secCap.s += offset
secCap.e += offset
let man = line[manCap.s..<manCap.e]
# ignore footers like MYPAGE(1)
# (just to be safe, we also check if it's in paths too)
if man == ignoreMan and not paths.isCommand(man.afterLast('/'), man):
continue
let cat = man & line[secCap.s..<secCap.e]
let link = "<a href='man:" & cat & "'>" & man & "</a>"
line[manCap.s..<manCap.e] = link
offset += link.len - (manCap.e - manCap.s)
stdout.write(line & '\n')
ofile.close()
efile.close()
proc myOpen(cmd: string): tuple[ofile, efile: File] =
var opipe = default(array[2, cint])
var epipe = default(array[2, cint])
if pipe(opipe) == -1 or pipe(epipe) == -1:
return (nil, nil)
case fork()
of -1: # fail
return (nil, nil)
of 0: # child
discard close(opipe[0])
discard close(epipe[0])
discard dup2(opipe[1], stdout.getFileHandle())
discard dup2(epipe[1], stderr.getFileHandle())
discard execl("/bin/sh", "sh", "-c", cstring(cmd), nil)
exitnow(1)
else: # parent
var ofile: File = nil
var efile: File = nil
discard close(opipe[1])
discard close(epipe[1])
if not ofile.open(FileHandle(opipe[0])):
discard close(opipe[0])
discard close(epipe[0])
return (nil, nil)
if not efile.open(FileHandle(epipe[0])):
ofile.close()
discard close(epipe[0])
return (nil, nil)
return (ofile, efile)
proc doMan(man, keyword, section: string) =
let sectionOpt = if section == "": "" else: ' ' & quoteShellPosix(section)
let cmd = "MANCOLOR=1 GROFF_NO_SGR=1 MAN_KEEP_FORMATTING=1 " &
man & sectionOpt & ' ' & quoteShellPosix(keyword)
let (ofile, efile) = myOpen(cmd)
if ofile == nil:
stdout.write("Cha-Control: ConnectionError 1 failed to run " & cmd)
quit(1)
var manword = keyword
if section != "":
manword &= '(' & section & ')'
ofile.processManpage(efile, header = """Content-Type: text/html
<title>man """ & manword & """</title>
<pre>""", keyword = keyword)
proc doLocal(man, path: string) =
# Note: we intentionally do not use -l, because it is not supported on
# various systems (at the very least FreeBSD, NetBSD).
let cmd = "MANCOLOR=1 GROFF_NO_SGR=1 MAN_KEEP_FORMATTING=1 " &
man & ' ' & quoteShellPosix(path)
let (ofile, efile) = myOpen(cmd)
if ofile == nil:
stdout.write("Cha-Control: ConnectionError 1 failed to run " & cmd)
quit(1)
ofile.processManpage(efile, header = """Content-Type: text/html
<title>man -l """ & path & """</title>
<pre>""", keyword = path.afterLast('/').until('.'))
proc doKeyword(man, keyword, section: string) =
let sectionOpt = if section == "": "" else: " -s " & quoteShellPosix(section)
let cmd = man & sectionOpt & " -k " & quoteShellPosix(keyword)
let (ofile, efile) = myOpen(cmd)
if ofile == nil:
stdout.write("Cha-Control: ConnectionError 1 failed to run " & cmd)
quit(1)
var line: string
if not ofile.readLine(line) or ofile.endOfFile():
stdout.write("Cha-Control: ConnectionError 4 " & efile.readErrorMsg(line))
ofile.close()
efile.close()
quit(1)
stdout.write("Content-Type: text/html\n\n")
stdout.write("<title>man" & sectionOpt & " -k " & keyword & "</title>\n")
stdout.write("<h1>man" & sectionOpt & " -k <b>" & keyword & "</b></h1>\n")
stdout.write("<ul>")
template die =
stdout.write("Error parsing line! " & line)
quit(1)
while true:
if line.len == 0:
stdout.write("\n")
if not ofile.readLine(line):
break
continue
# collect titles
var titles: seq[string] = @[]
var i = 0
while true:
let title = line.until({'(', ','}, i)
i += title.len
titles.add(title)
if i >= line.len or line[i] == '(':
break
i = line.skipBlanks(i + 1)
# collect section
if line[i] != '(': die
let sectionText = line.substr(i, line.find(')', i))
i += sectionText.len
# create line
var section = sectionText.until(',') # for multiple sections, take first
if section[^1] != ')':
section &= ')'
var s = "<li>"
for i, title in titles:
let title = title.htmlEscape()
s &= "<a href='man:" & title & section & "'>" & title & "</a>"
if i < titles.high:
s &= ", "
s &= sectionText
s &= line.substr(i)
s &= "\n"
stdout.write(s)
if not ofile.readLine(line):
break
ofile.close()
efile.close()
proc main() =
var man = getEnv("MANCHA_MAN")
if man == "":
block notfound:
for s in ["/usr/bin/man", "/bin/man", "/usr/local/bin/man"]:
if fileExists(s) or symlinkExists(s):
man = s
break notfound
man = "/usr/bin/env man"
var apropos = getEnv("MANCHA_APROPOS")
if apropos == "":
# on most systems, man is compatible with apropos (using -s syntax for
# specifying sections).
# ...not on FreeBSD :( here we have -S and MANSECT for specifying man
# sections, and both are silently ignored when searching with -k. hooray.
when not defined(freebsd):
apropos = man
else:
apropos = "/usr/bin/apropos" # this is where it should be.
let path = getEnv("MAPPED_URI_PATH")
let scheme = getEnv("MAPPED_URI_SCHEME")
if scheme == "man":
let (keyword, section) = parseSection(path)
doMan(man, keyword, section)
elif scheme == "man-k":
let (keyword, section) = parseSection(path)
doKeyword(apropos, keyword, section)
elif scheme == "man-l":
doLocal(man, path)
else:
stdout.write("Cha-Control: ConnectionError 1 invalid scheme")
main()
|