summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvyasgiridhar <vyasgiridhar27@gmail.com>2017-03-13 22:51:46 +0530
committerCarlos Soriano <csoriano@gnome.org>2017-03-27 20:56:52 +0200
commit89f1113c4d3c1a108b1706fee82b742fbaaa708d (patch)
treeef5c05b7cb21e3215672c8782e652f40f6743a29
parent5462e2d7ff21aedd1f3bdbf1d5b50e219f34ffae (diff)
downloadnautilus-89f1113c4d3c1a108b1706fee82b742fbaaa708d.tar.gz
extraction: check filespace before extraction
Sometimes, the extractions starts without enough filesystem space to store the extracted files. This commit checks for filespace before the extraction takes place. https://bugzilla.gnome.org/show_bug.cgi?id=775253
-rw-r--r--src/nautilus-file-operations.c50
1 files changed, 49 insertions, 1 deletions
diff --git a/src/nautilus-file-operations.c b/src/nautilus-file-operations.c
index 125be8d55..170449794 100644
--- a/src/nautilus-file-operations.c
+++ b/src/nautilus-file-operations.c
@@ -8384,6 +8384,52 @@ extract_job_on_completed (AutoarExtractor *extractor,
}
static void
+extract_job_on_scanned (AutoarExtractor *extractor,
+ guint total_files,
+ gpointer user_data)
+{
+ guint64 total_size;
+ ExtractJob *extract_job;
+ GFile *source_file;
+ g_autofree gchar *basename;
+ gint response_id;
+ GFileInfo *fsinfo;
+ guint64 free_size;
+
+ extract_job = user_data;
+ total_size = autoar_extractor_get_total_size(extractor);
+ source_file = autoar_extractor_get_source_file (extractor);
+ basename = get_basename (source_file);
+
+ fsinfo = g_file_query_filesystem_info (source_file,
+ G_FILE_ATTRIBUTE_FILESYSTEM_FREE ","
+ G_FILE_ATTRIBUTE_FILESYSTEM_READONLY,
+ &extract_job->common.cancellable,
+ NULL);
+ free_size = g_file_info_get_attribute_uint64 (fsinfo,
+ G_FILE_ATTRIBUTE_FILESYSTEM_FREE);
+
+ if (total_size > free_size && total_size != -1)
+ {
+ nautilus_progress_info_take_status (extract_job->common.progress,
+ g_strdup_printf (_("Error extracting ā€œ%sā€"),
+ basename));
+ response_id = run_error (&extract_job->common,
+ g_strdup_printf (_("Not enough free space to extract %s"),basename),
+ NULL,
+ NULL,
+ FALSE,
+ CANCEL,
+ NULL);
+
+ if (response_id == 0 || response_id == GTK_RESPONSE_DELETE_EVENT)
+ {
+ abort_job ((CommonJob *) extract_job);
+ }
+ }
+}
+
+static void
report_extract_final_progress (ExtractJob *extract_job,
gint total_files)
{
@@ -8483,7 +8529,9 @@ extract_task_thread_func (GTask *task,
autoar_extractor_set_notify_interval (extractor,
PROGRESS_NOTIFY_INTERVAL);
-
+ g_signal_connect (extractor, "scanned",
+ G_CALLBACK (extract_job_on_scanned),
+ extract_job);
g_signal_connect (extractor, "error",
G_CALLBACK (extract_job_on_error),
extract_job);