[gnome-online-miners/wip/rishi/insert-share: 12/14] miner: Don't use an instance variable for the list of pending jobs



commit 9ae40755478ce4248ff239bf649867f176b4d8e6
Author: Debarshi Ray <debarshir gnome org>
Date:   Fri Sep 2 17:58:37 2016 +0200

    miner: Don't use an instance variable for the list of pending jobs
    
    The list of pending GomAccountMinerJobs is specific to each invocation
    of gom_miner_refresh_db_async. It shouldn't be instance wide.

 src/gom-miner.c |   54 +++++++++++++++++++++++++++++-------------------------
 1 files changed, 29 insertions(+), 25 deletions(-)
---
diff --git a/src/gom-miner.c b/src/gom-miner.c
index 9f70507..33d261d 100644
--- a/src/gom-miner.c
+++ b/src/gom-miner.c
@@ -37,12 +37,18 @@ struct _GomMinerPrivate {
   TrackerSparqlConnection *connection;
   GError *connection_error;
 
-  GList *pending_jobs;
-
   gchar *display_name;
   gchar **index_types;
 };
 
+typedef struct {
+  GomMiner *self;
+  GList *content_objects;
+  GList *acc_objects;
+  GList *old_datasources;
+  GList *pending_jobs;
+} CleanupJob;
+
 static GThreadPool *cleanup_pool;
 
 static void cleanup_job (gpointer data, gpointer user_data);
@@ -70,13 +76,6 @@ gom_miner_dispose (GObject *object)
 {
   GomMiner *self = GOM_MINER (object);
 
-  if (self->priv->pending_jobs != NULL)
-    {
-      g_list_free_full (self->priv->pending_jobs,
-                        (GDestroyNotify) gom_account_miner_job_free);
-      self->priv->pending_jobs = NULL;
-    }
-
   g_clear_object (&self->priv->client);
   g_clear_object (&self->priv->connection);
 
@@ -168,10 +167,17 @@ gom_miner_class_init (GomMinerClass *klass)
 }
 
 static void
-gom_miner_check_pending_jobs (GomMiner *self, GTask *task)
+gom_miner_check_pending_jobs (GTask *task)
 {
-  if (g_list_length (self->priv->pending_jobs) == 0)
-    g_task_return_boolean (task, TRUE);
+  CleanupJob *cleanup_job;
+
+  cleanup_job = (CleanupJob *) g_task_get_task_data (task);
+
+  if (g_list_length (cleanup_job->pending_jobs) > 0)
+    return;
+
+  g_task_return_boolean (task, TRUE);
+  g_slice_free (CleanupJob, cleanup_job);
 }
 
 static void
@@ -391,10 +397,13 @@ miner_job_process_ready_cb (GObject *source,
                             GAsyncResult *res,
                             gpointer user_data)
 {
+  CleanupJob *cleanup_job;
   GomAccountMinerJob *account_miner_job = user_data;
   GomMiner *self = account_miner_job->miner;
   GError *error = NULL;
 
+  cleanup_job = (CleanupJob *) g_task_get_task_data (account_miner_job->parent_task);
+
   gom_account_miner_job_process_finish (res, &error);
 
   if (error != NULL)
@@ -405,10 +414,10 @@ miner_job_process_ready_cb (GObject *source,
       g_error_free (error);
     }
 
-  self->priv->pending_jobs = g_list_remove (self->priv_job->pending_jobs,
-                                            account_miner_job);
+  cleanup_job->pending_jobs = g_list_remove (cleanup_job->pending_jobs,
+                                             account_miner_job);
 
-  gom_miner_check_pending_jobs (self, account_miner_job->parent_task);
+  gom_miner_check_pending_jobs (account_miner_job->parent_task);
   gom_account_miner_job_free (account_miner_job);
 }
 
@@ -417,21 +426,17 @@ gom_miner_setup_account (GomMiner *self,
                          GoaObject *object,
                          GTask *task)
 {
+  CleanupJob *cleanup_job;
   GomAccountMinerJob *account_miner_job;
 
+  cleanup_job = (CleanupJob *) g_task_get_task_data (task);
+
   account_miner_job = gom_account_miner_job_new (self, object, task);
-  self->priv->pending_jobs = g_list_prepend (self->priv->pending_jobs, account_miner_job);
+  cleanup_job->pending_jobs = g_list_prepend (cleanup_job->pending_jobs, account_miner_job);
 
   gom_account_miner_job_process_async (account_miner_job, miner_job_process_ready_cb, account_miner_job);
 }
 
-typedef struct {
-  GomMiner *self;
-  GList *content_objects;
-  GList *acc_objects;
-  GList *old_datasources;
-} CleanupJob;
-
 static gboolean
 cleanup_old_accounts_done (gpointer data)
 {
@@ -471,10 +476,9 @@ cleanup_old_accounts_done (gpointer data)
       job->old_datasources = NULL;
     }
 
-  gom_miner_check_pending_jobs (self, task);
+  gom_miner_check_pending_jobs (task);
 
   g_clear_object (&job->self);
-  g_slice_free (CleanupJob, job);
 
   return FALSE;
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]