2 * Copyright 2015 Red Hat, Inc.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
17 * Author: Matthias Clasen <mclasen@redhat.com>
31 static gboolean no_target_directory
= FALSE
;
32 static gboolean progress
= FALSE
;
33 static gboolean interactive
= FALSE
;
34 static gboolean backup
= FALSE
;
35 static gboolean no_copy_fallback
= FALSE
;
37 static const GOptionEntry entries
[] = {
38 { "no-target-directory", 'T', 0, G_OPTION_ARG_NONE
, &no_target_directory
, N_("No target directory"), NULL
},
39 { "progress", 'p', 0, G_OPTION_ARG_NONE
, &progress
, N_("Show progress"), NULL
},
40 { "interactive", 'i', 0, G_OPTION_ARG_NONE
, &interactive
, N_("Prompt before overwrite"), NULL
},
41 { "backup", 'b', 0, G_OPTION_ARG_NONE
, &backup
, N_("Backup existing destination files"), NULL
},
42 { "no-copy-fallback", 'C', 0, G_OPTION_ARG_NONE
, &no_copy_fallback
, N_("Don’t use copy and delete fallback"), NULL
},
46 static gint64 start_time
;
47 static gint64 previous_time
;
50 show_progress (goffset current_num_bytes
,
51 goffset total_num_bytes
,
55 char *current_size
, *total_size
, *rate
;
57 tv
= g_get_monotonic_time ();
58 if (tv
- previous_time
< (G_USEC_PER_SEC
/ 5) &&
59 current_num_bytes
!= total_num_bytes
)
62 current_size
= g_format_size (current_num_bytes
);
63 total_size
= g_format_size (total_num_bytes
);
64 rate
= g_format_size (current_num_bytes
/
65 MAX ((tv
- start_time
) / G_USEC_PER_SEC
, 1));
67 g_print (_("Transferred %s out of %s (%s/s)"),
68 current_size
, total_size
, rate
);
72 g_free (current_size
);
78 handle_move (int argc
, char *argv
[], gboolean do_help
)
80 GOptionContext
*context
;
83 GFile
*source
, *dest
, *target
;
91 g_set_prgname ("gio move");
93 /* Translators: commandline placeholder */
94 param
= g_strdup_printf ("%s... %s", _("SOURCE"), _("DESTINATION"));
95 context
= g_option_context_new (param
);
97 g_option_context_set_help_enabled (context
, FALSE
);
98 g_option_context_set_summary (context
,
99 _("Move one or more files from SOURCE to DEST."));
100 g_option_context_set_description (context
,
101 _("gio move is similar to the traditional mv utility, but using GIO\n"
102 "locations instead of local files: for example, you can use something\n"
103 "like smb://server/resource/file.txt as location"));
104 g_option_context_add_main_entries (context
, entries
, GETTEXT_PACKAGE
);
108 show_help (context
, NULL
);
112 if (!g_option_context_parse (context
, &argc
, &argv
, &error
))
114 show_help (context
, error
->message
);
115 g_error_free (error
);
116 g_option_context_free (context
);
122 show_help (context
, NULL
);
123 g_option_context_free (context
);
127 dest
= g_file_new_for_commandline_arg (argv
[argc
- 1]);
129 if (no_target_directory
&& argc
> 3)
131 show_help (context
, NULL
);
132 g_object_unref (dest
);
133 g_option_context_free (context
);
137 dest_is_dir
= file_is_dir (dest
);
139 if (!dest_is_dir
&& argc
> 3)
142 message
= g_strdup_printf (_("Target %s is not a directory"), argv
[argc
- 1]);
143 show_help (context
, message
);
145 g_object_unref (dest
);
146 g_option_context_free (context
);
150 g_option_context_free (context
);
152 for (i
= 1; i
< argc
- 1; i
++)
154 source
= g_file_new_for_commandline_arg (argv
[i
]);
156 if (dest_is_dir
&& !no_target_directory
)
158 basename
= g_file_get_basename (source
);
159 target
= g_file_get_child (dest
, basename
);
163 target
= g_object_ref (dest
);
167 flags
|= G_FILE_COPY_BACKUP
;
169 flags
|= G_FILE_COPY_OVERWRITE
;
170 if (no_copy_fallback
)
171 flags
|= G_FILE_COPY_NO_FALLBACK_FOR_MOVE
;
174 start_time
= g_get_monotonic_time ();
175 if (!g_file_move (source
, target
, flags
, NULL
, progress
? show_progress
: NULL
, NULL
, &error
))
177 if (interactive
&& g_error_matches (error
, G_IO_ERROR
, G_IO_ERROR_EXISTS
))
181 g_error_free (error
);
184 uri
= g_file_get_uri (target
);
185 g_print (_("%s: overwrite “%s”? "), argv
[0], uri
);
187 if (fgets (line
, sizeof (line
), stdin
) &&
188 (line
[0] == 'y' || line
[0] == 'Y'))
190 flags
|= G_FILE_COPY_OVERWRITE
;
191 start_time
= g_get_monotonic_time ();
192 if (!g_file_move (source
, target
, flags
, NULL
, progress
? show_progress
: NULL
, NULL
, &error
))
199 print_file_error (source
, error
->message
);
200 g_error_free (error
);
205 if (progress
&& retval
== 0)
208 g_object_unref (source
);
209 g_object_unref (target
);
212 g_object_unref (dest
);