[gnome-online-miners/wip/rishi/insert-share: 5/24] miner: Replace GIOScheduler with GThreadPool and idle GSource
- From: Debarshi Ray <debarshir src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-online-miners/wip/rishi/insert-share: 5/24] miner: Replace GIOScheduler with GThreadPool and idle GSource
- Date: Mon, 5 Sep 2016 15:03:19 +0000 (UTC)
commit 03a93623e982b6281005421af077bf4fe6d4e421
Author: Debarshi Ray <debarshir gnome org>
Date: Fri Sep 2 15:34:49 2016 +0200
miner: Replace GIOScheduler with GThreadPool and idle GSource
https://bugzilla.gnome.org/show_bug.cgi?id=770889
src/gom-miner.c | 45 +++++++++++++++++++++++++++++++--------------
1 files changed, 31 insertions(+), 14 deletions(-)
---
diff --git a/src/gom-miner.c b/src/gom-miner.c
index db6c69e..73c2a04 100644
--- a/src/gom-miner.c
+++ b/src/gom-miner.c
@@ -46,6 +46,10 @@ struct _GomMinerPrivate {
gchar **index_types;
};
+static GThreadPool *cleanup_pool;
+
+static void cleanup_job (gpointer data, gpointer user_data);
+
static void
gom_account_miner_job_free (GomAccountMinerJob *job)
{
@@ -166,6 +170,8 @@ gom_miner_class_init (GomMinerClass *klass)
oclass->constructed = gom_miner_constructed;
oclass->dispose = gom_miner_dispose;
+ cleanup_pool = g_thread_pool_new (cleanup_job, NULL, 1, FALSE, NULL);
+
g_type_class_add_private (klass, sizeof (GomMinerPrivate));
}
@@ -444,10 +450,14 @@ typedef struct {
static gboolean
cleanup_old_accounts_done (gpointer data)
{
- CleanupJob *job = data;
+ GTask *task = G_TASK (data);
+ CleanupJob *job;
GList *l;
GoaObject *object;
- GomMiner *self = job->self;
+ GomMiner *self;
+
+ job = (CleanupJob *) g_task_get_task_data (task);
+ self = job->self;
/* now setup all the current accounts */
for (l = job->content_objects; l != NULL; l = l->next)
@@ -549,20 +559,25 @@ cleanup_datasource_compare (gconstpointer a,
return res;
}
-static gboolean
-cleanup_job (GIOSchedulerJob *sched_job,
- GCancellable *cancellable,
+static void
+cleanup_job (gpointer data,
gpointer user_data)
{
+ GSource *source;
GString *select;
+ GTask *task = G_TASK (data);
GError *error = NULL;
TrackerSparqlCursor *cursor;
const gchar *datasource, *old_version_str;
gint old_version;
GList *element;
- CleanupJob *job = user_data;
- GomMiner *self = job->self;
- GomMinerClass *klass = GOM_MINER_GET_CLASS (self);
+ CleanupJob *job;
+ GomMiner *self;
+ GomMinerClass *klass;
+
+ job = (CleanupJob *) g_task_get_task_data (task);
+ self = job->self;
+ klass = GOM_MINER_GET_CLASS (self);
/* find all our datasources in the tracker DB */
select = g_string_new (NULL);
@@ -624,9 +639,12 @@ cleanup_job (GIOSchedulerJob *sched_job,
cleanup_job_do_cleanup (job);
out:
- g_io_scheduler_job_send_to_mainloop_async (sched_job,
- cleanup_old_accounts_done, job, NULL);
- return FALSE;
+ source = g_idle_source_new ();
+ g_source_set_name (source, "[gnome-online-miners] cleanup_old_accounts_done");
+ g_task_attach_source (task, source, cleanup_old_accounts_done);
+ g_source_unref (source);
+
+ g_object_unref (task);
}
static void
@@ -640,9 +658,8 @@ gom_miner_cleanup_old_accounts (GomMiner *self,
job->content_objects = content_objects;
job->acc_objects = acc_objects;
- g_io_scheduler_push_job (cleanup_job, job, NULL,
- G_PRIORITY_DEFAULT,
- self->priv->cancellable);
+ g_task_set_task_data (self->priv->task, job, NULL);
+ g_thread_pool_push (cleanup_pool, g_object_ref (self->priv->task), NULL);
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]