updated change log to reflect reality
[barry.git] / src / r_message.h
blob6afb1f326eaeed7d8d2643862f788ddffedfe60e
1 ///
2 /// \file r_message.h
3 /// Blackberry database record parser class for email records.
4 ///
6 /*
7 Copyright (C) 2005-2007, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_RECORD_MESSAGE_H__
23 #define __BARRY_RECORD_MESSAGE_H__
25 #include "record.h"
26 #include <iosfwd>
27 #include <string>
28 #include <vector>
29 #include <map>
30 #include <stdint.h>
32 namespace Barry {
35 // NOTE: All classes here must be container-safe! Perhaps add sorting
36 // operators in the future.
39 /// \addtogroup RecordParserClasses
40 /// @{
42 class Message
44 public:
45 uint8_t RecType;
46 uint32_t RecordId;
48 EmailAddress From;
49 EmailAddress To;
50 EmailAddress Cc;
51 EmailAddress Bcc;
52 EmailAddress Sender;
53 EmailAddress ReplyTo;
54 std::string Subject;
55 std::string Body;
56 std::string Attachment;
57 std::vector<UnknownField> Unknowns;
58 uint32_t MessageRecordId;
59 uint32_t MessageReplyTo;
60 time_t MessageDateSent;
61 time_t MessageDateReceived;
63 // Message Flags
64 bool MessageTruncated;
65 bool MessageRead;
66 bool MessageReply;
67 bool MessageSaved;
68 bool MessageSavedDeleted;
70 enum MessagePriorityType {
71 LowPriority = 0,
72 NormalPriority,
73 HighPriority,
74 UnknownPriority
76 MessagePriorityType MessagePriority;
78 enum MessageSensitivityType {
79 NormalSensitivity = 0,
80 Personal,
81 Private,
82 Confidential,
83 UnknownSensitivity
85 MessageSensitivityType MessageSensitivity;
87 protected:
88 std::string SimpleEmailAddress() const;
90 public:
91 const unsigned char* ParseField(const unsigned char *begin,
92 const unsigned char *end);
94 public:
95 Message();
96 ~Message();
98 // Parser / Builder API (see parser.h / builder.h)
99 uint8_t GetRecType() const;
100 uint32_t GetUniqueId() const; // empty API, not required by protocol
101 void SetIds(uint8_t Type, uint32_t Id){ RecType = Type; RecordId = Id; }
102 void ParseHeader(const Data &data, size_t &offset);
103 void ParseFields(const Data &data, size_t &offset);
104 void BuildHeader(Data &data, size_t &offset) const;
105 void BuildFields(Data &data, size_t &offset) const;
107 void Clear();
109 void Dump(std::ostream &os) const;
111 // sorting
112 bool operator<(const Message &other) const { return Subject < other.Subject; }
114 // database name
115 static const char * GetDBName() { return "Messages"; }
116 static uint8_t GetDefaultRecType() { return 0; }
119 inline std::ostream& operator<<(std::ostream &os, const Message &msg) {
120 msg.Dump(os);
121 return os;
124 /// @}
126 } // namespace Barry
128 #endif