3 /// Blackberry database record parser class for calndar records.
7 Copyright (C) 2005-2008, 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__
36 // NOTE: All classes here must be container-safe! Perhaps add sorting
37 // operators in the future.
42 /// \addtogroup RecordParserClasses
45 class BXEXPORT Calendar
48 typedef std::vector
<UnknownField
> UnknownsType
;
58 time_t NotificationTime
; // 0 means notification is off
65 /// This lists the available settings found in the device.
66 /// This list is based on information from MS Outlook 2007
67 /// (Free ==0 and Busy == 2)
68 /// This is FBTYPE in RFC2445 and is defined as
69 /// FREE, BUSY, BUSY-UNAVAILABLE and BUSY-TENTATIVE
71 enum FreeBusyFlagType
{
77 FreeBusyFlagType FreeBusyFlag
;
82 /// This is also called classification in Evolution and it
83 /// is the equivilant of public or private in outlook
84 /// Private is set to 0x2 in Outlook
85 /// RFC2445 CLASS is PUBLIC, PRIVATE, CONFIDENTIAL
93 ClassFlagType ClassFlag
;
98 /// Note: interval can be used on all of these recurring types to
99 /// make it happen "every other time" or more, etc.
101 enum RecurringCodeType
{
102 Day
= 1, //< eg. every day
104 MonthByDate
= 3, //< eg. every month on the 12th
106 MonthByDay
= 4, //< eg. every month on 3rd Wed
107 //< set: DayOfWeek and WeekOfMonth
108 YearByDate
= 5, //< eg. every year on March 5
109 //< set: DayOfMonth and MonthOfYear
110 YearByDay
= 6, //< eg. every year on 3rd Wed of Jan
111 //< set: DayOfWeek, WeekOfMonth, and
113 Week
= 12 //< eg. every week on Mon and Fri
120 RecurringCodeType RecurringType
;
121 unsigned short Interval
; // must be >= 1
122 time_t RecurringEndTime
; // only pertains if Recurring is true
123 // sets the date and time when
124 // recurrence of this appointment
125 // should no longer occur
126 // If a perpetual appointment, this
127 // is 0xFFFFFFFF in the low level data
128 // Instead, set the following flag.
129 bool Perpetual
; // if true, this will always recur
130 unsigned short TimeZoneCode
; // the time zone originally used
131 // for the recurrence data...
132 // seems to have little use, but
133 // set to your current time zone
136 unsigned short // recurring details, depending on type
141 unsigned char WeekDays
; // bitmask, bit 0 = sunday
143 // FIXME - put these somewhere usable by both C and C++
144 #define CAL_WD_SUN 0x01
145 #define CAL_WD_MON 0x02
146 #define CAL_WD_TUE 0x04
147 #define CAL_WD_WED 0x08
148 #define CAL_WD_THU 0x10
149 #define CAL_WD_FRI 0x20
150 #define CAL_WD_SAT 0x40
153 UnknownsType Unknowns
;
156 const unsigned char* ParseField(const unsigned char *begin
,
157 const unsigned char *end
);
158 void ParseRecurrenceData(const void *data
);
159 void BuildRecurrenceData(void *data
);
165 // Parser / Builder API (see parser.h / builder.h)
166 uint8_t GetRecType() const { return RecType
; }
167 uint32_t GetUniqueId() const { return RecordId
; }
168 void SetIds(uint8_t Type
, uint32_t Id
) { RecType
= Type
; RecordId
= Id
; }
169 void ParseHeader(const Data
&data
, size_t &offset
);
170 void ParseFields(const Data
&data
, size_t &offset
);
171 void BuildHeader(Data
&data
, size_t &offset
) const;
172 void BuildFields(Data
&data
, size_t &offset
) const;
176 void Dump(std::ostream
&os
) const;
179 bool operator<(const Calendar
&other
) const { return StartTime
< other
.StartTime
; }
182 static const char * GetDBName() { return "Calendar"; }
183 static uint8_t GetDefaultRecType() { return 5; } // or 0?
186 BXEXPORT
inline std::ostream
& operator<<(std::ostream
&os
, const Calendar
&msg
) {