mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Add notmuch_message_get_filename
This is a new public function to find the filename of the original email message for a message-object that was found in the database. We may change this function in the future to support returning a list of filenames, (for messages with duplicate message IDs).
This commit is contained in:
parent
31044d10ed
commit
868d3b3068
2 changed files with 23 additions and 0 deletions
16
message.cc
16
message.cc
|
@ -27,6 +27,7 @@ struct _notmuch_message {
|
||||||
notmuch_database_t *notmuch;
|
notmuch_database_t *notmuch;
|
||||||
Xapian::docid doc_id;
|
Xapian::docid doc_id;
|
||||||
char *message_id;
|
char *message_id;
|
||||||
|
char *filename;
|
||||||
Xapian::Document doc;
|
Xapian::Document doc;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -121,6 +122,7 @@ _notmuch_message_create (const void *talloc_owner,
|
||||||
message->notmuch = notmuch;
|
message->notmuch = notmuch;
|
||||||
message->doc_id = doc_id;
|
message->doc_id = doc_id;
|
||||||
message->message_id = NULL; /* lazily created */
|
message->message_id = NULL; /* lazily created */
|
||||||
|
message->filename = NULL; /* lazily created */
|
||||||
new (&message->doc) Xapian::Document;
|
new (&message->doc) Xapian::Document;
|
||||||
|
|
||||||
talloc_set_destructor (message, _notmuch_message_destructor);
|
talloc_set_destructor (message, _notmuch_message_destructor);
|
||||||
|
@ -150,6 +152,20 @@ notmuch_message_get_message_id (notmuch_message_t *message)
|
||||||
return message->message_id;
|
return message->message_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char *
|
||||||
|
notmuch_message_get_filename (notmuch_message_t *message)
|
||||||
|
{
|
||||||
|
std::string filename_str;
|
||||||
|
|
||||||
|
if (message->filename)
|
||||||
|
return message->filename;
|
||||||
|
|
||||||
|
filename_str = message->doc.get_data ();
|
||||||
|
message->filename = talloc_strdup (message, filename_str.c_str ());
|
||||||
|
|
||||||
|
return message->filename;
|
||||||
|
}
|
||||||
|
|
||||||
/* We end up having to call the destructors explicitly because we had
|
/* We end up having to call the destructors explicitly because we had
|
||||||
* to use "placement new" in order to initialize C++ objects within a
|
* to use "placement new" in order to initialize C++ objects within a
|
||||||
* block that we allocated with talloc. So C++ is making talloc
|
* block that we allocated with talloc. So C++ is making talloc
|
||||||
|
|
|
@ -342,6 +342,13 @@ notmuch_results_destroy (notmuch_results_t *results);
|
||||||
const char *
|
const char *
|
||||||
notmuch_message_get_message_id (notmuch_message_t *message);
|
notmuch_message_get_message_id (notmuch_message_t *message);
|
||||||
|
|
||||||
|
/* Get this filename for the email corresponding to 'message'.
|
||||||
|
*
|
||||||
|
* The returned filename is relative to the base of the database from
|
||||||
|
* which 'message' was obtained. See notmuch_database_get_path() .*/
|
||||||
|
const char *
|
||||||
|
notmuch_message_get_filename (notmuch_message_t *message);
|
||||||
|
|
||||||
/* Get the tags for 'message', returning a notmuch_tags_t object which
|
/* Get the tags for 'message', returning a notmuch_tags_t object which
|
||||||
* can be used to iterate over all tags.
|
* can be used to iterate over all tags.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue