/* ** Copyright (C) 2008-2010 Dirk-Jan C. Binnema ** ** 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 3, 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. ** */ #ifdef HAVE_CONFIG_H #include "config.h" #endif /*HAVE_CONFIG_H*/ #include #include #include #include #include #include #include "mu-msg.h" #include "mu-maildir.h" #include "mu-index.h" #include "mu-query.h" #include "mu-msg-iter.h" #include "mu-msg-str.h" #include "mu-util.h" #include "mu-util-db.h" #include "mu-cmd.h" #include "mu-output-plain.h" #include "mu-output-link.h" static void update_warning (void) { g_printerr ("the database needs to be updated to version %s\n", MU_XAPIAN_DB_VERSION); g_message ("please run 'mu index --rebuild' (see the man page)"); } static gboolean print_xapian_query (MuQuery *xapian, const gchar *query) { char *querystr; MU_WRITE_LOG ("query: '%s' (xquery)", query); querystr = mu_query_as_string (xapian, query); g_print ("%s\n", querystr); g_free (querystr); return TRUE; } /* returns NULL if there is an error */ const MuMsgField* sort_field_from_string (const char* fieldstr) { const MuMsgField *field; field = mu_msg_field_from_name (fieldstr); if (!field && strlen(fieldstr) == 1) field = mu_msg_field_from_shortcut(fieldstr[0]); if (!field) g_printerr ("not a valid sort field: '%s'\n", fieldstr); return field; } static size_t print_rows (MuMsgIter *iter, const char *fields, size_t summary_len) { size_t count = 0; if (mu_msg_iter_is_done (iter)) return 0; do { if (mu_output_plain_row (iter, fields, summary_len)) ++count; } while (mu_msg_iter_next (iter)); return count; } static size_t make_links (MuMsgIter *iter, const char* linksdir, gboolean clearlinks) { size_t count = 0; if (!mu_output_link_create_dir (linksdir, clearlinks)) return 0; if (mu_msg_iter_is_done (iter)) return 0; /* iterate over the found iters */ do { /* ignore errors...*/ if (mu_output_link_row (iter, linksdir)) ++count; } while (mu_msg_iter_next (iter)); return count; } static gboolean run_query (MuQuery *xapian, const gchar *query, MuConfigOptions *opts) { MuMsgIter *iter; const MuMsgField *sortfield; size_t matches; MU_WRITE_LOG ("query: '%s'", query); sortfield = NULL; if (opts->sortfield) { sortfield = sort_field_from_string (opts->sortfield); if (!sortfield) /* error occured? */ return FALSE; } iter = mu_query_run (xapian, query, sortfield, !opts->descending, 0); if (!iter) { g_printerr ("error: running query failed\n"); return FALSE; } if (opts->linksdir) matches = make_links (iter, opts->linksdir, opts->clearlinks); else matches = print_rows (iter, opts->fields, opts->summary_len); if (matches == 0) g_printerr ("No matches found\n"); mu_msg_iter_destroy (iter); return matches > 0; } static gboolean do_output (MuQuery *xapian, MuConfigOptions* opts, const gchar **params) { gchar *query; gboolean retval = TRUE; query = mu_util_str_from_strv (params); /* if xquery is set, we print the xapian query instead of the * output; this is for debugging purposes */ if (opts->xquery) retval = print_xapian_query (xapian, query); else retval = run_query (xapian, query, opts); g_free (query); return retval; } static gboolean query_params_valid (MuConfigOptions *opts) { if (opts->linksdir) if (opts->xquery) { g_printerr ("Invalid option for '--linksdir'\n"); return FALSE; } if (!opts->params[0] || !opts->params[1]) { g_printerr ("Missing search expression\n"); return FALSE; } if (mu_util_check_dir (opts->xpath, TRUE, FALSE)) return TRUE; g_printerr ("%s is not a readable Xapian directory\n", opts->xpath); g_message ("Did you run 'mu index'?"); return FALSE; } gboolean mu_cmd_find (MuConfigOptions *opts) { MuQuery *xapian; gboolean rv; const gchar **params; g_return_val_if_fail (opts, FALSE); g_return_val_if_fail (mu_cmd_equals (opts, "find"), FALSE); if (!query_params_valid (opts)) return FALSE; if (mu_util_db_is_empty (opts->xpath)) { g_printerr ("The database is empty; " "use 'mu index' to add some messages\n"); return FALSE; } if (!mu_util_db_version_up_to_date (opts->xpath)) { update_warning (); return FALSE; } /* first param is 'query', search params are after that */ params = (const gchar**)&opts->params[1]; xapian = mu_query_new (opts->xpath); if (!xapian) { g_printerr ("Failed to create a Xapian query\n"); return FALSE; } rv = do_output (xapian, opts, params); mu_query_destroy (xapian); return rv; }