aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDavid Bremner <david@tethera.net>2022-05-23 20:38:55 -0300
committerDavid Bremner <david@tethera.net>2022-06-25 12:55:02 -0300
commitf48d2e2ff89a7e0a413b29ca844b2c785063eb3d (patch)
tree3b29fe413f5b9d7928aac45f938da16f36eea5c1 /lib
parent2707c06a0fc587a68096a3ec6f054ba4f0d7e7c7 (diff)
lib/message: catch exceptions in _n_m_add_term
Some code movement is needed to make sure the cache is only invalidated when the Xapian operation succeeds.
Diffstat (limited to 'lib')
-rw-r--r--lib/message.cc27
1 files changed, 17 insertions, 10 deletions
diff --git a/lib/message.cc b/lib/message.cc
index 54609fcd..c331346f 100644
--- a/lib/message.cc
+++ b/lib/message.cc
@@ -1490,24 +1490,30 @@ _notmuch_message_add_term (notmuch_message_t *message,
{
char *term;
+ notmuch_private_status_t status = NOTMUCH_PRIVATE_STATUS_SUCCESS;
if (value == NULL)
return NOTMUCH_PRIVATE_STATUS_NULL_POINTER;
term = talloc_asprintf (message, "%s%s",
_find_prefix (prefix_name), value);
+ if (strlen (term) > NOTMUCH_TERM_MAX) {
+ status = NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
+ goto DONE;
+ }
- if (strlen (term) > NOTMUCH_TERM_MAX)
- return NOTMUCH_PRIVATE_STATUS_TERM_TOO_LONG;
-
- message->doc.add_term (term, 0);
- message->modified = true;
+ try {
+ message->doc.add_term (term, 0);
+ message->modified = true;
+ _notmuch_message_invalidate_metadata (message, prefix_name);
+ } catch (Xapian::Error &error) {
+ LOG_XAPIAN_EXCEPTION (message, error);
+ status = NOTMUCH_PRIVATE_STATUS_XAPIAN_EXCEPTION;
+ }
+ DONE:
talloc_free (term);
-
- _notmuch_message_invalidate_metadata (message, prefix_name);
-
- return NOTMUCH_PRIVATE_STATUS_SUCCESS;
+ return status;
}
/* Parse 'text' and add a term to 'message' for each parsed word. Each
@@ -1571,11 +1577,12 @@ _notmuch_message_remove_term (notmuch_message_t *message,
try {
message->doc.remove_term (term);
message->modified = true;
- } catch (const Xapian::InvalidArgumentError) {
+ } catch (const Xapian::InvalidArgumentError &error) {
/* We'll let the philosophers try to wrestle with the
* question of whether failing to remove that which was not
* there in the first place is failure. For us, we'll silently
* consider it all good. */
+ LOG_XAPIAN_EXCEPTION (message, error);
}
talloc_free (term);