mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-28 21:54:10 +01:00
Add a generic function to get a list of terms with some prefix.
Replace _notmuch_convert_tags with this and simplify _create_filenames_for_terms_with_prefix. This will also come in handy shortly to get the message file name list.
This commit is contained in:
parent
f3c1eebfaf
commit
206938ec9b
4 changed files with 31 additions and 47 deletions
|
@ -53,18 +53,16 @@ struct _notmuch_database {
|
||||||
Xapian::ValueRangeProcessor *value_range_processor;
|
Xapian::ValueRangeProcessor *value_range_processor;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Convert tags from Xapian internal format to notmuch format.
|
/* Return the list of terms from the given iterator matching a prefix.
|
||||||
*
|
* The prefix will be stripped from the strings in the returned list.
|
||||||
* The function gets a TermIterator as argument and uses that iterator to find
|
* The list will be allocated using ctx as the talloc context.
|
||||||
* all tag terms in the object. The tags are then converted to a
|
|
||||||
* notmuch_tags_t list and returned. The function needs to allocate memory for
|
|
||||||
* the resulting list and it uses the argument ctx as talloc context.
|
|
||||||
*
|
*
|
||||||
* The function returns NULL on failure.
|
* The function returns NULL on failure.
|
||||||
*/
|
*/
|
||||||
notmuch_tags_t *
|
notmuch_string_list_t *
|
||||||
_notmuch_convert_tags (void *ctx, Xapian::TermIterator &i,
|
_notmuch_database_get_terms_with_prefix (void *ctx, Xapian::TermIterator &i,
|
||||||
Xapian::TermIterator &end);
|
Xapian::TermIterator &end,
|
||||||
|
const char *prefix);
|
||||||
|
|
||||||
#pragma GCC visibility pop
|
#pragma GCC visibility pop
|
||||||
|
|
||||||
|
|
|
@ -1757,49 +1757,42 @@ notmuch_database_remove_message (notmuch_database_t *notmuch,
|
||||||
return status;
|
return status;
|
||||||
}
|
}
|
||||||
|
|
||||||
notmuch_tags_t *
|
notmuch_string_list_t *
|
||||||
_notmuch_convert_tags (void *ctx, Xapian::TermIterator &i,
|
_notmuch_database_get_terms_with_prefix (void *ctx, Xapian::TermIterator &i,
|
||||||
Xapian::TermIterator &end)
|
Xapian::TermIterator &end,
|
||||||
|
const char *prefix)
|
||||||
{
|
{
|
||||||
const char *prefix = _find_prefix ("tag");
|
int prefix_len = strlen (prefix);
|
||||||
notmuch_string_list_t *list;
|
notmuch_string_list_t *list;
|
||||||
std::string tag;
|
|
||||||
|
|
||||||
/* Currently this iteration is written with the assumption that
|
|
||||||
* "tag" has a single-character prefix. */
|
|
||||||
assert (strlen (prefix) == 1);
|
|
||||||
|
|
||||||
list = _notmuch_string_list_create (ctx);
|
list = _notmuch_string_list_create (ctx);
|
||||||
if (unlikely (list == NULL))
|
if (unlikely (list == NULL))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
i.skip_to (prefix);
|
for (i.skip_to (prefix); i != end; i++) {
|
||||||
|
/* Terminate loop at first term without desired prefix. */
|
||||||
while (i != end) {
|
if (strncmp ((*i).c_str (), prefix, prefix_len))
|
||||||
tag = *i;
|
|
||||||
|
|
||||||
if (tag.empty () || tag[0] != *prefix)
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
_notmuch_string_list_append (list, tag.c_str () + 1);
|
_notmuch_string_list_append (list, (*i).c_str () + prefix_len);
|
||||||
|
|
||||||
i++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_notmuch_string_list_sort (list);
|
return list;
|
||||||
|
|
||||||
return _notmuch_tags_create (ctx, list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
notmuch_tags_t *
|
notmuch_tags_t *
|
||||||
notmuch_database_get_all_tags (notmuch_database_t *db)
|
notmuch_database_get_all_tags (notmuch_database_t *db)
|
||||||
{
|
{
|
||||||
Xapian::TermIterator i, end;
|
Xapian::TermIterator i, end;
|
||||||
|
notmuch_string_list_t *tags;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
i = db->xapian_db->allterms_begin();
|
i = db->xapian_db->allterms_begin();
|
||||||
end = db->xapian_db->allterms_end();
|
end = db->xapian_db->allterms_end();
|
||||||
return _notmuch_convert_tags(db, i, end);
|
tags = _notmuch_database_get_terms_with_prefix (db, i, end,
|
||||||
|
_find_prefix ("tag"));
|
||||||
|
_notmuch_string_list_sort (tags);
|
||||||
|
return _notmuch_tags_create (db, tags);
|
||||||
} catch (const Xapian::Error &error) {
|
} catch (const Xapian::Error &error) {
|
||||||
fprintf (stderr, "A Xapian exception occurred getting tags: %s.\n",
|
fprintf (stderr, "A Xapian exception occurred getting tags: %s.\n",
|
||||||
error.get_msg().c_str());
|
error.get_msg().c_str());
|
||||||
|
|
|
@ -23,10 +23,6 @@
|
||||||
|
|
||||||
/* Create an iterator to iterate over the basenames of files (or
|
/* Create an iterator to iterate over the basenames of files (or
|
||||||
* directories) that all share a common parent directory.
|
* directories) that all share a common parent directory.
|
||||||
*
|
|
||||||
* The code here is general enough to be reused for any case of
|
|
||||||
* iterating over the non-prefixed portion of terms sharing a common
|
|
||||||
* prefix.
|
|
||||||
*/
|
*/
|
||||||
static notmuch_filenames_t *
|
static notmuch_filenames_t *
|
||||||
_create_filenames_for_terms_with_prefix (void *ctx,
|
_create_filenames_for_terms_with_prefix (void *ctx,
|
||||||
|
@ -35,21 +31,14 @@ _create_filenames_for_terms_with_prefix (void *ctx,
|
||||||
{
|
{
|
||||||
notmuch_string_list_t *filename_list;
|
notmuch_string_list_t *filename_list;
|
||||||
Xapian::TermIterator i, end;
|
Xapian::TermIterator i, end;
|
||||||
int prefix_len = strlen (prefix);
|
|
||||||
|
|
||||||
filename_list = _notmuch_string_list_create (ctx);
|
i = notmuch->xapian_db->allterms_begin();
|
||||||
|
end = notmuch->xapian_db->allterms_end();
|
||||||
|
filename_list = _notmuch_database_get_terms_with_prefix (ctx, i, end,
|
||||||
|
prefix);
|
||||||
if (unlikely (filename_list == NULL))
|
if (unlikely (filename_list == NULL))
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
end = notmuch->xapian_db->allterms_end (prefix);
|
|
||||||
|
|
||||||
for (i = notmuch->xapian_db->allterms_begin (prefix); i != end; i++)
|
|
||||||
{
|
|
||||||
std::string term = *i;
|
|
||||||
|
|
||||||
_notmuch_string_list_append (filename_list, term.c_str () + prefix_len);
|
|
||||||
}
|
|
||||||
|
|
||||||
return _notmuch_filenames_create (ctx, filename_list);
|
return _notmuch_filenames_create (ctx, filename_list);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -711,9 +711,13 @@ notmuch_tags_t *
|
||||||
notmuch_message_get_tags (notmuch_message_t *message)
|
notmuch_message_get_tags (notmuch_message_t *message)
|
||||||
{
|
{
|
||||||
Xapian::TermIterator i, end;
|
Xapian::TermIterator i, end;
|
||||||
|
notmuch_string_list_t *tags;
|
||||||
i = message->doc.termlist_begin();
|
i = message->doc.termlist_begin();
|
||||||
end = message->doc.termlist_end();
|
end = message->doc.termlist_end();
|
||||||
return _notmuch_convert_tags(message, i, end);
|
tags = _notmuch_database_get_terms_with_prefix (message, i, end,
|
||||||
|
_find_prefix ("tag"));
|
||||||
|
_notmuch_string_list_sort (tags);
|
||||||
|
return _notmuch_tags_create (message, tags);
|
||||||
}
|
}
|
||||||
|
|
||||||
const char *
|
const char *
|
||||||
|
|
Loading…
Reference in a new issue