2 /// \file r_timezone.cc
3 /// Record parsing class for the timezone database.
7 Copyright (C) 2005-2009, Net Direct Inc. (http://www.netdirect.ca/)
8 Copyright (C) 2008, 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 #include "r_timezone.h"
24 #include "record-internal.h"
25 #include "protostructs.h"
34 using namespace Barry::Protocol
;
39 ///////////////////////////////////////////////////////////////////////////////
42 // Timezone Field Codes
43 #define TZFC_INDEX 0x01
44 #define TZFC_NAME 0x02
45 #define TZFC_OFFSET 0x03
47 #define TZFC_STARTMONTH 0x06
48 #define TZFC_ENDMONTH 0x0B
49 #define TZFC_TZTYPE 0x64
51 #define TZFC_END 0xffff
53 static FieldLink
<Timezone
> TimezoneFieldLinks
[] = {
54 { TZFC_NAME
, "Name", 0, 0, &Timezone::TimeZoneName
, 0, 0, 0, 0, true },
55 { TZFC_END
, "End of List", 0, 0, 0, 0, 0, 0, 0, false },
67 const unsigned char* Timezone::ParseField(const unsigned char *begin
,
68 const unsigned char *end
,
71 const CommonField
*field
= (const CommonField
*) begin
;
73 // advance and check size
74 begin
+= COMMON_FIELD_HEADER_SIZE
+ btohs(field
->size
);
75 if( begin
> end
) // if begin==end, we are ok
78 if( !btohs(field
->size
) ) // if field has no size, something's up
81 if( field
->type
== TZFC_TZTYPE
) {
82 if( ( TZType
= field
->u
.uint32
) != 1 ) {
83 throw Error("Timezone::ParseField: Timezone Type is not valid");
88 // cycle through the type table
89 for( FieldLink
<Timezone
> *b
= TimezoneFieldLinks
;
93 if( b
->type
== field
->type
) {
95 std::string
&s
= this->*(b
->strMember
);
96 s
= ParseFieldString(field
);
97 if( b
->iconvNeeded
&& ic
)
99 return begin
; // done!
104 switch( field
->type
)
107 Index
= btohl(field
->u
.uint32
);
111 Offset
= btohs(field
->u
.int16
);
115 OffsetFraction
= Offset
% 60;
116 Offset
= Offset
/ 60;
119 OffsetFraction
= Offset
% 60;
120 Offset
= Offset
/ 60;
126 DSTOffset
= btohl(field
->u
.uint32
);
132 case TZFC_STARTMONTH
:
133 StartMonth
= btohl(field
->u
.uint32
);
137 EndMonth
= btohl(field
->u
.uint32
);
141 // if still not handled, add to the Unknowns list
143 uf
.type
= field
->type
;
144 uf
.data
.assign((const char*)field
->u
.raw
, btohs(field
->size
));
145 Unknowns
.push_back(uf
);
147 // return new pointer for next field
151 void Timezone::ParseHeader(const Data
&data
, size_t &offset
)
153 // no header in Task records
156 void Timezone::ParseFields(const Data
&data
, size_t &offset
, const IConverter
*ic
)
158 const unsigned char *finish
= ParseCommonFields(*this,
159 data
.GetData() + offset
, data
.GetData() + data
.GetSize(), ic
);
160 offset
+= finish
- (data
.GetData() + offset
);
163 void Timezone::Clear()
165 TimeZoneName
.clear();
179 void Timezone::Dump(std::ostream
&os
) const
181 static const char *month
[] = {
182 "Jan", "Feb", "Mar", "Apr", "May",
183 "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
186 os
<< "Task entry: 0x" << setbase(16) << RecordId
187 << " (" << (unsigned int)RecType
<< ")\n";
189 // cycle through the type table
190 for( const FieldLink
<Timezone
> *b
= TimezoneFieldLinks
;
195 const std::string
&s
= this->*(b
->strMember
);
197 os
<< " " << b
->name
<< ": " << s
<< "\n";
201 os
<< " Index: 0x" <<setw(2) << Index
<< "\n";
202 os
<< " Offset: " << (Left
? "-" : "+") << setbase(10) << Offset
<< "." << OffsetFraction
<< "\n";
203 os
<< " Use DST: " << (UseDST
? "true" : "false") << "\n";
205 if ((StartMonth
> 0) && (StartMonth
< 11))
206 os
<< "Start Month: " << month
[StartMonth
] << "\n";
208 os
<< "Start Month: unknown (" << setbase(10) << StartMonth
<< ")\n";
209 if ((EndMonth
> 0) && (EndMonth
< 11))
210 os
<< " End Month: " << month
[EndMonth
] << "\n";
212 os
<< " End Month: unknown (" << setbase(10) << EndMonth
<< ")\n";