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
|
/* man.c - Read system documentation
*
* Copyright 2019 makepost <makepost@firemail.cc>
*
* See http://pubs.opengroup.org/onlinepubs/9699919799/utilities/man.html
USE_MAN(NEWTOY(man, "k:M:", TOYFLAG_USR|TOYFLAG_BIN))
config MAN
bool "man"
default n
help
usage: man [-M PATH] [-k STRING] | [SECTION] COMMAND
Read manual page for system command.
-k List pages with STRING in their short description
-M Override $MANPATH
Man pages are divided into 8 sections:
1 commands 2 system calls 3 library functions 4 /dev files
5 file formats 6 games 7 miscellaneous 8 system management
Sections are searched in the order 1 8 3 2 5 4 6 7 unless you specify a
section. Each section has a page called "intro", and there's a global
introduction under "man-pages".
*/
#define FOR_man
#include <toys.h>
GLOBALS(
char *M, *k;
char any, cell, ex, *f, k_done, *line, *m, **sct, **scts, **sufs;
regex_t reg;
)
static void newln()
{
if (FLAG(k)) return;
if (TT.any) putchar('\n');
if (TT.any && TT.cell != 2) putchar('\n'); // gawk alias
TT.any = TT.cell = 0;
}
static void put(char *x)
{
while (*x && (TT.ex || *x != '\n')) TT.any = putchar(*x++);
}
// Substitute with same length or shorter.
static void s(char *x, char *y)
{
int i = strlen(x), j = strlen(y), k, l;
for (k = 0; TT.line[k]; k++) if (!strncmp(x, &TT.line[k], i)) {
memmove(&TT.line[k], y, j);
for (l = k += j; TT.line[l]; l++) TT.line[l] = TT.line[l + i - j];
k--;
}
}
static char start(char *x)
{
return !strncmp(x, TT.line, strlen(x));
}
static void trim(char *x)
{
if (start(x)) while (*x++) TT.line++;
}
static char k(char *s) {
TT.k_done = 2;
if (s) TT.line = s;
return !regexec(&TT.reg, TT.k, 0, 0, 0)||!regexec(&TT.reg, TT.line, 0, 0, 0);
}
static void do_man(char **pline, long len)
{
if (!pline) return newln();
TT.line = *pline;
if (FLAG(k)) {
if (!TT.k_done && !start(".") && !start("'") && k(strstr(*pline, "- ")))
printf("%-20s %s%s", TT.k, "- "+2*(TT.line!=*pline), TT.line);
else if (!TT.k_done && start(".so") && k(basename(*pline + 4)))
printf("%s - See %s", TT.k, TT.line);
} else {
s("\\fB", ""), s("\\fI", ""), s("\\fP", ""), s("\\fR", ""); // bash bold,ita
s("\\(aq", "'"), s("\\(cq", "'"), s("\\(dq", "\""); // bash,rsync quote
s("\\*(lq", "\""), s("\\*(rq", "\""); // gawk quote
s("\\(bu", "*"), s("\\(bv", "|"); // bash symbol
s("\\&", ""), s("\\f(CW", ""); // gawk,rsync fancy
s("\\-", "-"), s("\\(", ""), s("\\^", ""), s("\\e", "\\"); // bash escape
s("\\*(", "#"); // gawk var
if (start(".BR")) trim(".BR "), s(" ", ""); // bash boldpunct
if (start(".IP")) newln(), trim(".IP "); // bash list
if (start(".IR")) trim(".IR "), s(" ", ""); // bash itapunct
trim(".B "); // bash bold
trim(".BI "); // gawk boldita
trim(".FN "); // bash filename
trim(".I "); // bash ita
trim(".if n "); // bash nroff
if (start(".E")) TT.ex = TT.line[2] == 'X'; // stat example
else if (start(".PP")) newln(); // bash paragraph
else if (start(".SM")); // bash small
else if (start(".S")) newln(), put(TT.line + 4), newln(); // bash section
else if (start(".so")) put("See "), put(basename(TT.line + 4)); // lastb
else if (start(".TH")) s("\"", " "), put(TT.line + 4); // gawk,git head
else if (start(".TP")) newln(), TT.cell = 1; // bash table
else if (start(".") || start("\'")); // bash,git garbage
else if (!*TT.line); // emerge
else {
if (TT.cell) TT.cell++;
if (!TT.ex) put(" ");
put(TT.line);
}
}
}
// Open file, decompressing if suffix known.
static int zopen(char *s)
{
int fds[] = {-1, -1};
char **known = TT.sufs, *suf = strrchr(s, '.');
if ((*fds = open(s, O_RDONLY)) == -1) return -1;
while (suf && *known && strcmp(suf, *known++));
if (!suf || !*known) return *fds;
sprintf(toybuf, "%czcat"+2*(suf[1]=='g'), suf[1]);
xpopen_both((char *[]){toybuf, s, 0}, fds);
close(fds[0]);
return fds[1];
}
static char manpath()
{
if (*++TT.sct) return 0;
if (!(TT.m = strsep(&TT.M, ":"))) return 1;
TT.sct = TT.scts;
return 0;
}
// Try opening all the possible file extensions.
static int tryfile(char *name)
{
int dotnum, fd = -1;
char *s = xmprintf("%s/man%s/%s.%s.bz2", TT.m, *TT.sct, name, *TT.sct), **suf;
size_t len = strlen(s) - 4;
for (dotnum = 0; dotnum <= 2; dotnum += 2) {
suf = TT.sufs;
while ((fd == -1) && *suf) strcpy(s + len - dotnum, *suf++), fd = zopen(s);
// Recheck suf in zopen, because for x.1.gz name here it is "".
}
free(s);
return fd;
}
void man_main(void)
{
int fd = -1;
TT.scts = (char *[]) {"1", "8", "3", "2", "5", "4", "6", "7", 0};
TT.sct = TT.scts - 1; // First manpath() read increments.
TT.sufs = (char *[]) {".bz2", ".gz", ".xz", "", 0};
if (!TT.M) TT.M = getenv("MANPATH");
if (!TT.M) TT.M = "/usr/share/man";
if (FLAG(k)) {
char *d, *f;
DIR *dp;
struct dirent *entry;
xregcomp(&TT.reg, TT.k, REG_ICASE|REG_NOSUB);
while (!manpath()) {
d = xmprintf("%s/man%s", TT.m, *TT.sct);
if (!(dp = opendir(d))) continue;
while ((entry = readdir(dp))) {
if (entry->d_name[0] == '.') continue;
f = xmprintf("%s/%s", d, TT.k = entry->d_name);
if (-1 != (fd = zopen(f))) {
TT.k_done = 0;
do_lines(fd, '\n', do_man);
}
free(f);
}
closedir(dp);
free(d);
}
return regfree(&TT.reg);
}
if (!toys.optc) help_exit("which page?");
if (toys.optc == 1) {
if (strchr(*toys.optargs, '/')) fd = zopen(*toys.optargs);
else while ((fd == -1) && !manpath()) fd = tryfile(*toys.optargs);
if (fd == -1) error_exit("no %s", *toys.optargs);
// If they specified a section, look for file in that section
} else {
TT.scts = (char *[]){*toys.optargs, 0}, TT.sct = TT.scts - 1;
while ((fd == -1) && !manpath()) fd = tryfile(toys.optargs[1]);
if (fd == -1) error_exit("section %s no %s", *--TT.sct, toys.optargs[1]);
}
do_lines(fd, '\n', do_man);
}
|