aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/message.cc
diff options
context:
space:
mode:
authorGravatar Bart Trojanowski <bart@jukie.net>2009-11-24 23:54:33 -0500
committerGravatar Carl Worth <cworth@cworth.org>2009-11-27 17:06:50 -0800
commitc57a0b4f8b78d655b90f4f2e6f986c85f477aef7 (patch)
tree992490dd46833955294de22367e01795ba4fd135 /lib/message.cc
parent00b138ba2ac0c9a01f19d9e0b75657f1082a766d (diff)
message: add flags to notmuch_message_t
This patch allows for different flags, internal to notmuch, to be set on a message object. The patch does not define any such flags, just the facilities to manage these flags. Signed-off-by: Bart Trojanowski <bart@jukie.net>
Diffstat (limited to 'lib/message.cc')
-rw-r--r--lib/message.cc19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/message.cc b/lib/message.cc
index a410394d..b708c181 100644
--- a/lib/message.cc
+++ b/lib/message.cc
@@ -37,6 +37,7 @@ struct _notmuch_message {
char *filename;
notmuch_message_file_t *message_file;
notmuch_message_list_t *replies;
+ unsigned long flags;
Xapian::Document doc;
};
@@ -108,6 +109,7 @@ _notmuch_message_create (const void *talloc_owner,
message->doc_id = doc_id;
message->frozen = 0;
+ message->flags = 0;
/* Each of these will be lazily created as needed. */
message->message_id = NULL;
@@ -445,6 +447,23 @@ notmuch_message_get_filename (notmuch_message_t *message)
return message->filename;
}
+notmuch_bool_t
+notmuch_message_get_flag (notmuch_message_t *message,
+ notmuch_message_flag_t flag)
+{
+ return message->flags & (1 << flag);
+}
+
+void
+notmuch_message_set_flag (notmuch_message_t *message,
+ notmuch_message_flag_t flag, notmuch_bool_t enable)
+{
+ if (enable)
+ message->flags |= (1 << flag);
+ else
+ message->flags &= ~(1 << flag);
+}
+
time_t
notmuch_message_get_date (notmuch_message_t *message)
{