-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.c
166 lines (135 loc) · 3.94 KB
/
plugin.c
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
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "plugin.h"
#include "argconfig.h"
static int version(struct plugin *plugin)
{
struct program *prog = plugin->parent;
if (plugin->name)
printf("%s %s version %s\n", prog->name, plugin->name, prog->version);
else
printf("%s version %s\n", prog->name, prog->version);
return 0;
}
static int help(int argc, char **argv, struct plugin *plugin)
{
char man[0x100];
struct program *prog = plugin->parent;
if (argc == 1) {
general_help(plugin);
return 0;
}
if (plugin->name)
sprintf(man, "%s-%s-%s", prog->name, plugin->name, argv[1]);
else
sprintf(man, "%s-%s", prog->name, argv[1]);
if (execlp("man", "man", man, (char *)NULL)) {
perror(argv[1]);
exit(errno);
}
return 0;
}
void usage(struct plugin *plugin)
{
struct program *prog = plugin->parent;
if (plugin->name)
printf("usage: %s %s %s\n", prog->name, plugin->name, prog->usage);
else
printf("usage: %s %s\n", prog->name, prog->usage);
}
void general_help(struct plugin *plugin)
{
struct program *prog = plugin->parent;
struct plugin *extension;
unsigned i = 0;
printf("%s-%s\n", prog->name, prog->version);
usage(plugin);
printf("\n");
print_word_wrapped(prog->desc, 0, 0);
printf("\n");
if (plugin->desc) {
printf("\n");
print_word_wrapped(plugin->desc, 0, 0);
printf("\n");
}
printf("\nThe following are all implemented sub-commands:\n");
for (; plugin->commands[i]; i++)
printf(" %-*s %s\n", 15, plugin->commands[i]->name,
plugin->commands[i]->help);
printf(" %-*s %s\n", 15, "version", "Shows the program version");
printf(" %-*s %s\n", 15, "help", "Display this help");
printf("\n");
if (plugin->name)
printf("See '%s %s help <command>' for more information on a specific command\n",
prog->name, plugin->name);
else
printf("See '%s help <command>' for more information on a specific command\n",
prog->name);
/* The first plugin is the built-in. If we're not showing help for the
* built-in, don't show the program's other extensions */
if (plugin->name)
return;
extension = prog->extensions->next;
if (!extension)
return;
printf("\nThe following are all installed plugin extensions:\n");
while (extension) {
printf(" %-*s %s\n", 15, extension->name, extension->desc);
extension = extension->next;
}
printf("\nSee '%s <plugin> help' for more information on a plugin\n",
prog->name);
}
int handle_plugin(int argc, char **argv, struct plugin *plugin)
{
unsigned i = 0;
char *str = argv[0];
char use[0x100];
struct plugin *extension;
struct program *prog = plugin->parent;
if (!argc) {
general_help(plugin);
return 0;
}
if (!plugin->name)
sprintf(use, "%s %s <device> [OPTIONS]", prog->name, str);
else
sprintf(use, "%s %s %s <device> [OPTIONS]", prog->name, plugin->name, str);
argconfig_append_usage(use);
/* translate --help and --version into commands */
while (*str == '-')
str++;
for (; plugin->commands[i]; i++) {
struct command *cmd = plugin->commands[i];
if (!strcmp(str, "help"))
return help(argc, argv, plugin);
if (!strcmp(str, "version"))
return version(plugin);
if (strcmp(str, cmd->name))
continue;
return (cmd->fn(argc, argv, cmd, plugin));
}
/* Check extensions only if this is running the built-in plugin */
if (plugin->name) {
printf("ERROR: Invalid sub-command '%s' for plugin %s\n", str, plugin->name);
return -ENOTTY;
}
extension = plugin->next;
while (extension) {
if (!strcmp(str, extension->name))
return handle_plugin(argc - 1, &argv[1], extension);
/* If the command is executed with the extension name and
* command together ("plugin-command"), run the plug in */
if (!strncmp(str, extension->name, strlen(extension->name))) {
argv[0] += strlen(extension->name);
while (*argv[0] == '-')
argv[0]++;
return handle_plugin(argc, &argv[0], extension);
}
extension = extension->next;
}
printf("ERROR: Invalid sub-command '%s'\n", str);
return -ENOTTY;
}