- minor adjustments to r_message.h and r_timezone.h
[barry.git] / src / r_timezone.h
blob0b7db9c05e249956fdb594a42b52da91cd071b5a
1 ///
2 /// \file r_timezone.h
3 /// Record parsing class for the timezone database.
4 ///
6 /*
7 Copyright (C) 2005-2008, 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 #ifndef __BARRY_RECORD_TIMEZONE_H__
24 #define __BARRY_RECORD_TIMEZONE_H__
26 #include "record.h"
27 #include <vector>
28 #include <string>
29 #include <stdint.h>
31 namespace Barry
34 class Timezone
36 public:
37 typedef std::vector<UnknownField> UnknownsType;
39 uint8_t RecType;
40 uint32_t RecordId;
42 uint8_t TZType;
43 uint32_t DSTOffset;
44 int32_t Index;
45 int32_t Offset;
46 int32_t OffsetFraction;
47 uint32_t StartMonth;
48 uint32_t EndMonth;
49 bool Left;
50 bool UseDST;
52 std::string TimeZoneName;
54 UnknownsType Unknowns;
56 public:
58 Timezone();
59 virtual ~Timezone();
61 const unsigned char* ParseField(const unsigned char *begin,
62 const unsigned char *end);
63 void ParseRecurrenceData(const void *data);
64 void BuildRecurrenceData(void *data);
65 uint8_t GetRecType() const { return RecType; }
66 uint32_t GetUniqueId() const { return RecordId; }
67 void SetIds(uint8_t Type, uint32_t Id) { RecType = Type; RecordId = Id; }
68 void ParseHeader(const Data &data, size_t &offset);
69 void ParseFields(const Data &data, size_t &offset);
70 void BuildHeader(Data &data, size_t &offset) const;
72 void Clear();
74 void Dump(std::ostream &os) const;
75 bool operator<(const Timezone &other) const { return TimeZoneName < other.TimeZoneName; }
77 // database name
78 static const char * GetDBName() { return "Time Zones"; }
79 static uint8_t GetDefaultRecType() { return 2; }
82 inline std::ostream& operator<<(std::ostream &os, const Timezone &msg) {
83 msg.Dump(os);
84 return os;
86 } // namespace Barry
88 #endif /* __BARRY_RECORD_TIMEZONE_H__*/