- refactored postal addresses in the Contact record class into
[barry.git] / src / r_folder.h
blob531304cfbf563f432ab35144e60470895adba3ca
1 ///
2 /// \file r_folder.h
3 /// Record parsing class for the Folder database.
4 ///
6 /*
7 Copyright (C) 2005-2007, Net Direct Inc. (http://www.netdirect.ca/)
8 Copyright (C) 2007, Brian Edginton
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
19 See the GNU General Public License in the COPYING file at the
20 root directory of this project for more details.
23 #ifndef __BARRY_RECORD_FOLDER_H__
24 #define __BARRY_RECORD_FOLDER_H__
26 #include "record.h"
27 #include <vector>
28 #include <string>
29 #include <stdint.h>
31 namespace Barry {
33 class Folder
35 public:
36 typedef std::vector<UnknownField> UnknownsType;
37 uint8_t RecType;
38 uint32_t RecordId;
40 std::string FolderName;
41 uint16_t FolderNumber; // Not unique, used for ordering of subfolders - NOT level
42 uint16_t FolderLevel; // From parent
44 enum FolderTypeEnum {
45 FolderSubtree = 0,
46 FolderDeleted,
47 FolderInbox,
48 FolderOutbox,
49 FolderSent,
50 FolderOther,
51 FolderDraft = 0x0a
53 FolderTypeEnum FolderType;
55 enum FolderStatusType {
56 FolderOrphan = 0x50,
57 FolderUnfiled,
58 FolderFiled
61 UnknownsType Unknowns;
63 public:
64 Folder();
65 ~Folder();
67 const unsigned char* ParseField(const unsigned char *begin,
68 const unsigned char *end);
69 uint8_t GetRecType() const { return RecType; }
70 uint32_t GetUniqueId() const { return RecordId; }
71 void SetIds(uint8_t Type, uint32_t Id) { RecType = Type; RecordId = Id; }
72 void ParseHeader(const Data &data, size_t &offset);
73 void ParseFields(const Data &data, size_t &offset);
74 void BuildHeader(Data &data, size_t &offset) const;
76 void Clear();
78 void Dump(std::ostream &os) const;
79 bool operator<(const Folder &other) const { return FolderName < other.FolderName; }
81 // database name
82 static const char * GetDBName() { return "Folders"; }
83 static uint8_t GetDefaultRecType() { return 0; }
87 inline std::ostream& operator<<(std::ostream &os, const Folder &msg) {
88 msg.Dump(os);
89 return os;
92 } // namespace Barry
94 #endif // __BARRY_RECORD_FOLDER_H__