i18n work in progress... desperately needs some housecleaning.
[barry.git] / src / r_message.h
blobf8fe462a5b6d2aa6fd6ed142671866542337824d
1 ///
2 /// \file r_message.h
3 /// Blackberry database record parser class for email records.
4 ///
6 /*
7 Copyright (C) 2005-2008, 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 "dll.h"
26 #include "record.h"
27 #include <iosfwd>
28 #include <string>
29 #include <vector>
30 #include <map>
31 #include <stdint.h>
33 namespace Barry {
36 // NOTE: All classes here must be container-safe! Perhaps add sorting
37 // operators in the future.
40 /// \addtogroup RecordParserClasses
41 /// @{
43 class BXEXPORT Message
45 public:
46 uint8_t RecType;
47 uint32_t RecordId;
49 EmailAddress From;
50 EmailAddress To;
51 EmailAddress Cc;
52 EmailAddress Bcc;
53 EmailAddress Sender;
54 EmailAddress ReplyTo;
55 std::string Subject;
56 std::string Body;
57 std::string Attachment;
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 std::vector<UnknownField> Unknowns;
89 protected:
90 std::string SimpleEmailAddress() const;
92 public:
93 const unsigned char* ParseField(const unsigned char *begin,
94 const unsigned char *end);
96 public:
97 Message();
98 ~Message();
100 // Parser / Builder API (see parser.h / builder.h)
101 uint8_t GetRecType() const;
102 uint32_t GetUniqueId() const; // empty API, not required by protocol
103 void SetIds(uint8_t Type, uint32_t Id){ RecType = Type; RecordId = Id; }
104 void ParseHeader(const Data &data, size_t &offset);
105 void ParseFields(const Data &data, size_t &offset);
106 void BuildHeader(Data &data, size_t &offset) const;
107 void BuildFields(Data &data, size_t &offset) const;
109 void Clear();
111 void Dump(std::ostream &os) const;
113 // sorting
114 bool operator<(const Message &other) const { return Subject < other.Subject; }
116 // database name
117 static const char * GetDBName() { return "Messages"; }
118 static uint8_t GetDefaultRecType() { return 0; }
121 BXEXPORT inline std::ostream& operator<<(std::ostream &os, const Message &msg) {
122 msg.Dump(os);
123 return os;
126 /// @}
128 } // namespace Barry
130 #endif