⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datebookdb.cpp

📁 Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3.10平台上编译为嵌入式图形界面操作系统。
💻 CPP
📖 第 1 页 / 共 2 页
字号:
/************************************************************************ Copyright (C) 2000-2005 Trolltech AS.  All rights reserved.**** This file is part of the Qtopia Environment.** ** This program is free software; you can redistribute it and/or modify it** under the terms of the GNU General Public License as published by the** Free Software Foundation; either version 2 of the License, or (at your** option) any later version.** ** A copy of the GNU GPL license version 2 is included in this package as ** LICENSE.GPL.**** This program is distributed in the hope that it will be useful, but** WITHOUT ANY WARRANTY; without even the implied warranty of** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ** See the GNU General Public License for more details.**** In addition, as a special exception Trolltech gives permission to link** the code of this program with Qtopia applications copyrighted, developed** and distributed by Trolltech under the terms of the Qtopia Personal Use** License Agreement. You must comply with the GNU General Public License** in all respects for all of the code used other than the applications** licensed under the Qtopia Personal Use License Agreement. If you modify** this file, you may extend this exception to your version of the file,** but you are not obligated to do so. If you do not wish to do so, delete** this exception statement from your version.** ** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#include <qasciidict.h>#include <qfile.h>#include <qdir.h>#include <qmessagebox.h>#include <qstring.h>#include <qtextcodec.h>#include <qtextstream.h>#include <qtl.h>#include <qtopia/alarmserver.h>#include <qtopia/global.h>#include <qtopia/private/event.h>#include "datebookdb.h"#include <qtopia/stringutil.h>#include <qtopia/timeconversion.h>#include <errno.h>#include <stdlib.h>#include <qapplication.h> // for translateQString qtopia_internal_homeDirPath();/*!  \class DateBookDB  \brief The DateBookDB class is used to access event information in the  Qtopia database.  This class is now obsolete, the class DateBookAccess in the Qtopia PIM library  should be used instead.  \ingroup qtopiaemb  \obsolete  \sa DateBookIterator DateBookAccess*/class DateBookDBPrivate{public:    bool clean;  // indcate whether we need to write to disk...};// QDOC_SKIP_BEGIN// Helper functionsstatic QString dateBookJournalFile(){    QString str = ::qtopia_internal_homeDirPath();     return QString( str +"/.caljournal" );}static QString dateBookFilename(){    return Global::applicationFileName("datebook","datebook.xml");}/* Calculating the next event of a recuring event is actually   computationally inexpensive, esp. compared to checking each day   individually.  There are bad worse cases for say the 29th of   february or the 31st of some other months.  However   these are still bounded */bool nextOccurance(const Event &e, const QDate &from, QDateTime &next){    // easy checks, first are we too far in the future or too far in the past?    QDate tmpDate;    int freq = e.repeatPattern().frequency;    int diff, diff2, a;    int iday, imonth, iyear;    int dayOfWeek = 0;    int firstOfWeek = 0;    int weekOfMonth;        if (e.repeatPattern().hasEndDate && e.repeatPattern().endDate() < from)	return FALSE;    if (e.start() >= from) {	next = e.start();	return TRUE;    }    switch ( e.repeatPattern().type ) {	case Event::Weekly:	    /* weekly is just daily by 7 */	    /* first convert the repeatPattern.Days() mask to the next	       day of week valid after from */            dayOfWeek = from.dayOfWeek();	    dayOfWeek--; /* we want 0-6, doco for above specs 1-7 */	    /* this is done in case freq > 1 and from in week not	       for this round */	    // firstOfWeek = 0; this is already done at decl.	    while(!((1 << firstOfWeek) & e.repeatPattern().days))		firstOfWeek++;	    /* there is at least one 'day', or there would be no event */	    while(!((1 << (dayOfWeek % 7)) & e.repeatPattern().days))		dayOfWeek++;	    dayOfWeek = dayOfWeek % 7; /* the actual day of week */	    dayOfWeek -= e.start().date().dayOfWeek() -1;	    firstOfWeek = firstOfWeek % 7; /* the actual first of week */	    firstOfWeek -= e.start().date().dayOfWeek() -1;	    // dayOfWeek may be negitive now	    // day of week is number of days to add to start day	    freq *= 7;	    // FALL-THROUGH !!!!!	case Event::Daily:	    // the add is for the possible fall through from weekly */	    if(e.start().date().addDays(dayOfWeek) > from) {		/* first week exception */		next = QDateTime(e.start().date().addDays(dayOfWeek),				 e.start().time());		if ((next.date() > e.repeatPattern().endDate())		    && e.repeatPattern().hasEndDate)		    return FALSE;		return TRUE;	    }	    /* if from is middle of a non-week */	    diff = e.start().date().addDays(dayOfWeek).daysTo(from) % freq;	    diff2 = e.start().date().addDays(firstOfWeek).daysTo(from) % freq;	    if(diff != 0)		diff = freq - diff;	    if(diff2 != 0)		diff2 = freq - diff2;	    diff = QMIN(diff, diff2);	    next = QDateTime(from.addDays(diff), e.start().time());	    if ( (next.date() > e.repeatPattern().endDate())		 && e.repeatPattern().hasEndDate )		return FALSE;	    return TRUE;	case Event::MonthlyDay:	    iday = from.day();	    iyear = from.year();	    imonth = from.month();	    /* find equivelent day of month for this month */	    dayOfWeek = e.start().date().dayOfWeek();	    weekOfMonth = (e.start().date().day() - 1) / 7;	    /* work out when the next valid month is */	    a = from.year() - e.start().date().year();	    a *= 12;	    a = a + (imonth - e.start().date().month());	    /* a is e.start()monthsFrom(from); */	    if(a % freq) {		a = freq - (a % freq);		imonth = from.month() + a;		if (imonth > 12) {		    imonth--;		    iyear += imonth / 12;		    imonth = imonth % 12;		    imonth++;		}	    }	    /* imonth is now the first month after or on	       from that matches the frequency given */	    /* find for this month */	    tmpDate = QDate( iyear, imonth, 1 );	    iday = 1;	    iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7;	    iday += 7 * weekOfMonth;	    while (iday > tmpDate.daysInMonth()) {		imonth += freq;		if (imonth > 12) {		    imonth--;		    iyear += imonth / 12;		    imonth = imonth % 12;		    imonth++;		}		tmpDate = QDate( iyear, imonth, 1 );		/* these loops could go for a while, check end case now */		if ((tmpDate > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		    return FALSE;		iday = 1;		iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7;		iday += 7 * weekOfMonth;	    }	    tmpDate = QDate(iyear, imonth, iday);	    if (tmpDate >= from) {		next = QDateTime(tmpDate, e.start().time());		if ((next.date() > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		    return FALSE;		return TRUE;	    }	    /* need to find the next iteration */	    do {		imonth += freq;		if (imonth > 12) {		    imonth--;		    iyear += imonth / 12;		    imonth = imonth % 12;		    imonth++;		}		tmpDate = QDate( iyear, imonth, 1 );		/* these loops could go for a while, check end case now */		if ((tmpDate > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		    return FALSE;		iday = 1;		iday += (7 + dayOfWeek - tmpDate.dayOfWeek()) % 7;		iday += 7 * weekOfMonth;	    } while (iday > tmpDate.daysInMonth());	    tmpDate = QDate(iyear, imonth, iday);	    next = QDateTime(tmpDate, e.start().time());	    if ((next.date() > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		return FALSE;	    return TRUE;	case Event::MonthlyDate:	    iday = e.start().date().day();	    iyear = from.year();	    imonth = from.month();	    a = from.year() - e.start().date().year();	    a *= 12;	    a = a + (imonth - e.start().date().month());	    /* a is e.start()monthsFrom(from); */	    if(a % freq) {		a = freq - (a % freq);		imonth = from.month() + a;		if (imonth > 12) {		    imonth--;		    iyear += imonth / 12;		    imonth = imonth % 12;		    imonth++;		}	    }	    /* imonth is now the first month after or on	       from that matches the frequencey given */	    /* this could go for a while, worse case, 4*12 iterations, probably */	    while(!QDate::isValid(iyear, imonth, iday) ) {		imonth += freq;		if (imonth > 12) {		    imonth--;		    iyear += imonth / 12;		    imonth = imonth % 12;		    imonth++;		}		/* these loops could go for a while, check end case now */		if ((QDate(iyear, imonth, 1) > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		    return FALSE;	    }	    if(QDate(iyear, imonth, iday) >= from) {		/* done */		next = QDateTime(QDate(iyear, imonth, iday),			e.start().time());		if ((next.date() > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		    return FALSE;		return TRUE;	    }	    /* ok, need to cycle */	    imonth += freq;	    imonth--;	    iyear += imonth / 12;	    imonth = imonth % 12;	    imonth++;	    while(!QDate::isValid(iyear, imonth, iday) ) {		imonth += freq;		imonth--;		iyear += imonth / 12;		imonth = imonth % 12;		imonth++;		if ((QDate(iyear, imonth, 1) > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		    return FALSE;	    }	    next = QDateTime(QDate(iyear, imonth, iday), e.start().time());	    if ((next.date() > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		return FALSE;	    return TRUE;	case Event::Yearly:	    iday = e.start().date().day();	    imonth = e.start().date().month();	    iyear = from.year(); // after all, we want to start in this year	    diff = 1;	    if(imonth == 2 && iday > 28) {		/* leap year, and it counts, calculate actual frequency */		if(freq % 4)		    if (freq % 2)			freq = freq * 4;		    else			freq = freq * 2;		/* else divides by 4 already, leave freq alone */		diff = 4;	    }	    a = from.year() - e.start().date().year();	    if(a % freq) {		a = freq - (a % freq);		iyear = iyear + a;	    }	    /* under the assumption we won't hit one of the special not-leap years twice */	    if(!QDate::isValid(iyear, imonth, iday)) {		/* must have been skipping by leap years and hit one that wasn't, (e.g. 2100) */		iyear += freq;	    }	    if(QDate(iyear, imonth, iday) >= from) {		next = QDateTime(QDate(iyear, imonth, iday),			e.start().time());		if ((next.date() > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		    return FALSE;		return TRUE;	    }	    /* iyear == from.year(), need to advance again */	    iyear += freq;	    /* under the assumption we won't hit one of the special not-leap years twice */	    if(!QDate::isValid(iyear, imonth, iday)) {		/* must have been skipping by leap years and hit one that wasn't, (e.g. 2100) */		iyear += freq;	    }	    next = QDateTime(QDate(iyear, imonth, iday), e.start().time());	    if ((next.date() > e.repeatPattern().endDate()) && e.repeatPattern().hasEndDate)		return FALSE;	    return TRUE;	default:	    return FALSE;    }}static void addEventAlarm( const Event & ){}static void delEventAlarm( const Event & ){}/*! */DateBookDB::DateBookDB(){    init();}/*! */DateBookDB::~DateBookDB(){    save();    eventList.clear();    repeatEvents.clear();}//#### Why is this code duplicated in getEffectiveEvents ?????//#### Addendum.  Don't use this function, lets faze it out if we can./*! obsolete \a from \a to */QValueList<Event> DateBookDB::getEvents( const QDate &from, const QDate &to ){    QValueList<Event> tmpList;    tmpList = getNonRepeatingEvents( from, to );    // check for repeating events...    for (QValueList<Event>::ConstIterator it = repeatEvents.begin();	 it != repeatEvents.end(); ++it) {	QDate itDate = from;	QDateTime due;	/* create a false end date, to short circuit on hard	   MonthlyDay recurences */	Event dummy_event = *it;	Event::RepeatPattern r = dummy_event.repeatPattern();	if ( !r.hasEndDate || r.endDate() > to ) {	    r.setEndDate( to );	    r.hasEndDate = TRUE;	}	dummy_event.setRepeat(TRUE, r);	while (nextOccurance(dummy_event, itDate, due)) {	    if (due.date() > to)		break;	    Event newEvent = *it;	    newEvent.setStart(due);	    newEvent.setEnd(due.addSecs((*it).start().secsTo((*it).end())));	    tmpList.append(newEvent);	    itDate = due.date().addDays(1);  /* the next event */	}    }    qHeapSort(tmpList);    return tmpList;}/*! \a start */QValueList<Event> DateBookDB::getEvents( const QDateTime &start ){    QValueList<Event> day = getEvents(start.date(),start.date());    QValueListConstIterator<Event> it;    QDateTime dtTmp;    QValueList<Event> tmpList;    for (it = day.begin(); it != day.end(); ++it ) {        dtTmp = (*it).start(TRUE);        if ( dtTmp == start )            tmpList.append( *it );    }    return tmpList;}//#### Why is this code duplicated in getEvents ?????/*! \a from \a to */QValueList<EffectiveEvent> DateBookDB::getEffectiveEvents( const QDate &from,							   const QDate &to ){    QValueList<EffectiveEvent> tmpList;    QValueListIterator<Event> it;    EffectiveEvent effEv;    QDateTime dtTmp,	      dtEnd;    for (it = eventList.begin(); it != eventList.end(); ++it ) {	// next to lines are a cover against possible invalid Uids.	if (!(*it).isValidUid())	    (*it).assignUid();        dtTmp = (*it).start(TRUE);	dtEnd = (*it).end(TRUE);        if ( dtTmp.date() >= from && dtTmp.date() <= to ) {	    Event tmpEv = *it;	    effEv.setEvent(tmpEv);	    effEv.setDate( dtTmp.date() );	    effEv.setStart( dtTmp.time() );	    if ( dtTmp.date() != dtEnd.date() )		effEv.setEnd( QTime(23, 59, 0) );	    else		effEv.setEnd( dtEnd.time() );            tmpList.append( effEv );	}	// we must also check for end date information...	if ( dtEnd.date() != dtTmp.date() && dtEnd.date() >= from ) {	    QDateTime dt = dtTmp.addDays( 1 );	    dt.setTime( QTime(0, 0, 0) );	    QDateTime dtStop;	    if ( dtEnd > to ) {		dtStop = to;	    } else		dtStop = dtEnd;	    while ( dt <= dtStop ) {		Event tmpEv = *it;		effEv.setEvent( tmpEv );		effEv.setDate( dt.date() );		if ( dt >= from ) {		    effEv.setStart( QTime(0, 0, 0) );		    if ( dt.date() == dtEnd.date() )			effEv.setEnd( dtEnd.time() );		    else			effEv.setEnd( QTime(23, 59, 59) );		    tmpList.append( effEv );		}		dt = dt.addDays( 1 );	    }	}    }    // check for repeating events...    QDateTime repeat;    for ( it = repeatEvents.begin(); it != repeatEvents.end(); ++it ) {	// next to lines are a cover against possible invalid Uids.	if (!(*it).isValidUid())	    (*it).assignUid();	/* create a false end date, to short circuit on hard	   MonthlyDay recurences */	Event dummy_event = *it;	int duration = (*it).start().date().daysTo( (*it).end().date() );	QDate itDate = from.addDays(-duration);	Event::RepeatPattern r = dummy_event.repeatPattern();	if ( !r.hasEndDate || r.endDate() > to ) {	    r.setEndDate( to );	    r.hasEndDate = TRUE;	}	dummy_event.setRepeat(TRUE, r);	while (nextOccurance(dummy_event, itDate, repeat)) {	    if(repeat.date() > to)		break;	    effEv.setDate( repeat.date() );	    if ((*it).type() == Event::AllDay) {

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -