Fixed 'command_name --help' to prevent exit of captive-cmdline(1).
[captive.git] / src / client / cmdline / cmd_info.c
1 /* $Id$
2  * client cmdline interface command "info" 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 <captive/client-file.h>
28
29 #include "cmd_info.h"   /* self */
30 #include "cmd_cd.h"     /* for cmdline_path_from_cwd() */
31 #include "main.h"
32 #include "file_info.h"
33
34
35 GQuark cmdline_cmd_info_error_quark(void)
36 {
37 GQuark r=0;
38
39         if (!r)
40                 r=g_quark_from_static_string("cmdline-cmd-info");
41
42         return r;
43 }
44
45
46 const struct poptOption cmd_info_table[]={
47                 CMDLINE_POPT_AUTOHELP
48                 POPT_TABLEEND
49                 };
50
51
52 void cmd_info(const char **cmd_argv,GError **errp)
53 {
54 CaptiveFileObject *captive_file_object;
55 GnomeVFSFileInfo file_info;
56 const gchar *filepath;
57
58         g_return_if_fail(!errp || !*errp);
59
60         filepath=cmdline_path_from_cwd(cmd_argv[0]);
61
62         if (!errvfsresult_to_gerr(errp,captive_file_new_open(
63                         &captive_file_object,   /* captive_file_object_return */
64                         cmdline_captive_vfs_object,     /* captive_vfs_object */
65                         filepath,       /* pathname */
66                         GNOME_VFS_OPEN_READ))) {        /* mode */
67                 err_cleanup(errp);
68                 g_set_error(errp,CMDLINE_CMD_INFO_ERROR,CMDLINE_CMD_INFO_ERROR_CANNOT_OPEN_FILE,
69                                 _("Cannot open file: %s"),filepath);
70                 return;
71                 }
72
73         if (!errvfsresult_to_gerr(errp,captive_file_file_info_get(
74                         captive_file_object,    /* captive_file_object */
75                         &file_info))) { /* file_info */
76                 err_cleanup(errp);
77                 g_set_error(errp,CMDLINE_CMD_INFO_ERROR,CMDLINE_CMD_INFO_ERROR_GETTING_FILE_INFO,
78                                 _("Cannot get file information about: %s"),filepath);
79                 goto err_unref;
80                 }
81         file_info_dump_full(&file_info,errp);
82         if (*errp)
83                 goto err_unref;
84
85 err_unref:
86         g_object_unref(captive_file_object);
87 }