2 /// \file r_save_message.h
3 /// Blackberry database record parser class for saved email
8 Copyright (C) 2005-2007, Net Direct Inc. (http://www.netdirect.ca/)
9 Copyright (C) 2007, Brian Edginton (edge@edginton.net)
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
13 the Free Software Foundation; either version 2 of the License, or
14 (at your option) any later version.
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
20 See the GNU General Public License in the COPYING file at the
21 root directory of this project for more details.
24 #ifndef __BARRY_RECORD_SAVED_MESSAGE_H__
25 #define __BARRY_RECORD_SAVED_MESSAGE_H__
37 // NOTE: All classes here must be container-safe! Perhaps add sorting
38 // operators in the future.
41 /// \addtogroup RecordParserClasses
58 std::string Attachment
;
59 uint32_t MessageRecordId
;
60 std::vector
<UnknownField
> Unknowns
;
63 const unsigned char* ParseField(const unsigned char *begin
,
64 const unsigned char *end
);
70 // Parser / Builder API (see parser.h / builder.h)
71 uint8_t GetRecType() const { return RecType
; }
72 uint32_t GetUniqueId() const { return RecordId
; }
73 void SetIds(uint8_t Type
, uint32_t Id
) { RecType
= Type
; RecordId
= Id
; }
74 void ParseHeader(const Data
&data
, size_t &offset
);
75 void ParseFields(const Data
&data
, size_t &offset
);
76 void BuildHeader(Data
&data
, size_t &offset
) const;
77 void BuildFields(Data
&data
, size_t &offset
) const;
79 void Dump(std::ostream
&os
) const;
82 bool operator<(const SavedMessage
&other
) const { return Subject
< other
.Subject
; }
85 static const char * GetDBName() { return "Saved Email Messages"; }
86 static uint8_t GetDefaultRecType() { return 3; }
89 inline std::ostream
& operator<<(std::ostream
&os
, const SavedMessage
&msg
) {
98 #endif // __BARRY_RECORD_SAVED_MESSAGE_H__