Initial original import from: fuse-2.4.2-2.fc4
[captive.git] / src / client / cmdline / cmd_open.c
1 /* $Id$
2  * client cmdline interface command "open" 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 <captive/client-file.h>
26
27 #include "cmd_open.h"   /* self */
28 #include "cmd_cd.h"     /* for cmdline_path_from_cwd() */
29 #include "main.h"
30 #include "handle.h"
31 #include "utf8.h"
32
33
34 GQuark cmdline_cmd_open_error_quark(void)
35 {
36 GQuark r=0;
37
38         if (!r)
39                 r=g_quark_from_static_string("cmdline-cmd-open");
40
41         return r;
42 }
43
44
45 static int optarg_read;
46 static int optarg_write;
47 static int optarg_random;
48
49 const struct poptOption cmd_open_table[]={
50                 CMDLINE_POPT("read",'r',POPT_ARG_NONE,&optarg_read,
51                                 N_("Open file with 'GNOME_VFS_OPEN_READ' disposition flag"),NULL),
52                 CMDLINE_POPT("write",'w',POPT_ARG_NONE,&optarg_write,
53                                 N_("Open file with 'GNOME_VFS_OPEN_WRITE' disposition flag"),NULL),
54                 CMDLINE_POPT("random",'R',POPT_ARG_NONE,&optarg_random,
55                                 N_("Open file with 'GNOME_VFS_OPEN_RANDOM' disposition flag"),NULL),
56                 CMDLINE_POPT_AUTOHELP
57                 POPT_TABLEEND
58                 };
59
60
61 void cmd_open(const char **cmd_argv,GError **errp)
62 {
63 CaptiveFileObject *captive_file_object;
64 const gchar *filename;
65 GnomeVFSOpenMode mode;
66 const gchar *handle_name;
67
68         g_return_if_fail(!errp || !*errp);
69
70         handle_name=cmd_argv[0];
71         filename=cmdline_path_from_cwd(cmd_argv[1]);
72         mode=0
73                         | (!optarg_read   ? 0 : GNOME_VFS_OPEN_READ)
74                         | (!optarg_write  ? 0 : GNOME_VFS_OPEN_WRITE)
75                         | (!optarg_random ? 0 : GNOME_VFS_OPEN_RANDOM);
76         optarg_read=0;
77         optarg_write=0;
78         optarg_random=0;
79
80         if (!handle_check_not_used(handle_name,errp))
81                 return;
82
83         if (!errvfsresult_to_gerr(errp,captive_file_new_open(
84                         &captive_file_object,   /* captive_file_object_return */
85                         cmdline_captive_vfs_object,     /* captive_vfs_object */
86                         filename,       /* pathname */
87                         mode))) {       /* mode */
88                 err_cleanup(errp);
89                 g_set_error(errp,CMDLINE_CMD_OPEN_ERROR,CMDLINE_CMD_OPEN_ERROR_OPENING_FILE,
90                                 _("Error opening guest-os file '%s'"),CMD_LOCALE_FROM_UTF8_ALLOCA(filename));
91                 return;
92                 }
93
94         handle_set(handle_name,captive_file_object);
95         g_object_unref(captive_file_object);
96 }