+Unicode/UTF8 locale conversion support for 'G_BROKEN_FILENAMES' etc.
[captive.git] / src / client / cmdline / cmd_create.c
1 /* $Id$
2  * client cmdline interface command "create" 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_create.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_create_error_quark(void)
35 {
36 GQuark r=0;
37
38         if (!r)
39                 r=g_quark_from_static_string("cmdline-cmd-create");
40
41         return r;
42 }
43
44
45 static int optarg_read;
46 static int optarg_write;
47 static int optarg_random;
48 static int optarg_exclusive;
49 static int optarg_read_only;
50
51 const struct poptOption cmd_create_table[]={
52                 CMDLINE_POPT("read",'r',POPT_ARG_NONE,&optarg_read,
53                                 N_("Create file with 'GNOME_VFS_OPEN_READ' disposition flag"),NULL),
54                 CMDLINE_POPT("write",'w',POPT_ARG_NONE,&optarg_write,
55                                 N_("Create file with 'GNOME_VFS_OPEN_WRITE' disposition flag"),NULL),
56                 CMDLINE_POPT("random",'R',POPT_ARG_NONE,&optarg_random,
57                                 N_("Create file with 'GNOME_VFS_OPEN_RANDOM' disposition flag"),NULL),
58                 CMDLINE_POPT("exclusive",'x',POPT_ARG_NONE,&optarg_exclusive,
59                                 N_("Create file with exclusive access rights"),NULL),
60                 CMDLINE_POPT("read-only",0,POPT_ARG_NONE,&optarg_read_only,
61                                 N_("Create file with read-only access mode"),NULL),
62                 CMDLINE_POPT_AUTOHELP
63                 POPT_TABLEEND
64                 };
65
66
67 void cmd_create(const char **cmd_argv,GError **errp)
68 {
69 CaptiveFileObject *captive_file_object;
70 const gchar *filename;
71 GnomeVFSOpenMode mode;
72 const gchar *handle_name;
73 gboolean exclusive;
74 gboolean read_only;
75
76         g_return_if_fail(!errp || !*errp);
77
78         handle_name=cmd_argv[0];
79         filename=cmdline_path_from_cwd(cmd_argv[1]);
80         mode=0
81                         | (!optarg_read   ? 0 : GNOME_VFS_OPEN_READ)
82                         | (!optarg_write  ? 0 : GNOME_VFS_OPEN_WRITE)
83                         | (!optarg_random ? 0 : GNOME_VFS_OPEN_RANDOM);
84         optarg_read=0;
85         optarg_write=0;
86         optarg_random=0;
87         exclusive=!!optarg_exclusive;
88         optarg_exclusive=0;
89         read_only=!!optarg_read_only;
90         optarg_read_only=0;
91
92         if (!handle_check_not_used(handle_name,errp))
93                 return;
94
95         if (!errvfsresult_to_gerr(errp,captive_file_new_create(
96                         &captive_file_object,   /* captive_file_object_return */
97                         cmdline_captive_vfs_object,     /* captive_vfs_object */
98                         filename,       /* pathname */
99                         mode,   /* mode */
100                         exclusive,      /* exclusive */
101                         (read_only ? 0400 : 0000)))) {  /* perm */
102                 err_cleanup(errp);
103                 g_set_error(errp,CMDLINE_CMD_CREATE_ERROR,CMDLINE_CMD_CREATE_ERROR_CREATING_FILE,
104                                 _("Error creating guest-os file '%s'"),CMD_LOCALE_FROM_UTF8_ALLOCA(filename));
105                 return;
106                 }
107
108         handle_set(handle_name,captive_file_object);
109         g_object_unref(captive_file_object);
110 }