[gnome-photos/wip/search: 6/18] Add PhotosFetchIdsJob



commit 8696758af9a6ad54f922d3e6b5065af961b835e2
Author: Debarshi Ray <debarshir gnome org>
Date:   Sat Feb 8 11:00:36 2014 +0100

    Add PhotosFetchIdsJob

 src/Makefile.am            |    2 +
 src/photos-fetch-ids-job.c |  245 ++++++++++++++++++++++++++++++++++++++++++++
 src/photos-fetch-ids-job.h |   85 +++++++++++++++
 3 files changed, 332 insertions(+), 0 deletions(-)
---
diff --git a/src/Makefile.am b/src/Makefile.am
index bea51e0..c04376b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -102,6 +102,8 @@ gnome_photos_SOURCES = \
        photos-fetch-collection-state-job.h \
        photos-fetch-collections-job.c \
        photos-fetch-collections-job.h \
+       photos-fetch-ids-job.c \
+       photos-fetch-ids-job.h \
        photos-filterable.c \
        photos-filterable.h \
        photos-flickr-item.c \
diff --git a/src/photos-fetch-ids-job.c b/src/photos-fetch-ids-job.c
new file mode 100644
index 0000000..8537570
--- /dev/null
+++ b/src/photos-fetch-ids-job.c
@@ -0,0 +1,245 @@
+/*
+ * Photos - access, organize and share your photos on GNOME
+ * Copyright © 2014 Red Hat, Inc.
+ *
+ * This program 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.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/* Based on code from:
+ *   + Documents
+ */
+
+
+#include "config.h"
+
+#include <glib.h>
+#include <tracker-sparql.h>
+
+#include "photos-fetch-ids-job.h"
+#include "photos-query.h"
+#include "photos-query-builder.h"
+#include "photos-tracker-queue.h"
+
+
+struct _PhotosFetchIdsJobPrivate
+{
+  GCancellable *cancellable;
+  GPtrArray *ids;
+  PhotosFetchIdsJobCallback callback;
+  PhotosTrackerQueue *queue;
+  gchar **terms;
+  gpointer user_data;
+};
+
+enum
+{
+  PROP_0,
+  PROP_TERMS
+};
+
+
+G_DEFINE_TYPE_WITH_PRIVATE (PhotosFetchIdsJob, photos_fetch_ids_job, G_TYPE_OBJECT);
+
+
+static void
+photos_fetch_ids_job_emit_callback (PhotosFetchIdsJob *self)
+{
+  PhotosFetchIdsJobPrivate *priv = self->priv;
+
+  if (priv->callback == NULL)
+    return;
+
+  g_ptr_array_add (priv->ids, NULL);
+  (*priv->callback) ((const gchar *const *) priv->ids->pdata, priv->user_data);
+}
+
+
+static void
+photos_fetch_ids_job_cursor_next (GObject *source_object, GAsyncResult *res, gpointer user_data)
+{
+  PhotosFetchIdsJob *self = PHOTOS_FETCH_IDS_JOB (user_data);
+  PhotosFetchIdsJobPrivate *priv = self->priv;
+  TrackerSparqlCursor *cursor = TRACKER_SPARQL_CURSOR (source_object);
+  GError *error;
+  gboolean valid;
+  const gchar *id;
+
+  error = NULL;
+  valid = tracker_sparql_cursor_next_finish (cursor, res, &error);
+  if (error != NULL)
+    {
+      g_warning ("Unable to read results of FetchIdsJob: %s", error->message);
+      g_error_free (error);
+      goto end;
+    }
+  if(!valid)
+    goto end;
+
+  id = tracker_sparql_cursor_get_string (cursor, PHOTOS_QUERY_COLUMNS_URN, NULL);
+  g_ptr_array_add (priv->ids, g_strdup (id));
+
+  tracker_sparql_cursor_next_async (cursor, priv->cancellable, photos_fetch_ids_job_cursor_next, self);
+  return;
+
+ end:
+  photos_fetch_ids_job_emit_callback (self);
+  tracker_sparql_cursor_close (cursor);
+  g_object_unref (self);
+}
+
+
+static void
+photos_fetch_ids_job_query_executed (GObject *source_object, GAsyncResult *res, gpointer user_data)
+{
+  PhotosFetchIdsJob *self = PHOTOS_FETCH_IDS_JOB (user_data);
+  TrackerSparqlConnection *connection = TRACKER_SPARQL_CONNECTION (source_object);
+  TrackerSparqlCursor *cursor;
+  GError *error;
+
+  error = NULL;
+  cursor = tracker_sparql_connection_query_finish (connection, res, &error);
+  if (error != NULL)
+    {
+      g_warning ("Unable to run FetchIdsJob: %s", error->message);
+      g_error_free (error);
+      photos_fetch_ids_job_emit_callback (self);
+      return;
+    }
+
+  tracker_sparql_cursor_next_async (cursor,
+                                    self->priv->cancellable,
+                                    photos_fetch_ids_job_cursor_next,
+                                    g_object_ref (self));
+  g_object_unref (cursor);
+}
+
+
+static void
+photos_fetch_ids_job_dispose (GObject *object)
+{
+  PhotosFetchIdsJob *self = PHOTOS_FETCH_IDS_JOB (object);
+  PhotosFetchIdsJobPrivate *priv = self->priv;
+
+  g_clear_pointer (&priv->ids, (GDestroyNotify) g_ptr_array_unref);
+  g_clear_object (&priv->cancellable);
+  g_clear_object (&priv->queue);
+
+  G_OBJECT_CLASS (photos_fetch_ids_job_parent_class)->dispose (object);
+}
+
+
+static void
+photos_fetch_ids_job_finalize (GObject *object)
+{
+  PhotosFetchIdsJob *self = PHOTOS_FETCH_IDS_JOB (object);
+
+  g_strfreev (self->priv->terms);
+
+  G_OBJECT_CLASS (photos_fetch_ids_job_parent_class)->finalize (object);
+}
+
+
+static void
+photos_fetch_ids_job_set_property (GObject *object, guint prop_id, const GValue *value, GParamSpec *pspec)
+{
+  PhotosFetchIdsJob *self = PHOTOS_FETCH_IDS_JOB (object);
+
+  switch (prop_id)
+    {
+    case PROP_TERMS:
+      self->priv->terms = g_value_dup_boxed (value);
+      break;
+
+    default:
+      G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
+      break;
+    }
+}
+
+
+static void
+photos_fetch_ids_job_init (PhotosFetchIdsJob *self)
+{
+  PhotosFetchIdsJobPrivate *priv = self->priv;
+
+  self->priv = photos_fetch_ids_job_get_instance_private (self);
+  priv = self->priv;
+
+  priv->ids = g_ptr_array_new_with_free_func (g_free);
+  priv->queue = photos_tracker_queue_dup_singleton (NULL, NULL);
+}
+
+
+static void
+photos_fetch_ids_job_class_init (PhotosFetchIdsJobClass *class)
+{
+  GObjectClass *object_class = G_OBJECT_CLASS (class);
+
+  object_class->dispose = photos_fetch_ids_job_dispose;
+  object_class->finalize = photos_fetch_ids_job_finalize;
+  object_class->set_property = photos_fetch_ids_job_set_property;
+
+  g_object_class_install_property (object_class,
+                                   PROP_TERMS,
+                                   g_param_spec_boxed ("terms",
+                                                       "Search terms",
+                                                       "Search terms entered by the user",
+                                                       G_TYPE_STRV,
+                                                       G_PARAM_CONSTRUCT_ONLY | G_PARAM_WRITABLE));
+}
+
+
+PhotosFetchIdsJob *
+photos_fetch_ids_job_new (const gchar *const *terms)
+{
+  return g_object_new (PHOTOS_TYPE_FETCH_IDS_JOB, "terms", terms, NULL);
+}
+
+
+void
+photos_fetch_ids_job_run (PhotosFetchIdsJob *self,
+                          PhotosSearchContextState *state,
+                          GCancellable *cancellable,
+                          PhotosFetchIdsJobCallback callback,
+                          gpointer user_data)
+{
+  PhotosFetchIdsJobPrivate *priv = self->priv;
+  PhotosQuery *query;
+
+  priv->callback = callback;
+  priv->user_data = user_data;
+
+  if (G_UNLIKELY (priv->queue == NULL))
+    {
+      photos_fetch_ids_job_emit_callback (self);
+      return;
+    }
+
+  g_clear_object (&priv->cancellable);
+  if (cancellable != NULL)
+    priv->cancellable = g_object_ref (cancellable);
+
+  /* TODO: search controller */
+
+  query = photos_query_builder_global_query (state, PHOTOS_QUERY_FLAGS_NONE, NULL);
+  photos_tracker_queue_select (priv->queue,
+                               query->sparql,
+                               priv->cancellable,
+                               photos_fetch_ids_job_query_executed,
+                               g_object_ref (self),
+                               g_object_unref);
+  photos_query_free (query);
+}
diff --git a/src/photos-fetch-ids-job.h b/src/photos-fetch-ids-job.h
new file mode 100644
index 0000000..8aa6bf1
--- /dev/null
+++ b/src/photos-fetch-ids-job.h
@@ -0,0 +1,85 @@
+/*
+ * Photos - access, organize and share your photos on GNOME
+ * Copyright © 2014 Red Hat, Inc.
+ *
+ * This program 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.
+ *
+ * This program 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 this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
+ * 02110-1301, USA.
+ */
+
+/* Based on code from:
+ *   + Documents
+ */
+
+#ifndef PHOTOS_FETCH_IDS_JOB_H
+#define PHOTOS_FETCH_IDS_JOB_H
+
+#include <gio/gio.h>
+
+#include "photos-search-context.h"
+
+G_BEGIN_DECLS
+
+#define PHOTOS_TYPE_FETCH_IDS_JOB (photos_fetch_ids_job_get_type ())
+
+#define PHOTOS_FETCH_IDS_JOB(obj) \
+  (G_TYPE_CHECK_INSTANCE_CAST ((obj), \
+   PHOTOS_TYPE_FETCH_IDS_JOB, PhotosFetchIdsJob))
+
+#define PHOTOS_FETCH_IDS_JOB_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_CAST ((klass), \
+   PHOTOS_TYPE_FETCH_IDS_JOB, PhotosFetchIdsJobClass))
+
+#define PHOTOS_IS_FETCH_IDS_JOB(obj) \
+  (G_TYPE_CHECK_INSTANCE_TYPE ((obj), \
+   PHOTOS_TYPE_FETCH_IDS_JOB))
+
+#define PHOTOS_IS_FETCH_IDS_JOB_CLASS(klass) \
+  (G_TYPE_CHECK_CLASS_TYPE ((klass), \
+   PHOTOS_TYPE_FETCH_IDS_JOB))
+
+#define PHOTOS_FETCH_IDS_JOB_GET_CLASS(obj) \
+  (G_TYPE_INSTANCE_GET_CLASS ((obj), \
+   PHOTOS_TYPE_FETCH_IDS_JOB, PhotosFetchIdsJobClass))
+
+typedef void (*PhotosFetchIdsJobCallback) (const gchar *const *, gpointer);
+
+typedef struct _PhotosFetchIdsJob        PhotosFetchIdsJob;
+typedef struct _PhotosFetchIdsJobClass   PhotosFetchIdsJobClass;
+typedef struct _PhotosFetchIdsJobPrivate PhotosFetchIdsJobPrivate;
+
+struct _PhotosFetchIdsJob
+{
+  GObject parent_instance;
+  PhotosFetchIdsJobPrivate *priv;
+};
+
+struct _PhotosFetchIdsJobClass
+{
+  GObjectClass parent_class;
+};
+
+GType                photos_fetch_ids_job_get_type          (void) G_GNUC_CONST;
+
+PhotosFetchIdsJob   *photos_fetch_ids_job_new               (const gchar *const *terms);
+
+void                 photos_fetch_ids_job_run               (PhotosFetchIdsJob *self,
+                                                             PhotosSearchContextState *state,
+                                                             GCancellable *cancellable,
+                                                             PhotosFetchIdsJobCallback callback,
+                                                             gpointer user_data);
+
+G_END_DECLS
+
+#endif /* PHOTOS_FETCH_IDS_JOB_H */


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