3 /// Record parsing class for the folders database.
7 Copyright (C) 2005-2008, 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.
24 #include "record-internal.h"
25 #include "protostructs.h"
33 using namespace Barry::Protocol
;
37 ///////////////////////////////////////////////////////////////////////////////
42 #define FFC_NUMBER 0x0a
43 #define FFC_LEVEL 0x0b
45 #define FFC_ADDRESS1 0x0d
46 #define FFC_ADDRESS2 0x0e
48 #define FFC_END 0xffff
66 #define SEPARATOR 0x2f
67 #define ROOT_SEPARATOR 0x3a
69 FieldLink
<Folder
> FolderFieldLinks
[] = {
70 { FFC_NAME
, "FolderName", 0, 0, &Folder::FolderName
, 0, 0 },
71 { FFC_END
, "End of List", 0, 0, 0, 0, 0 },
84 const unsigned char* Folder::ParseField(const unsigned char *begin
,
85 const unsigned char *end
)
87 const CommonField
*field
= (const CommonField
*) begin
;
89 // advance and check size
90 begin
+= COMMON_FIELD_HEADER_SIZE
+ btohs(field
->size
);
91 if( begin
> end
) // if begin==end, we are ok
94 if( !btohs(field
->size
) ) // if field has no size, something's up
97 // cycle through the type table
98 for( FieldLink
<Folder
> *b
= FolderFieldLinks
;
102 if( b
->type
== field
->type
) {
104 std::string
&s
= this->*(b
->strMember
);
105 s
= ParseFieldString(field
);
106 return begin
; // done!
108 else if( b
->timeMember
&& btohs(field
->size
) == 4 ) {
109 time_t &t
= this->*(b
->timeMember
);
110 t
= min2time(field
->u
.min1900
);
115 // handle special cases
116 switch( field
->type
)
119 FolderType
= (FolderTypeEnum
)field
->u
.raw
[0];
122 FolderNumber
= field
->u
.raw
[0]; // two's complement
125 FolderLevel
= field
->u
.raw
[0];
129 // if still not handled, add to the Unknowns list
131 uf
.type
= field
->type
;
132 uf
.data
.assign((const char*)field
->u
.raw
, btohs(field
->size
));
133 Unknowns
.push_back(uf
);
135 // return new pointer for next field
139 void Folder::ParseHeader(const Data
&data
, size_t &offset
)
141 // no header in Folder records
144 void Folder::ParseFields(const Data
&data
, size_t &offset
)
146 const unsigned char *finish
= ParseCommonFields(*this,
147 data
.GetData() + offset
, data
.GetData() + data
.GetSize());
148 offset
+= finish
- (data
.GetData() + offset
);
155 FolderType
= FolderSubtree
;
158 void Folder::Dump(std::ostream
&os
) const
160 static const char *FolderTypeString
[] = { "Subtree", "Deleted", "Inbox", "Outbox", "Sent", "Other"};
161 // static const char *FolderStatusString[] = { "Orphan", "Unfiled", "Filed" };
163 os
<< "Folder Records\n\n";
164 os
<< "Folder Name: " << FolderName
<< "\n";
165 os
<< "Folder Type: ";
166 if( FolderType
< FolderDraft
)
167 os
<< FolderTypeString
[FolderType
] << "\n";
168 else if( FolderType
== FolderDraft
)
171 os
<< "Unknown (" << std::hex
<< FolderType
<< ")\n";
172 os
<< "Folder Number: " << std::dec
<< FolderNumber
<< "\n";
173 os
<< "Folder Level: " << std::dec
<< FolderLevel
<< "\n";