aboutsummaryrefslogtreecommitdiffhomepage
path: root/database.cc
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-20 15:09:51 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-20 15:09:51 -0700
commitcd4a8734d3bb151df70d51a84903bff994439b05 (patch)
treeb396e65c412bde4dda0ad48e1c70e2ba9c94744d /database.cc
parent00af443b8e5814f26c87c7cd8db1a08fec71e0b3 (diff)
Rename private notmuch_message_t to notmuch_message_file_t
This is in preparation for a new, public notmuch_message_t. Eventually, the public notmuch_message_t is going to grow enough features to need to be file-backed and will likely need everything that's now in message-file.c. So we may fold these back into one object/implementation in the future.
Diffstat (limited to 'database.cc')
-rw-r--r--database.cc38
1 files changed, 19 insertions, 19 deletions
diff --git a/database.cc b/database.cc
index 59e83736..7e678d87 100644
--- a/database.cc
+++ b/database.cc
@@ -501,7 +501,7 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
{
Xapian::WritableDatabase *db = notmuch->xapian_db;
Xapian::Document doc;
- notmuch_message_t *message;
+ notmuch_message_file_t *message;
GPtrArray *parents, *thread_ids;
@@ -512,16 +512,16 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
time_t time_value;
unsigned int i;
- message = notmuch_message_open (filename);
+ message = notmuch_message_file_open (filename);
- notmuch_message_restrict_headers (message,
- "date",
- "from",
- "in-reply-to",
- "message-id",
- "references",
- "subject",
- (char *) NULL);
+ notmuch_message_file_restrict_headers (message,
+ "date",
+ "from",
+ "in-reply-to",
+ "message-id",
+ "references",
+ "subject",
+ (char *) NULL);
try {
doc = Xapian::Document ();
@@ -530,16 +530,16 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
parents = g_ptr_array_new ();
- refs = notmuch_message_get_header (message, "references");
+ refs = notmuch_message_file_get_header (message, "references");
parse_references (parents, refs);
- in_reply_to = notmuch_message_get_header (message, "in-reply-to");
+ in_reply_to = notmuch_message_file_get_header (message, "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_get_header (message, "message-id");
+ header = notmuch_message_file_get_header (message, "message-id");
if (header) {
message_id = parse_message_id (header, NULL);
/* So the header value isn't RFC-compliant, but it's
@@ -592,21 +592,21 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
free (message_id);
- date = notmuch_message_get_header (message, "date");
+ date = notmuch_message_file_get_header (message, "date");
time_value = notmuch_parse_date (date, NULL);
doc.add_value (NOTMUCH_VALUE_DATE,
Xapian::sortable_serialise (time_value));
- from = notmuch_message_get_header (message, "from");
- subject = notmuch_message_get_header (message, "subject");
- to = notmuch_message_get_header (message, "to");
+ from = notmuch_message_file_get_header (message, "from");
+ subject = notmuch_message_file_get_header (message, "subject");
+ to = notmuch_message_file_get_header (message, "to");
if (from == NULL &&
subject == NULL &&
to == NULL)
{
- notmuch_message_close (message);
+ notmuch_message_file_close (message);
return NOTMUCH_STATUS_FILE_NOT_EMAIL;
} else {
db->add_document (doc);
@@ -617,7 +617,7 @@ notmuch_database_add_message (notmuch_database_t *notmuch,
return NOTMUCH_STATUS_XAPIAN_EXCEPTION;
}
- notmuch_message_close (message);
+ notmuch_message_file_close (message);
return NOTMUCH_STATUS_SUCCESS;
}