3 /// Blackberry database record parser class for calndar records.
7 Copyright (C) 2005-2009, Net Direct Inc. (http://www.netdirect.ca/)
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
18 See the GNU General Public License in the COPYING file at the
19 root directory of this project for more details.
22 #ifndef __BARRY_RECORD_CALENDAR_H__
23 #define __BARRY_RECORD_CALENDAR_H__
35 // forward declarations
39 // NOTE: All classes here must be container-safe! Perhaps add sorting
40 // operators in the future.
45 /// \addtogroup RecordParserClasses
48 class BXEXPORT Calendar
51 typedef std::vector
<UnknownField
> UnknownsType
;
61 time_t NotificationTime
; // 0 means notification is off
68 /// This lists the available settings found in the device.
69 /// This list is based on information from MS Outlook 2007
70 /// (Free ==0 and Busy == 2)
71 /// This is FBTYPE in RFC2445 and is defined as
72 /// FREE, BUSY, BUSY-UNAVAILABLE and BUSY-TENTATIVE
74 enum FreeBusyFlagType
{
80 FreeBusyFlagType FreeBusyFlag
;
85 /// This is also called classification in Evolution and it
86 /// is the equivilant of public or private in outlook
87 /// Private is set to 0x2 in Outlook
88 /// RFC2445 CLASS is PUBLIC, PRIVATE, CONFIDENTIAL
96 ClassFlagType ClassFlag
;
101 /// Note: interval can be used on all of these recurring types to
102 /// make it happen "every other time" or more, etc.
104 enum RecurringCodeType
{
105 Day
= 1, //< eg. every day
107 MonthByDate
= 3, //< eg. every month on the 12th
109 MonthByDay
= 4, //< eg. every month on 3rd Wed
110 //< set: DayOfWeek and WeekOfMonth
111 YearByDate
= 5, //< eg. every year on March 5
112 //< set: DayOfMonth and MonthOfYear
113 YearByDay
= 6, //< eg. every year on 3rd Wed of Jan
114 //< set: DayOfWeek, WeekOfMonth, and
116 Week
= 12 //< eg. every week on Mon and Fri
123 RecurringCodeType RecurringType
;
124 unsigned short Interval
; // must be >= 1
125 time_t RecurringEndTime
; // only pertains if Recurring is true
126 // sets the date and time when
127 // recurrence of this appointment
128 // should no longer occur
129 // If a perpetual appointment, this
130 // is 0xFFFFFFFF in the low level data
131 // Instead, set the following flag.
132 bool Perpetual
; // if true, this will always recur
133 unsigned short TimeZoneCode
; // the time zone originally used
134 // for the recurrence data...
135 // seems to have little use, but
136 // set to your current time zone
138 bool TimeZoneValid
; // true if the record contained a
141 unsigned short // recurring details, depending on type
146 unsigned char WeekDays
; // bitmask, bit 0 = sunday
148 // FIXME - put these somewhere usable by both C and C++
149 #define CAL_WD_SUN 0x01
150 #define CAL_WD_MON 0x02
151 #define CAL_WD_TUE 0x04
152 #define CAL_WD_WED 0x08
153 #define CAL_WD_THU 0x10
154 #define CAL_WD_FRI 0x20
155 #define CAL_WD_SAT 0x40
158 UnknownsType Unknowns
;
161 const unsigned char* ParseField(const unsigned char *begin
,
162 const unsigned char *end
, const IConverter
*ic
= 0);
163 void ParseRecurrenceData(const void *data
);
164 void BuildRecurrenceData(void *data
) const;
170 // Parser / Builder API (see parser.h / builder.h)
171 uint8_t GetRecType() const { return RecType
; }
172 uint32_t GetUniqueId() const { return RecordId
; }
173 void SetIds(uint8_t Type
, uint32_t Id
) { RecType
= Type
; RecordId
= Id
; }
174 void ParseHeader(const Data
&data
, size_t &offset
);
175 void ParseFields(const Data
&data
, size_t &offset
, const IConverter
*ic
= 0);
176 void BuildHeader(Data
&data
, size_t &offset
) const;
177 void BuildFields(Data
&data
, size_t &offset
, const IConverter
*ic
= 0) const;
181 void Dump(std::ostream
&os
) const;
184 bool operator<(const Calendar
&other
) const { return StartTime
< other
.StartTime
; }
187 static const char * GetDBName() { return "Calendar"; }
188 static uint8_t GetDefaultRecType() { return 5; } // or 0?
191 BXEXPORT
inline std::ostream
& operator<<(std::ostream
&os
, const Calendar
&msg
) {