Updated ChangeLog and whitespace
[barry.git] / src / r_folder.h
blob7e7943eb95fd8670801f147ff7e84ca7776c588c
1 ///
2 /// \file r_folder.h
3 /// Record parsing class for the Folder database.
4 ///
6 /*
7 Copyright (C) 2005-2010, 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 "dll.h"
27 #include "record.h"
28 #include <vector>
29 #include <string>
30 #include <stdint.h>
32 namespace Barry {
34 // forward declarations
35 class IConverter;
37 class BXEXPORT Folder
39 public:
40 typedef std::vector<UnknownField> UnknownsType;
41 uint8_t RecType;
42 uint32_t RecordId;
44 std::string Name;
45 uint16_t Number; // Not unique, used for ordering of subfolders - NOT level
46 uint16_t Level; // From parent
48 enum FolderType {
49 FolderSubtree = 0,
50 FolderDeleted,
51 FolderInbox,
52 FolderOutbox,
53 FolderSent,
54 FolderOther,
55 FolderDraft = 0x0a
57 FolderType Type;
59 enum FolderStatusType {
60 FolderOrphan = 0x50,
61 FolderUnfiled,
62 FolderFiled
65 UnknownsType Unknowns;
67 protected:
68 static FolderType TypeProto2Rec(uint8_t t);
69 static uint8_t TypeRec2Proto(FolderType t);
71 public:
72 Folder();
73 ~Folder();
75 const unsigned char* ParseField(const unsigned char *begin,
76 const unsigned char *end, const IConverter *ic = 0);
77 uint8_t GetRecType() const { return RecType; }
78 uint32_t GetUniqueId() const { return RecordId; }
79 void SetIds(uint8_t Type, uint32_t Id) { RecType = Type; RecordId = Id; }
80 void ParseHeader(const Data &data, size_t &offset);
81 void ParseFields(const Data &data, size_t &offset, const IConverter *ic = 0);
82 void BuildHeader(Data &data, size_t &offset) const;
84 void Clear();
86 void Dump(std::ostream &os) const;
87 bool operator<(const Folder &other) const { return Name < other.Name; }
89 // database name
90 static const char * GetDBName() { return "Folders"; }
91 static uint8_t GetDefaultRecType() { return 0; }
95 BXEXPORT inline std::ostream& operator<<(std::ostream &os, const Folder &msg) {
96 msg.Dump(os);
97 return os;
100 } // namespace Barry
102 #endif // __BARRY_RECORD_FOLDER_H__