lib: made Probe configurable to suppress some common USB errors
[barry/progweb.git] / src / r_timezone.h
bloba12f979381c5b47d7452fc1e4d0da0077d40fd3b
1 ///
2 /// \file r_timezone.h
3 /// Record parsing class for the timezone database.
4 ///
6 /*
7 Copyright (C) 2005-2012, 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 "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 Timezone
39 public:
40 typedef Barry::UnknownsType UnknownsType;
42 uint8_t RecType;
43 uint32_t RecordId;
45 uint8_t TZType;
46 uint32_t DSTOffset;
47 int32_t Index;
48 int32_t Offset;
49 int32_t OffsetFraction;
50 uint32_t StartMonth;
51 uint32_t EndMonth;
52 bool Left;
53 bool UseDST;
55 std::string TimeZoneName;
57 UnknownsType Unknowns;
59 public:
61 Timezone();
62 virtual ~Timezone();
64 const unsigned char* ParseField(const unsigned char *begin,
65 const unsigned char *end, const IConverter *ic = 0);
66 void ParseRecurrenceData(const void *data);
67 void BuildRecurrenceData(void *data);
68 uint8_t GetRecType() const { return RecType; }
69 uint32_t GetUniqueId() const { return RecordId; }
70 void SetIds(uint8_t Type, uint32_t Id) { RecType = Type; RecordId = Id; }
71 void ParseHeader(const Data &data, size_t &offset);
72 void ParseFields(const Data &data, size_t &offset, const IConverter *ic = 0);
73 void BuildHeader(Data &data, size_t &offset) const;
74 void BuildFields(Data &data, size_t &offset, const IConverter *ic = 0) const;
76 // operations (common among record classes)
77 void Clear();
78 void Dump(std::ostream &os) const;
79 std::string GetDescription() const;
81 bool operator<(const Timezone &other) const { return TimeZoneName < other.TimeZoneName; }
83 // database name
84 static const char * GetDBName() { return "Time Zones"; }
85 static uint8_t GetDefaultRecType() { return 2; }
87 // Generic Field Handle support
88 static const std::vector<FieldHandle<Timezone> >& GetFieldHandles();
91 BXEXPORT inline std::ostream& operator<<(std::ostream &os, const Timezone &msg) {
92 msg.Dump(os);
93 return os;
95 } // namespace Barry
97 #endif /* __BARRY_RECORD_TIMEZONE_H__*/