/* -*-mode: c++; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8-*- */ /* ** Copyright (C) 2008-2011 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 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. ** */ #if HAVE_CONFIG_H #include "config.h" #endif /*HAVE_CONFIG_H*/ #include #include #include #include "mu-util.h" static char* xapian_get_metadata (const gchar *xpath, const gchar *key) { g_return_val_if_fail (xpath, NULL); g_return_val_if_fail (key, NULL); if (!access(xpath, F_OK) == 0) { g_warning ("cannot access %s: %s", xpath, strerror(errno)); return NULL; } try { Xapian::Database db (xpath); const std::string val(db.get_metadata (key)); return val.empty() ? NULL : g_strdup (val.c_str()); } MU_XAPIAN_CATCH_BLOCK; return NULL; } char* mu_util_xapian_dbversion (const gchar *xpath) { g_return_val_if_fail (xpath, NULL); return xapian_get_metadata (xpath, MU_STORE_VERSION_KEY); } gboolean mu_util_xapian_needs_upgrade (const gchar *xpath) { char *version; gboolean rv; g_return_val_if_fail (xpath, TRUE); version = mu_util_xapian_dbversion (xpath); if (g_strcmp0 (version, MU_XAPIAN_DB_VERSION) == 0) rv = FALSE; else rv = TRUE; g_free (version); return rv; } gboolean mu_util_xapian_is_empty (const gchar* xpath) { g_return_val_if_fail (xpath, TRUE); /* it's 'empty' (non-existant) */ if (access(xpath, F_OK) != 0 && errno == ENOENT) return TRUE; try { Xapian::Database db (xpath); return db.get_doccount() == 0 ? TRUE : FALSE; } MU_XAPIAN_CATCH_BLOCK; return FALSE; } gboolean mu_util_xapian_clear (const gchar *xpath, const char *ccache) { g_return_val_if_fail (xpath, FALSE); g_return_val_if_fail (ccache, FALSE); try { int rv; /* clear the database */ Xapian::WritableDatabase db (xpath, Xapian::DB_CREATE_OR_OVERWRITE); db.flush (); MU_WRITE_LOG ("emptied database %s", xpath); /* clear the contacts cache; this is not totally * fail-safe, as some other process may still have it * open... */ rv = unlink (ccache); if (rv != 0 && errno != ENOENT) { g_warning ("failed to remove contacts-cache: %s", strerror(errno)); return FALSE; } return TRUE; } MU_XAPIAN_CATCH_BLOCK; return FALSE; } gboolean mu_util_xapian_is_locked (const gchar *xpath) { g_return_val_if_fail (xpath, FALSE); try { Xapian::WritableDatabase db (xpath, Xapian::DB_OPEN); } catch (const Xapian::DatabaseLockError& xer) { return TRUE; } catch (const Xapian::Error &xer) { g_warning ("%s: error: %s", __FUNCTION__, xer.get_msg().c_str()); } return FALSE; }