[tracker/tracker-0.8] tracker-search: Added --emails



commit 73f6dba0278fa42bb0913d9c52a901ddffe76385
Author: Martyn Russell <martyn lanedo com>
Date:   Thu May 6 08:49:00 2010 +0100

    tracker-search: Added --emails

 docs/manpages/tracker-search.1     |   13 ++--
 src/tracker-utils/tracker-search.c |  138 ++++++++++++++++++++++++++++++++++--
 2 files changed, 139 insertions(+), 12 deletions(-)
---
diff --git a/docs/manpages/tracker-search.1 b/docs/manpages/tracker-search.1
index 0b2572c..b45292b 100644
--- a/docs/manpages/tracker-search.1
+++ b/docs/manpages/tracker-search.1
@@ -52,15 +52,15 @@ Search for files of any type matching \fIEXPRESSION\fR (optional).
 .B \-e, \-\-folders=EXPRESSION
 Search for folders matching \fIEXPRESSION\fR (optional).
 .TP
-.B \-b, \-\-music-albums=ALBUM
+.B \-m, \-\-music=EXPRESSION
+Search for music files matching \fIEXPRESSION\fR (optional).
+.TP
+.B \-u, \-\-music-albums=ALBUM
 Search for music albums matching \fIALBUM\fR (optional).
 .TP
-.B \-s, \-\-music-artists=ARTIST
+.B \-c, \-\-music-artists=ARTIST
 Search for music artists matching \fIARTIST\fR (optional).
 .TP
-.B \-m, \-\-music=EXPRESSION
-Search for music files matching \fIEXPRESSION\fR (optional).
-.TP
 .B \-l, \-\-images=EXPRESSION
 Search for images matching \fIEXPRESSION\fR (optional).
 .TP
@@ -70,6 +70,9 @@ Search for videos matching \fIEXPRESSION\fR (optional).
 .B \-t, \-\-documents=EXPRESSION
 Search for documents matching \fIEXPRESSION\fR (optional).
 .TP
+.B \-t, \-\-emails=EXPRESSION
+Search for emails matching \fIEXPRESSION\fR (optional).
+.TP
 .B \-V, \-\-version
 Print version.
 
diff --git a/src/tracker-utils/tracker-search.c b/src/tracker-utils/tracker-search.c
index bb05603..b894d69 100644
--- a/src/tracker-utils/tracker-search.c
+++ b/src/tracker-utils/tracker-search.c
@@ -54,6 +54,7 @@ static gboolean music_files;
 static gboolean image_files;
 static gboolean video_files;
 static gboolean document_files;
+static gboolean emails;
 static gboolean print_version;
 
 static GOptionEntry entries[] = {
@@ -81,20 +82,20 @@ static GOptionEntry entries[] = {
 	  N_("Search for files"),
 	  NULL
 	},
-	{ "folders", 'e', 0, G_OPTION_ARG_NONE, &folders,
+	{ "folders", 's', 0, G_OPTION_ARG_NONE, &folders,
 	  N_("Search for folders"),
 	  NULL
 	},
-	{ "music-albums", 'b', 0, G_OPTION_ARG_NONE, &music_albums,
-	  N_("Search for music albums (--all has no effect on this)"),
+	{ "music", 'm', 0, G_OPTION_ARG_NONE, &music_files,
+	  N_("Search for music files"),
 	  NULL
 	},
-	{ "music-artists", 's', 0, G_OPTION_ARG_NONE, &music_artists,
-	  N_("Search for music artists (--all has no effect on this) "),
+	{ "music-albums", 'u', 0, G_OPTION_ARG_NONE, &music_albums,
+	  N_("Search for music albums (--all has no effect on this)"),
 	  NULL
 	},
-	{ "music", 'm', 0, G_OPTION_ARG_NONE, &music_files,
-	  N_("Search for music files"),
+	{ "music-artists", 'c', 0, G_OPTION_ARG_NONE, &music_artists,
+	  N_("Search for music artists (--all has no effect on this) "),
 	  NULL
 	},
 	{ "images", 'i', 0, G_OPTION_ARG_NONE, &image_files,
@@ -109,6 +110,10 @@ static GOptionEntry entries[] = {
 	  N_("Search for document files"),
 	  NULL
 	},
+	{ "emails", 'e', 0, G_OPTION_ARG_NONE, &emails,
+	  N_("Search for emails"),
+	  NULL
+	},
 	{ "version", 'V', 0, G_OPTION_ARG_NONE, &print_version,
 	  N_("Print version"),
 	  NULL
@@ -167,6 +172,115 @@ get_fts_string (GStrv    search_words,
 }
 
 static void
+get_emails_foreach (gpointer value,
+		    gpointer user_data)
+{
+	gchar **data = value;
+
+	if (data[1] && *data[1]) {
+		g_print ("  %s (%s)\n", data[0], data[1]);
+	} else {
+		g_print ("  %s\n", data[0]);
+	}
+}
+
+static gboolean
+get_emails_results (TrackerClient *client,
+		    const gchar   *query,
+		    gint           search_limit)
+{
+	GError *error = NULL;
+	GPtrArray *results;
+
+	results = tracker_resources_sparql_query (client, query, &error);
+
+	if (error) {
+		g_printerr ("%s, %s\n",
+		            _("Could not get search results"),
+		            error->message);
+		g_error_free (error);
+
+		return FALSE;
+	}
+
+	if (!results) {
+		g_print ("%s\n",
+		         _("No emails were found"));
+	} else {
+		g_print (g_dngettext (NULL,
+		                      "Email: %d",
+		                      "Emails: %d",
+		                      results->len),
+		         results->len);
+		g_print ("\n");
+
+		g_ptr_array_foreach (results,
+		                     get_emails_foreach,
+		                     NULL);
+
+		if (results->len >= search_limit) {
+			show_limit_warning ();
+		}
+
+		g_ptr_array_foreach (results, (GFunc) g_strfreev, NULL);
+		g_ptr_array_free (results, TRUE);
+	}
+
+	return TRUE;
+}
+
+static gboolean
+get_emails (TrackerClient *client,
+	    GStrv          search_terms,
+	    gboolean       show_all,
+	    gint           search_offset,
+	    gint           search_limit,
+	    gboolean       use_or_operator)
+{
+	gchar *fts;
+	gchar *query;
+	const gchar *show_all_str;
+	gboolean success;
+
+	show_all_str = show_all ? "" : "?email tracker:available true .";
+	fts = get_fts_string (search_terms, use_or_operator);
+
+	if (fts) {
+		query = g_strdup_printf ("SELECT nmo:messageSubject(?email) nie:url(?email) "
+		                         "WHERE { "
+		                         "  ?email a nmo:Email ;"
+		                         "  fts:match \"%s\" ."
+		                         "  %s"
+		                         "} "
+		                         "ORDER BY ASC(nie:url(?email)) "
+		                         "OFFSET %d "
+		                         "LIMIT %d",
+		                         fts,
+		                         show_all_str,
+		                         search_offset,
+		                         search_limit);
+	} else {
+		query = g_strdup_printf ("SELECT nmo:messageSubject(?email) nie:url(?email) "
+		                         "WHERE { "
+		                         "  ?email a nmo:Email ."
+		                         "  %s"
+		                         "} "
+		                         "ORDER BY ASC(nie:url(?email)) "
+		                         "OFFSET %d "
+		                         "LIMIT %d",
+		                         show_all_str,
+		                         search_offset,
+		                         search_limit);
+	}
+
+	success = get_emails_results (client, query, search_limit);
+	g_free (query);
+	g_free (fts);
+
+	return success;
+}
+
+static void
 get_files_foreach (gpointer value,
                    gpointer user_data)
 {
@@ -886,6 +1000,7 @@ main (int argc, char **argv)
 	    !image_files &&
 	    !video_files &&
 	    !document_files &&
+	    !emails &&
 	    !files && !folders &&
 	    !terms) {
 		gchar *help;
@@ -1034,6 +1149,15 @@ main (int argc, char **argv)
 		return success ? EXIT_SUCCESS : EXIT_FAILURE;
 	}
 
+	if (emails) {
+		gboolean success;
+
+		success = get_emails (client, terms, all, offset, limit, or_operator);
+		g_object_unref (client);
+
+		return success ? EXIT_SUCCESS : EXIT_FAILURE;
+	}
+
 	if (terms) {
 		gboolean success;
 



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