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
|
/*
* Prints the option help in a form that is suitable to include in the manpage.
*/
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include "nvidia-installer.h"
#include "option_table.h"
static void print_option(const NVOption *o)
{
char scratch[64], *s;
int j, len;
int omitWhiteSpace;
printf(".TP\n.BI ");
/* Print the name of the option */
/* XXX We should backslashify the '-' characters in o->name. */
if (o->flags & NVOPT_IS_BOOLEAN) {
/* "\-\-name, \-\-no\-name */
printf("\"\\-\\-%s, \\-\\-no\\-%s", o->name, o->name);
} else if (isalnum(o->val)) {
/* "\-c, \-\-name */
printf("\"\\-%c, \\-\\-%s", o->val, o->name);
} else {
/* "\-\-name */
printf("\"\\-\\-%s", o->name);
}
if (o->flags & NVOPT_HAS_ARGUMENT) {
len = strlen(o->name);
for (j = 0; j < len; j++) scratch[j] = toupper(o->name[j]);
scratch[len] = '\0';
printf("=\" \"%s", scratch);
}
printf("\"\n");
/*
* Print the option description: write each character one at a
* time (ugh) so that we can special-case a few characters:
*
* "[" --> "\n.I "
* "]" --> "\n"
* "-" --> "\-"
*
* Brackets are used to mark the text inbetween as italics.
* '-' is special cased so that we can backslashify it.
*
* XXX Each sentence should be on its own line!
*/
omitWhiteSpace = 0;
for (s = o->description; s && *s; s++) {
switch (*s) {
case '[':
printf("\n.I ");
omitWhiteSpace = 0;
break;
case ']':
printf("\n");
omitWhiteSpace = 1;
break;
case '-':
printf("\\-");
omitWhiteSpace = 0;
break;
case ' ':
if (!omitWhiteSpace) {
printf("%c", *s);
}
break;
default:
printf("%c", *s);
omitWhiteSpace = 0;
break;
}
}
printf("\n");
}
int main(int argc, char* argv[])
{
int i;
const NVOption *o;
/* Print the "simple" options, i.e. the ones you get by running
* nvidia-installer --help.
*/
printf(".SH OPTIONS\n");
for (i = 0; __options[i].name; i++) {
o = &__options[i];
if (!(o->flags & OPTION_HELP_ALWAYS))
continue;
if (!o->description)
continue;
print_option(o);
}
/* Print the advanced options. */
printf(".SH \"ADVANCED OPTIONS\"\n");
for (i = 0; __options[i].name; i++) {
o = &__options[i];
if (o->flags & OPTION_HELP_ALWAYS)
continue;
if (!o->description)
continue;
print_option(o);
}
return 0;
}
|