summaryrefslogtreecommitdiff
path: root/libopie2/opiepim/core/orecur.cpp
Unidiff
Diffstat (limited to 'libopie2/opiepim/core/orecur.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiepim/core/orecur.cpp754
1 files changed, 410 insertions, 344 deletions
diff --git a/libopie2/opiepim/core/orecur.cpp b/libopie2/opiepim/core/orecur.cpp
index 033f264..5e2da25 100644
--- a/libopie2/opiepim/core/orecur.cpp
+++ b/libopie2/opiepim/core/orecur.cpp
@@ -29,12 +29,16 @@
29 29
30#include <time.h> 30#include "orecur.h"
31 31
32#include <qshared.h> 32/* OPIE */
33#include <opie2/otimezone.h>
34#include <qpe/timeconversion.h>
33 35
34#include <qtopia/timeconversion.h> 36/* QT */
37#include <qshared.h>
35 38
36#include <opie2/otimezone.h> 39/* STD */
37#include <opie2/orecur.h> 40#include <time.h>
38 41
39namespace Opie { 42namespace Opie {
43
40struct ORecur::Data : public QShared { 44struct ORecur::Data : public QShared {
@@ -69,4 +73,4 @@ ORecur::ORecur( const QMap<int, QString>& map )
69{ 73{
70 ORecur(); 74 ORecur();
71 fromMap( map ); 75 fromMap( map );
72} 76}
@@ -79,2 +83,4 @@ ORecur::ORecur( const ORecur& rec)
79} 83}
84
85
80ORecur::~ORecur() { 86ORecur::~ORecur() {
@@ -85,2 +91,4 @@ ORecur::~ORecur() {
85} 91}
92
93
86void ORecur::deref() { 94void ORecur::deref() {
@@ -91,2 +99,4 @@ void ORecur::deref() {
91} 99}
100
101
92bool ORecur::operator==( const ORecur& )const { 102bool ORecur::operator==( const ORecur& )const {
@@ -94,2 +104,4 @@ bool ORecur::operator==( const ORecur& )const {
94} 104}
105
106
95ORecur &ORecur::operator=( const ORecur& re) { 107ORecur &ORecur::operator=( const ORecur& re) {
@@ -103,2 +115,4 @@ ORecur &ORecur::operator=( const ORecur& re) {
103} 115}
116
117
104bool ORecur::doesRecur()const { 118bool ORecur::doesRecur()const {
@@ -106,2 +120,4 @@ bool ORecur::doesRecur()const {
106} 120}
121
122
107/* 123/*
@@ -120,2 +136,4 @@ bool ORecur::doesRecur( const QDate& date ) {
120} 136}
137
138
121// FIXME unuglify! 139// FIXME unuglify!
@@ -131,2 +149,4 @@ bool ORecur::nextOcurrence( const QDate& from, QDate& next ) {
131} 149}
150
151
132bool ORecur::p_nextOccurrence( const QDate& from, QDate& next ) { 152bool ORecur::p_nextOccurrence( const QDate& from, QDate& next ) {
@@ -144,7 +164,7 @@ bool ORecur::p_nextOccurrence( const QDate& from, QDate& next ) {
144 if (hasEndDate() && endDate() < from) 164 if (hasEndDate() && endDate() < from)
145 return FALSE; 165 return FALSE;
146 166
147 if (start() >= from ) { 167 if (start() >= from ) {
148 next = start(); 168 next = start();
149 return TRUE; 169 return TRUE;
150 } 170 }
@@ -152,253 +172,255 @@ bool ORecur::p_nextOccurrence( const QDate& from, QDate& next ) {
152 switch ( type() ) { 172 switch ( type() ) {
153 case Weekly: 173 case Weekly:
154 /* weekly is just daily by 7 */ 174 /* weekly is just daily by 7 */
155 /* first convert the repeatPattern.Days() mask to the next 175 /* first convert the repeatPattern.Days() mask to the next
156 day of week valid after from */ 176 day of week valid after from */
157 dayOfWeek = from.dayOfWeek(); 177 dayOfWeek = from.dayOfWeek();
158 dayOfWeek--; /* we want 0-6, doco for above specs 1-7 */ 178 dayOfWeek--; /* we want 0-6, doco for above specs 1-7 */
159 179
160 /* this is done in case freq > 1 and from in week not 180 /* this is done in case freq > 1 and from in week not
161 for this round */ 181 for this round */
162 // firstOfWeek = 0; this is already done at decl. 182 // firstOfWeek = 0; this is already done at decl.
163 while(!((1 << firstOfWeek) & days() )) 183 while(!((1 << firstOfWeek) & days() ))
164 firstOfWeek++; 184 firstOfWeek++;
165 185
166 /* there is at least one 'day', or there would be no event */ 186 /* there is at least one 'day', or there would be no event */
167 while(!((1 << (dayOfWeek % 7)) & days() )) 187 while(!((1 << (dayOfWeek % 7)) & days() ))
168 dayOfWeek++; 188 dayOfWeek++;
169 189
170 dayOfWeek = dayOfWeek % 7; /* the actual day of week */ 190 dayOfWeek = dayOfWeek % 7; /* the actual day of week */
171 dayOfWeek -= start().dayOfWeek() -1; 191 dayOfWeek -= start().dayOfWeek() -1;
172 192
173 firstOfWeek = firstOfWeek % 7; /* the actual first of week */ 193 firstOfWeek = firstOfWeek % 7; /* the actual first of week */
174 firstOfWeek -= start().dayOfWeek() -1; 194 firstOfWeek -= start().dayOfWeek() -1;
175 195
176 // dayOfWeek may be negitive now 196 // dayOfWeek may be negitive now
177 // day of week is number of days to add to start day 197 // day of week is number of days to add to start day
178 198
179 freq *= 7; 199 freq *= 7;
180 // FALL-THROUGH !!!!! 200 // FALL-THROUGH !!!!!
181 case Daily: 201 case Daily:
182 // the add is for the possible fall through from weekly */ 202 // the add is for the possible fall through from weekly */
183 if(start().addDays(dayOfWeek) > from) { 203 if(start().addDays(dayOfWeek) > from) {
184 /* first week exception */ 204 /* first week exception */
185 next = QDate(start().addDays(dayOfWeek) ); 205 next = QDate(start().addDays(dayOfWeek) );
186 if ((next > endDate()) 206 if ((next > endDate())
187 && hasEndDate() ) 207 && hasEndDate() )
188 return FALSE; 208 return FALSE;
189 return TRUE; 209 return TRUE;
190 } 210 }
191 /* if from is middle of a non-week */ 211 /* if from is middle of a non-week */
192 212
193 diff = start().addDays(dayOfWeek).daysTo(from) % freq; 213 diff = start().addDays(dayOfWeek).daysTo(from) % freq;
194 diff2 = start().addDays(firstOfWeek).daysTo(from) % freq; 214 diff2 = start().addDays(firstOfWeek).daysTo(from) % freq;
195 215
196 if(diff != 0) 216 if(diff != 0)
197 diff = freq - diff; 217 diff = freq - diff;
198 if(diff2 != 0) 218 if(diff2 != 0)
199 diff2 = freq - diff2; 219 diff2 = freq - diff2;
200 diff = QMIN(diff, diff2); 220 diff = QMIN(diff, diff2);
201 221
202 next = QDate(from.addDays(diff)); 222 next = QDate(from.addDays(diff));
203 if ( (next > endDate()) 223 if ( (next > endDate())
204 && hasEndDate() ) 224 && hasEndDate() )
205 return FALSE; 225 return FALSE;
206 return TRUE; 226 return TRUE;
207 case MonthlyDay: 227 case MonthlyDay:
208 iday = from.day(); 228 iday = from.day();
209 iyear = from.year(); 229 iyear = from.year();
210 imonth = from.month(); 230 imonth = from.month();
211 /* find equivelent day of month for this month */ 231 /* find equivelent day of month for this month */
212 dayOfWeek = start().dayOfWeek(); 232 dayOfWeek = start().dayOfWeek();
213 weekOfMonth = (start().day() - 1) / 7; 233 weekOfMonth = (start().day() - 1) / 7;
214 234
215 /* work out when the next valid month is */ 235 /* work out when the next valid month is */
216 a = from.year() - start().year(); 236 a = from.year() - start().year();
217 a *= 12; 237 a *= 12;
218 a = a + (imonth - start().month()); 238 a = a + (imonth - start().month());
219 /* a is e.start()monthsFrom(from); */ 239 /* a is e.start()monthsFrom(from); */
220 if(a % freq) { 240 if(a % freq) {
221 a = freq - (a % freq); 241 a = freq - (a % freq);
222 imonth = from.month() + a; 242 imonth = from.month() + a;
223 if (imonth > 12) { 243 if (imonth > 12) {
224 imonth--; 244 imonth--;
225 iyear += imonth / 12; 245 iyear += imonth / 12;
226 imonth = imonth % 12; 246 imonth = imonth % 12;
227 imonth++; 247 imonth++;
228 } 248 }
229 } 249 }
230 /* imonth is now the first month after or on 250 /* imonth is now the first month after or on
231 from that matches the frequency given */ 251 from that matches the frequency given */
232 252
233 /* find for this month */ 253 /* find for this month */
234 tmpDate = QDate( iyear, imonth, 1 ); 254 tmpDate = QDate( iyear, imonth, 1 );
235 255
236 iday = 1; 256 iday = 1;
237 iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7; 257 iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7;
238 iday += 7 * weekOfMonth; 258 iday += 7 * weekOfMonth;
239 while (iday > tmpDate.daysInMonth()) { 259 while (iday > tmpDate.daysInMonth()) {
240 imonth += freq; 260 imonth += freq;
241 if (imonth > 12) { 261 if (imonth > 12) {
242 imonth--; 262 imonth--;
243 iyear += imonth / 12; 263 iyear += imonth / 12;
244 imonth = imonth % 12; 264 imonth = imonth % 12;
245 imonth++; 265 imonth++;
246 } 266 }
247 tmpDate = QDate( iyear, imonth, 1 ); 267 tmpDate = QDate( iyear, imonth, 1 );
248 /* these loops could go for a while, check end case now */ 268 /* these loops could go for a while, check end case now */
249 if ((tmpDate > endDate()) && hasEndDate() ) 269 if ((tmpDate > endDate()) && hasEndDate() )
250 return FALSE; 270 return FALSE;
251 iday = 1; 271 iday = 1;
252 iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7; 272 iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7;
253 iday += 7 * weekOfMonth; 273 iday += 7 * weekOfMonth;
254 } 274 }
255 tmpDate = QDate(iyear, imonth, iday); 275 tmpDate = QDate(iyear, imonth, iday);
256 276
257 if (tmpDate >= from) { 277 if (tmpDate >= from) {
258 next = tmpDate; 278 next = tmpDate;
259 if ((next > endDate() ) && hasEndDate() ) 279 if ((next > endDate() ) && hasEndDate() )
260 return FALSE; 280 return FALSE;
261 return TRUE; 281 return TRUE;
262 } 282 }
263 283
264 /* need to find the next iteration */ 284 /* need to find the next iteration */
265 do { 285 do {
266 imonth += freq; 286 imonth += freq;
267 if (imonth > 12) { 287 if (imonth > 12) {
268 imonth--; 288 imonth--;
269 iyear += imonth / 12; 289 iyear += imonth / 12;
270 imonth = imonth % 12; 290 imonth = imonth % 12;
271 imonth++; 291 imonth++;
272 } 292 }
273 tmpDate = QDate( iyear, imonth, 1 ); 293 tmpDate = QDate( iyear, imonth, 1 );
274 /* these loops could go for a while, check end case now */ 294 /* these loops could go for a while, check end case now */
275 if ((tmpDate > endDate()) && hasEndDate() ) 295 if ((tmpDate > endDate()) && hasEndDate() )
276 return FALSE; 296 return FALSE;
277 iday = 1; 297 iday = 1;
278 iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7; 298 iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7;
279 iday += 7 * weekOfMonth; 299 iday += 7 * weekOfMonth;
280 } while (iday > tmpDate.daysInMonth()); 300 } while (iday > tmpDate.daysInMonth());
281 tmpDate = QDate(iyear, imonth, iday); 301 tmpDate = QDate(iyear, imonth, iday);
282 302
283 next = tmpDate; 303 next = tmpDate;
284 if ((next > endDate()) && hasEndDate() ) 304 if ((next > endDate()) && hasEndDate() )
285 return FALSE; 305 return FALSE;
286 return TRUE; 306 return TRUE;
287 case MonthlyDate: 307 case MonthlyDate:
288 iday = start().day(); 308 iday = start().day();
289 iyear = from.year(); 309 iyear = from.year();
290 imonth = from.month(); 310 imonth = from.month();
291 311
292 a = from.year() - start().year(); 312 a = from.year() - start().year();
293 a *= 12; 313 a *= 12;
294 a = a + (imonth - start().month()); 314 a = a + (imonth - start().month());
295 /* a is e.start()monthsFrom(from); */ 315 /* a is e.start()monthsFrom(from); */
296 if(a % freq) { 316 if(a % freq) {
297 a = freq - (a % freq); 317 a = freq - (a % freq);
298 imonth = from.month() + a; 318 imonth = from.month() + a;
299 if (imonth > 12) { 319 if (imonth > 12) {
300 imonth--; 320 imonth--;
301 iyear += imonth / 12; 321 iyear += imonth / 12;
302 imonth = imonth % 12; 322 imonth = imonth % 12;
303 imonth++; 323 imonth++;
304 } 324 }
305 } 325 }
306 /* imonth is now the first month after or on 326 /* imonth is now the first month after or on
307 from that matches the frequencey given */ 327 from that matches the frequencey given */
308 328
309 /* this could go for a while, worse case, 4*12 iterations, probably */ 329 /* this could go for a while, worse case, 4*12 iterations, probably */
310 while(!QDate::isValid(iyear, imonth, iday) ) { 330 while(!QDate::isValid(iyear, imonth, iday) ) {
311 imonth += freq; 331 imonth += freq;
312 if (imonth > 12) { 332 if (imonth > 12) {
313 imonth--; 333 imonth--;
314 iyear += imonth / 12; 334 iyear += imonth / 12;
315 imonth = imonth % 12; 335 imonth = imonth % 12;
316 imonth++; 336 imonth++;
317 } 337 }
318 /* these loops could go for a while, check end case now */ 338 /* these loops could go for a while, check end case now */
319 if ((QDate(iyear, imonth, 1) > endDate()) && hasEndDate() ) 339 if ((QDate(iyear, imonth, 1) > endDate()) && hasEndDate() )
320 return FALSE; 340 return FALSE;
321 } 341 }
322 342
323 if(QDate(iyear, imonth, iday) >= from) { 343 if(QDate(iyear, imonth, iday) >= from) {
324 /* done */ 344 /* done */
325 next = QDate(iyear, imonth, iday); 345 next = QDate(iyear, imonth, iday);
326 if ((next > endDate()) && hasEndDate() ) 346 if ((next > endDate()) && hasEndDate() )
327 return FALSE; 347 return FALSE;
328 return TRUE; 348 return TRUE;
329 } 349 }
330 350
331 /* ok, need to cycle */ 351 /* ok, need to cycle */
332 imonth += freq; 352 imonth += freq;
333 imonth--; 353 imonth--;
334 iyear += imonth / 12; 354 iyear += imonth / 12;
335 imonth = imonth % 12; 355 imonth = imonth % 12;
336 imonth++; 356 imonth++;
337 357
338 while(!QDate::isValid(iyear, imonth, iday) ) { 358 while(!QDate::isValid(iyear, imonth, iday) ) {
339 imonth += freq; 359 imonth += freq;
340 imonth--; 360 imonth--;
341 iyear += imonth / 12; 361 iyear += imonth / 12;
342 imonth = imonth % 12; 362 imonth = imonth % 12;
343 imonth++; 363 imonth++;
344 if ((QDate(iyear, imonth, 1) > endDate()) && hasEndDate() ) 364 if ((QDate(iyear, imonth, 1) > endDate()) && hasEndDate() )
345 return FALSE; 365 return FALSE;
346 } 366 }
347 367
348 next = QDate(iyear, imonth, iday); 368 next = QDate(iyear, imonth, iday);
349 if ((next > endDate()) && hasEndDate() ) 369 if ((next > endDate()) && hasEndDate() )
350 return FALSE; 370 return FALSE;
351 return TRUE; 371 return TRUE;
352 case Yearly: 372 case Yearly:
353 iday = start().day(); 373 iday = start().day();
354 imonth = start().month(); 374 imonth = start().month();
355 iyear = from.year(); // after all, we want to start in this year 375 iyear = from.year(); // after all, we want to start in this year
356 376
357 diff = 1; 377 diff = 1;
358 if(imonth == 2 && iday > 28) { 378 if(imonth == 2 && iday > 28) {
359 /* leap year, and it counts, calculate actual frequency */ 379 /* leap year, and it counts, calculate actual frequency */
360 if(freq % 4) 380 if(freq % 4)
361 if (freq % 2) 381 if (freq % 2)
362 freq = freq * 4; 382 freq = freq * 4;
363 else 383 else
364 freq = freq * 2; 384 freq = freq * 2;
365 /* else divides by 4 already, leave freq alone */ 385 /* else divides by 4 already, leave freq alone */
366 diff = 4; 386 diff = 4;
367 } 387 }
368 388
369 a = from.year() - start().year(); 389 a = from.year() - start().year();
370 if(a % freq) { 390 if(a % freq) {
371 a = freq - (a % freq); 391 a = freq - (a % freq);
372 iyear = iyear + a; 392 iyear = iyear + a;
373 } 393 }
374 394
375 /* under the assumption we won't hit one of the special not-leap years twice */ 395 /* under the assumption we won't hit one of the special not-leap years twice */
376 if(!QDate::isValid(iyear, imonth, iday)) { 396 if(!QDate::isValid(iyear, imonth, iday)) {
377 /* must have been skipping by leap years and hit one that wasn't, (e.g. 2100) */ 397 /* must have been skipping by leap years and hit one that wasn't, (e.g. 2100) */
378 iyear += freq; 398 iyear += freq;
379 } 399 }
380 400
381 if(QDate(iyear, imonth, iday) >= from) { 401 if(QDate(iyear, imonth, iday) >= from) {
382 next = QDate(iyear, imonth, iday); 402 next = QDate(iyear, imonth, iday);
383 403
384 if ((next > endDate()) && hasEndDate() ) 404 if ((next > endDate()) && hasEndDate() )
385 return FALSE; 405 return FALSE;
386 return TRUE; 406 return TRUE;
387 } 407 }
388 /* iyear == from.year(), need to advance again */ 408 /* iyear == from.year(), need to advance again */
389 iyear += freq; 409 iyear += freq;
390 /* under the assumption we won't hit one of the special not-leap years twice */ 410 /* under the assumption we won't hit one of the special not-leap years twice */
391 if(!QDate::isValid(iyear, imonth, iday)) { 411 if(!QDate::isValid(iyear, imonth, iday)) {
392 /* must have been skipping by leap years and hit one that wasn't, (e.g. 2100) */ 412 /* must have been skipping by leap years and hit one that wasn't, (e.g. 2100) */
393 iyear += freq; 413 iyear += freq;
394 } 414 }
395 415
396 next = QDate(iyear, imonth, iday); 416 next = QDate(iyear, imonth, iday);
397 if ((next > endDate()) && hasEndDate() ) 417 if ((next > endDate()) && hasEndDate() )
398 return FALSE; 418 return FALSE;
399 return TRUE; 419 return TRUE;
400 default: 420 default:
401 return FALSE; 421 return FALSE;
402 } 422 }
403} 423}
424
425
404ORecur::RepeatType ORecur::type()const{ 426ORecur::RepeatType ORecur::type()const{
@@ -406,2 +428,4 @@ ORecur::RepeatType ORecur::type()const{
406} 428}
429
430
407int ORecur::frequency()const { 431int ORecur::frequency()const {
@@ -409,2 +433,4 @@ int ORecur::frequency()const {
409} 433}
434
435
410int ORecur::position()const { 436int ORecur::position()const {
@@ -412,2 +438,4 @@ int ORecur::position()const {
412} 438}
439
440
413char ORecur::days() const{ 441char ORecur::days() const{
@@ -415,2 +443,4 @@ char ORecur::days() const{
415} 443}
444
445
416bool ORecur::hasEndDate()const { 446bool ORecur::hasEndDate()const {
@@ -418,2 +448,4 @@ bool ORecur::hasEndDate()const {
418} 448}
449
450
419QDate ORecur::endDate()const { 451QDate ORecur::endDate()const {
@@ -421,2 +453,4 @@ QDate ORecur::endDate()const {
421} 453}
454
455
422QDate ORecur::start()const{ 456QDate ORecur::start()const{
@@ -424,2 +458,4 @@ QDate ORecur::start()const{
424} 458}
459
460
425QDateTime ORecur::createdDateTime()const { 461QDateTime ORecur::createdDateTime()const {
@@ -427,2 +463,4 @@ QDateTime ORecur::createdDateTime()const {
427} 463}
464
465
428int ORecur::repetition()const { 466int ORecur::repetition()const {
@@ -430,2 +468,4 @@ int ORecur::repetition()const {
430} 468}
469
470
431QString ORecur::service()const { 471QString ORecur::service()const {
@@ -433,2 +473,4 @@ QString ORecur::service()const {
433} 473}
474
475
434ORecur::ExceptionList& ORecur::exceptions() { 476ORecur::ExceptionList& ORecur::exceptions() {
@@ -436,2 +478,4 @@ ORecur::ExceptionList& ORecur::exceptions() {
436} 478}
479
480
437void ORecur::setType( const RepeatType& z) { 481void ORecur::setType( const RepeatType& z) {
@@ -440,2 +484,4 @@ void ORecur::setType( const RepeatType& z) {
440} 484}
485
486
441void ORecur::setFrequency( int freq ) { 487void ORecur::setFrequency( int freq ) {
@@ -444,2 +490,4 @@ void ORecur::setFrequency( int freq ) {
444} 490}
491
492
445void ORecur::setPosition( int pos ) { 493void ORecur::setPosition( int pos ) {
@@ -448,2 +496,4 @@ void ORecur::setPosition( int pos ) {
448} 496}
497
498
449void ORecur::setDays( char c ) { 499void ORecur::setDays( char c ) {
@@ -452,2 +502,4 @@ void ORecur::setDays( char c ) {
452} 502}
503
504
453void ORecur::setEndDate( const QDate& dt) { 505void ORecur::setEndDate( const QDate& dt) {
@@ -456,2 +508,4 @@ void ORecur::setEndDate( const QDate& dt) {
456} 508}
509
510
457void ORecur::setCreatedDateTime( const QDateTime& t) { 511void ORecur::setCreatedDateTime( const QDateTime& t) {
@@ -460,2 +514,4 @@ void ORecur::setCreatedDateTime( const QDateTime& t) {
460} 514}
515
516
461void ORecur::setHasEndDate( bool b) { 517void ORecur::setHasEndDate( bool b) {
@@ -464,2 +520,4 @@ void ORecur::setHasEndDate( bool b) {
464} 520}
521
522
465void ORecur::setRepitition( int rep ) { 523void ORecur::setRepitition( int rep ) {
@@ -468,2 +526,4 @@ void ORecur::setRepitition( int rep ) {
468} 526}
527
528
469void ORecur::setService( const QString& app ) { 529void ORecur::setService( const QString& app ) {
@@ -472,2 +532,4 @@ void ORecur::setService( const QString& app ) {
472} 532}
533
534
473void ORecur::setStart( const QDate& dt ) { 535void ORecur::setStart( const QDate& dt ) {
@@ -476,2 +538,4 @@ void ORecur::setStart( const QDate& dt ) {
476} 538}
539
540
477void ORecur::checkOrModify() { 541void ORecur::checkOrModify() {
@@ -494,2 +558,4 @@ void ORecur::checkOrModify() {
494} 558}
559
560
495QString ORecur::toString()const { 561QString ORecur::toString()const {
@@ -502,5 +568,5 @@ QString ORecur::toString()const {
502 if (data->days > 0 ) 568 if (data->days > 0 )
503 buf += " rweekdays=\"" + recMap[ORecur::RWeekdays] + "\""; 569 buf += " rweekdays=\"" + recMap[ORecur::RWeekdays] + "\"";
504 if ( data->pos != 0 ) 570 if ( data->pos != 0 )
505 buf += " rposition=\"" + recMap[ORecur::RPosition] + "\""; 571 buf += " rposition=\"" + recMap[ORecur::RPosition] + "\"";
506 572
@@ -509,5 +575,5 @@ QString ORecur::toString()const {
509 if ( data->hasEnd ) 575 if ( data->hasEnd )
510 buf += " enddt=\"" 576 buf += " enddt=\""
511 + recMap[ORecur::EndDate] 577 + recMap[ORecur::EndDate]
512 + "\""; 578 + "\"";
513 buf += " created=\"" + recMap[ORecur::Created] + "\""; 579 buf += " created=\"" + recMap[ORecur::Created] + "\"";
@@ -524,26 +590,26 @@ QString ORecur::rTypeString() const
524{ 590{
525 QString retString; 591 QString retString;
526 switch ( data->type ) { 592 switch ( data->type ) {
527 case ORecur::Daily: 593 case ORecur::Daily:
528 retString = "Daily"; 594 retString = "Daily";
529 break; 595 break;
530 case ORecur::Weekly: 596 case ORecur::Weekly:
531 retString = "Weekly"; 597 retString = "Weekly";
532 break; 598 break;
533 case ORecur::MonthlyDay: 599 case ORecur::MonthlyDay:
534 retString = "MonthlyDay"; 600 retString = "MonthlyDay";
535 break; 601 break;
536 case ORecur::MonthlyDate: 602 case ORecur::MonthlyDate:
537 retString = "MonthlyDate"; 603 retString = "MonthlyDate";
538 break; 604 break;
539 case ORecur::Yearly: 605 case ORecur::Yearly:
540 retString = "Yearly"; 606 retString = "Yearly";
541 break; 607 break;
542 default: 608 default:
543 retString = "NoRepeat"; 609 retString = "NoRepeat";
544 break; 610 break;
545 611
546 } 612 }
547 613
548 return retString; 614 return retString;
549} 615}
@@ -552,12 +618,12 @@ QMap<QString, ORecur::RepeatType> ORecur::rTypeValueConvertMap() const
552{ 618{
553 QMap<QString, RepeatType> convertMap; 619 QMap<QString, RepeatType> convertMap;
554 620
555 convertMap.insert( QString( "Daily" ), ORecur::Daily ); 621 convertMap.insert( QString( "Daily" ), ORecur::Daily );
556 convertMap.insert( QString( "Weekly" ), ORecur::Weekly ); 622 convertMap.insert( QString( "Weekly" ), ORecur::Weekly );
557 convertMap.insert( QString( "MonthlyDay" ), ORecur::MonthlyDay ); 623 convertMap.insert( QString( "MonthlyDay" ), ORecur::MonthlyDay );
558 convertMap.insert( QString( "MonthlyDate" ), ORecur::MonthlyDate ); 624 convertMap.insert( QString( "MonthlyDate" ), ORecur::MonthlyDate );
559 convertMap.insert( QString( "Yearly" ), ORecur::Yearly ); 625 convertMap.insert( QString( "Yearly" ), ORecur::Yearly );
560 convertMap.insert( QString( "NoRepeat" ), ORecur::NoRepeat ); 626 convertMap.insert( QString( "NoRepeat" ), ORecur::NoRepeat );
561 627
562 return convertMap; 628 return convertMap;
563} 629}
@@ -567,30 +633,30 @@ QMap<int, QString> ORecur::toMap() const
567{ 633{
568 QMap<int, QString> retMap; 634 QMap<int, QString> retMap;
569 635
570 retMap.insert( ORecur::RType, rTypeString() ); 636 retMap.insert( ORecur::RType, rTypeString() );
571 retMap.insert( ORecur::RWeekdays, QString::number( static_cast<int>( data->days ) ) ); 637 retMap.insert( ORecur::RWeekdays, QString::number( static_cast<int>( data->days ) ) );
572 retMap.insert( ORecur::RPosition, QString::number(data->pos ) ); 638 retMap.insert( ORecur::RPosition, QString::number(data->pos ) );
573 retMap.insert( ORecur::RFreq, QString::number( data->freq ) ); 639 retMap.insert( ORecur::RFreq, QString::number( data->freq ) );
574 retMap.insert( ORecur::RHasEndDate, QString::number( static_cast<int>( data->hasEnd ) ) ); 640 retMap.insert( ORecur::RHasEndDate, QString::number( static_cast<int>( data->hasEnd ) ) );
575 if( data -> hasEnd ) 641 if( data -> hasEnd )
576 retMap.insert( ORecur::EndDate, QString::number( OTimeZone::utc().fromUTCDateTime( QDateTime( data->end, QTime(12,0,0) ) ) ) ); 642 retMap.insert( ORecur::EndDate, QString::number( OTimeZone::utc().fromUTCDateTime( QDateTime( data->end, QTime(12,0,0) ) ) ) );
577 retMap.insert( ORecur::Created, QString::number( OTimeZone::utc().fromUTCDateTime( data->create ) ) ); 643 retMap.insert( ORecur::Created, QString::number( OTimeZone::utc().fromUTCDateTime( data->create ) ) );
578 644
579 if ( data->list.isEmpty() ) return retMap; 645 if ( data->list.isEmpty() ) return retMap;
580 646
581 // save exceptions list here!! 647 // save exceptions list here!!
582 ExceptionList::ConstIterator it; 648 ExceptionList::ConstIterator it;
583 ExceptionList list = data->list; 649 ExceptionList list = data->list;
584 QString exceptBuf; 650 QString exceptBuf;
585 QDate date; 651 QDate date;
586 for ( it = list.begin(); it != list.end(); ++it ) { 652 for ( it = list.begin(); it != list.end(); ++it ) {
587 date = (*it); 653 date = (*it);
588 if ( it != list.begin() ) exceptBuf += " "; 654 if ( it != list.begin() ) exceptBuf += " ";
589 655
590 exceptBuf += QCString().sprintf("%04d%02d%02d", date.year(), date.month(), date.day() ); 656 exceptBuf += QCString().sprintf("%04d%02d%02d", date.year(), date.month(), date.day() );
591 } 657 }
592 658
593 retMap.insert( ORecur::Exceptions, exceptBuf ); 659 retMap.insert( ORecur::Exceptions, exceptBuf );
594 660
595 return retMap; 661 return retMap;
596} 662}
@@ -599,27 +665,27 @@ void ORecur::fromMap( const QMap<int, QString>& map )
599{ 665{
600 QMap<QString, RepeatType> repTypeMap = rTypeValueConvertMap(); 666 QMap<QString, RepeatType> repTypeMap = rTypeValueConvertMap();
601 667
602 data -> type = repTypeMap[ map [ORecur::RType] ]; 668 data -> type = repTypeMap[ map [ORecur::RType] ];
603 data -> days = (char) map[ ORecur::RWeekdays ].toInt(); 669 data -> days = (char) map[ ORecur::RWeekdays ].toInt();
604 data -> pos = map[ ORecur::RPosition ].toInt(); 670 data -> pos = map[ ORecur::RPosition ].toInt();
605 data -> freq = map[ ORecur::RFreq ].toInt(); 671 data -> freq = map[ ORecur::RFreq ].toInt();
606 data -> hasEnd= map[ ORecur::RHasEndDate ].toInt() ? true : false; 672 data -> hasEnd= map[ ORecur::RHasEndDate ].toInt() ? true : false;
607 OTimeZone utc = OTimeZone::utc(); 673 OTimeZone utc = OTimeZone::utc();
608 if ( data -> hasEnd ){ 674 if ( data -> hasEnd ){
609 data -> end = utc.fromUTCDateTime( (time_t) map[ ORecur::EndDate ].toLong() ).date(); 675 data -> end = utc.fromUTCDateTime( (time_t) map[ ORecur::EndDate ].toLong() ).date();
610 } 676 }
611 data -> create = utc.fromUTCDateTime( (time_t) map[ ORecur::Created ].toLong() ).date(); 677 data -> create = utc.fromUTCDateTime( (time_t) map[ ORecur::Created ].toLong() ).date();
612 678
613#if 0 679#if 0
614 // FIXME: Exceptions currently not supported... 680 // FIXME: Exceptions currently not supported...
615 // Convert the list of exceptions from QString into ExceptionList 681 // Convert the list of exceptions from QString into ExceptionList
616 data -> list.clear(); 682 data -> list.clear();
617 QString exceptStr = map[ ORecur::Exceptions ]; 683 QString exceptStr = map[ ORecur::Exceptions ];
618 QStringList exceptList = QStringList::split( " ", exceptStr ); 684 QStringList exceptList = QStringList::split( " ", exceptStr );
619 ... 685 ...
620#endif 686#endif
621 687
622 688
623} 689}
624 690
625} \ No newline at end of file 691}