summaryrefslogtreecommitdiff
path: root/database.cc
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-10-23 05:13:42 -0700
committerCarl Worth <cworth@cworth.org>2009-10-23 05:13:42 -0700
commit1ecdef59f5f3b5b1e9f00bbf27349fd5d48d747f (patch)
treea691454cade774e70354b7996f2d99aa94998744 /database.cc
parent1ae8c41cdab2f753b61a4966730d90047459cc08 (diff)
add_message: Rename message to message_file
I still don't like the name message_file at all, but we're about to start using a notmuch_message_t in this function so we need to do something to keep the identifiers separate for now. Eventually, it probably makes sense to push the message-parsing code from database.cc to message.cc.
Diffstat (limited to 'database.cc')
-rw-r--r--database.cc26
1 files changed, 13 insertions, 13 deletions
diff --git a/database.cc b/database.cc
index 2fc783e..a6539ff 100644
--- a/database.cc
+++ b/database.cc
@@ -489,7 +489,7 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
{
Xapian::WritableDatabase *db = notmuch->xapian_db;
Xapian::Document doc;
- notmuch_message_file_t *message;
+ notmuch_message_file_t *message_file;
notmuch_status_t ret = NOTMUCH_STATUS_SUCCESS;
GPtrArray *parents, *thread_ids;
@@ -501,13 +501,13 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
time_t time_value;
unsigned int i;
- message = notmuch_message_file_open (filename);
- if (message == NULL) {
+ message_file = notmuch_message_file_open (filename);
+ if (message_file == NULL) {
ret = NOTMUCH_STATUS_FILE_ERROR;
goto DONE;
}
- notmuch_message_file_restrict_headers (message,
+ notmuch_message_file_restrict_headers (message_file,
"date",
"from",
"in-reply-to",
@@ -524,16 +524,16 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
parents = g_ptr_array_new ();
- refs = notmuch_message_file_get_header (message, "references");
+ refs = notmuch_message_file_get_header (message_file, "references");
parse_references (parents, refs);
- in_reply_to = notmuch_message_file_get_header (message, "in-reply-to");
+ in_reply_to = notmuch_message_file_get_header (message_file, "in-reply-to");
parse_references (parents, in_reply_to);
for (i = 0; i < parents->len; i++)
add_term (doc, "ref", (char *) g_ptr_array_index (parents, i));
- header = notmuch_message_file_get_header (message, "message-id");
+ header = notmuch_message_file_get_header (message_file, "message-id");
if (header) {
message_id = parse_message_id (header, NULL);
/* So the header value isn't RFC-compliant, but it's
@@ -594,15 +594,15 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
g_ptr_array_free (thread_ids, TRUE);
- date = notmuch_message_file_get_header (message, "date");
+ date = notmuch_message_file_get_header (message_file, "date");
time_value = notmuch_parse_date (date, NULL);
doc.add_value (NOTMUCH_VALUE_DATE,
Xapian::sortable_serialise (time_value));
- from = notmuch_message_file_get_header (message, "from");
- subject = notmuch_message_file_get_header (message, "subject");
- to = notmuch_message_file_get_header (message, "to");
+ from = notmuch_message_file_get_header (message_file, "from");
+ subject = notmuch_message_file_get_header (message_file, "subject");
+ to = notmuch_message_file_get_header (message_file, "to");
if (from == NULL &&
subject == NULL &&
@@ -621,8 +621,8 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
}
DONE:
- if (message)
- notmuch_message_file_close (message);
+ if (message_file)
+ notmuch_message_file_close (message_file);
return ret;
}