Initial original import from: fuse-2.4.2-2.fc4
[captive.git] / src / client / cmdline / cmd_help.c
1 /* $Id$
2  * client cmdline interface command "help" for libcaptive
3  * Copyright (C) 2003 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "config.h"
21
22 #include <glib/gmessages.h>
23 #include <glib/gerror.h>
24 #include <popt.h>
25 #include <stdlib.h>
26 #include <string.h>
27 #include <stdio.h>
28
29 #include "cmd_help.h"   /* self */
30 #include "main.h"       /* for cmdline_command_table */
31
32
33 GQuark cmdline_cmd_help_error_quark(void)
34 {
35 GQuark r=0;
36
37         if (!r)
38                 r=g_quark_from_static_string("cmdline-cmd-help");
39
40         return r;
41 }
42
43
44 const struct poptOption cmd_help_table[]={
45                 CMDLINE_POPT_AUTOHELP
46                 POPT_TABLEEND
47                 };
48
49
50 void cmd_help(const char **cmd_argv,GError **errp)
51 {
52 const struct cmdline_command *commandp;
53 int cmd_name_maxlen;
54
55         g_return_if_fail(!errp || !*errp);
56
57         if (cmd_argv[0]) {
58 const char *cmd_help_argv[3];
59
60                 cmd_help_argv[0]=cmd_argv[0];
61                 cmd_help_argv[1]="--help";
62                 cmd_help_argv[2]=NULL;
63                 invoke_cmd(2,cmd_help_argv);
64                 return;
65                 }
66
67         cmd_name_maxlen=0;
68         for (commandp=cmdline_command_table+1;commandp->name;commandp++)
69                 cmd_name_maxlen=MAX(cmd_name_maxlen,(int)strlen(commandp->name));
70         for (commandp=cmdline_command_table+1;commandp->name;commandp++)
71                 printf("%-*s\t%s\n",cmd_name_maxlen,commandp->name,_(commandp->description));
72 }