3 /// Record parsing class for the Folder database.
7 Copyright (C) 2005-2011, 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__
34 // forward declarations
40 typedef Barry::UnknownsType UnknownsType
;
46 uint16_t Number
; // Not unique, used for ordering of subfolders - NOT level
47 uint16_t Level
; // From parent
60 enum FolderStatusType
{
66 UnknownsType Unknowns
;
69 static FolderType
TypeProto2Rec(uint8_t t
);
70 static uint8_t TypeRec2Proto(FolderType t
);
76 const unsigned char* ParseField(const unsigned char *begin
,
77 const unsigned char *end
, const IConverter
*ic
= 0);
78 uint8_t GetRecType() const { return RecType
; }
79 uint32_t GetUniqueId() const { return RecordId
; }
80 void SetIds(uint8_t Type
, uint32_t Id
) { RecType
= Type
; RecordId
= Id
; }
81 void ParseHeader(const Data
&data
, size_t &offset
);
82 void ParseFields(const Data
&data
, size_t &offset
, const IConverter
*ic
= 0);
83 void BuildHeader(Data
&data
, size_t &offset
) const;
84 void BuildFields(Data
&data
, size_t &offset
, const IConverter
*ic
= 0) const;
86 // operations (common among record classes)
88 void Dump(std::ostream
&os
) const;
89 std::string
GetDescription() const;
91 bool operator<(const Folder
&other
) const { return Name
< other
.Name
; }
94 static const char * GetDBName() { return "Folders"; }
95 static uint8_t GetDefaultRecType() { return 0; }
99 BXEXPORT
inline std::ostream
& operator<<(std::ostream
&os
, const Folder
&msg
) {
106 #endif // __BARRY_RECORD_FOLDER_H__