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
|
implement Man, Command;
include "sys.m";
sys: Sys;
include "draw.m";
include "filepat.m";
include "bufio.m";
include "man.m";
Command: module {
init: fn(ctxt: ref Draw->Context, argv: list of string);
};
MANPATH: con "/man/";
PATHDEPTH: con 1;
indices: list of (string, list of (string, string));
usage()
{
sys->fprint(sys->fildes(2), "Usage: man [-f] [0-9] ... name ...\n");
raise "fail:usage";
}
init(nil: ref Draw->Context, argv: list of string)
{
sys = load Sys Sys->PATH;
stderr := sys->fildes(2);
man2txt := load Command "/dis/man2txt.dis";
if (man2txt == nil) {
sys->fprint(stderr, "man: cannot load /dis/man2txt.dis: %r\n");
raise "fail:bad module";
}
argv = tl argv;
sections: list of string;
fflag := 0;
for (; argv != nil; argv = tl argv) {
arg := hd argv;
if (arg == nil)
continue;
if (arg == "-f") {
argv = tl argv;
if (argv == nil || sections != nil)
usage();
fflag = 1;
break;
}
if (!isint(arg))
break;
sections = arg :: sections;
}
if (argv == nil)
usage();
paths := argv;
if (!fflag) {
err := loadsections(sections);
if (err != nil) {
sys->fprint(stderr, "%s\n", err);
raise "fail:error";
}
files := getfiles(sections, argv);
paths = nil;
for (; files != nil; files = tl files) {
(nil, nil, path) := hd files;
paths = path :: paths;
}
paths = sortuniq(paths);
}
man2txt->init(nil, "man2txt" :: paths);
}
loadsections(scanlist: list of string): string
{
sys = load Sys Sys->PATH;
bufio := load Bufio Bufio->PATH;
Iobuf: import bufio;
if (bufio == nil)
return sys->sprint("cannot load %s: %r", Bufio->PATH);
indexpaths: list of string;
if (scanlist == nil) {
filepat := load Filepat Filepat->PATH;
if (filepat == nil)
return sys->sprint("cannot load %s: %r", Filepat->PATH);
indexpaths = filepat->expand(MANPATH + "[0-9]*/INDEX");
if (indexpaths == nil)
return sys->sprint("cannot find man pages");
} else {
for (; scanlist != nil; scanlist = tl scanlist)
indexpaths = MANPATH + string hd scanlist + "/INDEX" :: indexpaths;
indexpaths = sortuniq(indexpaths);
}
sections: list of string;
for (; indexpaths != nil; indexpaths = tl indexpaths) {
path := hd indexpaths;
(n, toks) := sys->tokenize(path, "/");
for (d := 0; d < PATHDEPTH; d++)
toks = tl toks;
sections = hd toks :: sections;
}
for (sl := sections; sl != nil; sl = tl sl) {
section := hd sl;
path := MANPATH + string section + "/INDEX";
iob := bufio->open(path, Sys->OREAD);
if (iob == nil)
continue;
pairs: list of (string, string) = nil;
while((s := iob.gets('\n')) != nil) {
if (s[len s - 1] == '\n')
s = s[0:len s - 1];
(n, toks) := sys->tokenize(s, " ");
if (n != 2)
continue;
pairs = (hd toks, hd tl toks) :: pairs;
}
iob.close();
indices = (section, pairs) :: indices;
}
return nil;
}
getfiles(sections: list of string, keys: list of string): list of (int, string, string)
{
ixl: list of (string, list of (string, string));
if (sections == nil)
ixl = indices;
else {
for (; sections != nil; sections = tl sections) {
section := hd sections;
for (il := indices; il != nil; il = tl il) {
(s, mapl) := hd il;
if (s == section) {
ixl = (s, mapl) :: ixl;
break;
}
}
}
}
paths: list of (int, string, string);
for(keyl := keys; keyl != nil; keyl = tl keyl){
for (; ixl != nil; ixl = tl ixl) {
for ((s, mapl) := hd ixl; mapl != nil; mapl = tl mapl) {
(kw, file) := hd mapl;
if (hd keyl == kw) {
p := MANPATH + s + "/" + file;
paths = (int s, kw, p) :: paths;
}
}
# allow files not in the index
if(paths == nil || (hd paths).t0 != int s || (hd paths).t1 != hd keyl){
p := MANPATH + string s + "/" + hd keyl;
if(sys->stat(p).t0 != -1)
paths = (int s, hd keyl, p) :: paths;
}
}
}
return paths;
}
sortuniq(strlist: list of string): list of string
{
strs := array [len strlist] of string;
for (i := 0; strlist != nil; (i, strlist) = (i+1, tl strlist))
strs[i] = hd strlist;
# simple sort (greatest first)
for (i = 0; i < len strs - 1; i++) {
for (j := i+1; j < len strs; j++)
if (strs[i] < strs[j])
(strs[i], strs[j]) = (strs[j], strs[i]);
}
# construct list (result is ascending)
r: list of string;
prev := "";
for (i = 0; i < len strs; i++) {
if (strs[i] != prev) {
r = strs[i] :: r;
prev = strs[i];
}
}
return r;
}
isint(s: string): int
{
for (i := 0; i < len s; i++)
if (s[i] < '0' || s[i] > '9')
return 0;
return 1;
}
|