summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErnestas Kulik <ernestask@gnome.org>2017-07-01 14:37:08 +0300
committerCarlos Soriano <csoriano@gnome.org>2018-01-20 00:24:04 +0100
commit9d7d40ed186a53569d05e33599e148f9fbba9a29 (patch)
tree09879bf978c6164cd2b4f3b6d5c73988ddcb325a
parentc2ec2cffbe165e1acf8029222c2dd105c61927ee (diff)
downloadnautilus-9d7d40ed186a53569d05e33599e148f9fbba9a29.tar.gz
Add task batch class
-rw-r--r--src/nautilus-task-batch.c99
-rw-r--r--src/nautilus-task-batch.h35
2 files changed, 134 insertions, 0 deletions
diff --git a/src/nautilus-task-batch.c b/src/nautilus-task-batch.c
new file mode 100644
index 000000000..8a7d9dbbd
--- /dev/null
+++ b/src/nautilus-task-batch.c
@@ -0,0 +1,99 @@
+/* Copyright (C) 2017 Ernestas Kulik <ernestask@gnome.org>
+ *
+ * This file is part of Nautilus.
+ *
+ * Nautilus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Nautilus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Nautilus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#include "nautilus-task-batch.h"
+
+#include "nautilus-task.h"
+
+struct _NautilusTaskBatch
+{
+ GObject parent_instance;
+
+ GList *tasks;
+};
+
+G_DEFINE_TYPE (NautilusTaskBatch, nautilus_task_batch,
+ NAUTILUS_TYPE_TASK)
+
+static void
+finalize (GObject *object)
+{
+ NautilusTaskBatch *self;
+
+ self = NAUTILUS_TASK_BATCH (object);
+
+ g_list_free_full (self->tasks, (GDestroyNotify) g_object_unref);
+ self->tasks = NULL;
+
+ G_OBJECT_CLASS (nautilus_task_batch_parent_class)->finalize (object);
+}
+
+static void
+execute (NautilusTask *task)
+{
+ NautilusTaskBatch *self;
+
+ self = NAUTILUS_TASK_BATCH (task);
+
+ if (self->tasks == NULL)
+ {
+ return;
+ }
+
+ for (GList *i = g_list_reverse (self->tasks); i != NULL; i = i->next)
+ {
+ nautilus_task_execute (NAUTILUS_TASK (i->data));
+ }
+}
+
+static void
+nautilus_task_batch_class_init (NautilusTaskBatchClass *klass)
+{
+ GObjectClass *object_class;
+ NautilusTaskClass *task_class;
+
+ object_class = G_OBJECT_CLASS (klass);
+ task_class = NAUTILUS_TASK_CLASS (klass);
+
+ object_class->finalize = finalize;
+
+ task_class->execute = execute;
+}
+
+static void
+nautilus_task_batch_init (NautilusTaskBatch *self)
+{
+ self->tasks = NULL;
+}
+
+void
+nautilus_task_batch_add_task (NautilusTaskBatch *batch,
+ NautilusTask *task)
+{
+ g_return_if_fail (NAUTILUS_IS_TASK_BATCH (batch));
+
+ batch->tasks = g_list_prepend (batch->tasks, g_object_ref (task));
+}
+
+NautilusTask *
+nautilus_task_batch_new (GCancellable *cancellable)
+{
+ return g_object_new (NAUTILUS_TYPE_TASK_BATCH,
+ "cancellable", cancellable,
+ NULL);
+}
diff --git a/src/nautilus-task-batch.h b/src/nautilus-task-batch.h
new file mode 100644
index 000000000..c18551e11
--- /dev/null
+++ b/src/nautilus-task-batch.h
@@ -0,0 +1,35 @@
+/* Copyright (C) 2017 Ernestas Kulik <ernestask@gnome.org>
+ *
+ * This file is part of Nautilus.
+ *
+ * Nautilus is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * Nautilus is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Nautilus. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NAUTILUS_TASK_BATCH_H
+#define NAUTILUS_TASK_BATCH_H
+
+#include "nautilus-task.h"
+
+#define NAUTILUS_TYPE_TASK_BATCH (nautilus_task_get_type ())
+
+G_DECLARE_FINAL_TYPE (NautilusTaskBatch, nautilus_task_batch,
+ NAUTILUS, TASK_BATCH,
+ NautilusTask)
+
+void nautilus_task_batch_add_task (NautilusTaskBatch *batch,
+ NautilusTask *task);
+
+NautilusTask *nautilus_task_batch_new (GCancellable *cancellable);
+
+#endif