mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
1397 lines
41 KiB
C++
1397 lines
41 KiB
C++
/*
|
|
This file is part of the kcal library.
|
|
|
|
Copyright (c) 1998 Preston Brown <pbrown@kde.org>
|
|
Copyright (c) 2000-2004 Cornelius Schumacher <schumacher@kde.org>
|
|
Copyright (C) 2003-2004 Reinhold Kainhofer <reinhold@kainhofer.com>
|
|
Copyright (c) 2006 David Jarvie <software@astrojar.org.uk>
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Library General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2 of the License, or (at your option) any later version.
|
|
|
|
This library 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
|
|
Library General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
Boston, MA 02110-1301, USA.
|
|
*/
|
|
/**
|
|
@file
|
|
This file is part of the API for handling calendar data and
|
|
defines the Calendar class.
|
|
|
|
@brief
|
|
Represents the main calendar class.
|
|
|
|
@author Preston Brown \<pbrown@kde.org\>
|
|
@author Cornelius Schumacher \<schumacher@kde.org\>
|
|
@author Reinhold Kainhofer \<reinhold@kainhofer.com\>
|
|
@author David Jarvie \<software@astrojar.org.uk\>
|
|
*/
|
|
|
|
#include "calendar.h"
|
|
#include "exceptions.h"
|
|
#include "calfilter.h"
|
|
#include "icaltimezones.h"
|
|
#include <kdebug.h>
|
|
#include <klocalizedstring.h>
|
|
|
|
extern "C" {
|
|
#include <icaltimezone.h>
|
|
}
|
|
|
|
using namespace KCal;
|
|
|
|
/**
|
|
Private class that helps to provide binary compatibility between releases.
|
|
@internal
|
|
*/
|
|
//@cond PRIVATE
|
|
class KCal::Calendar::Private
|
|
{
|
|
public:
|
|
Private()
|
|
: mTimeZones( new ICalTimeZones ),
|
|
mModified( false ),
|
|
mNewObserver( false ),
|
|
mObserversEnabled( true ),
|
|
mDefaultFilter( new CalFilter )
|
|
{
|
|
// Setup default filter, which does nothing
|
|
mFilter = mDefaultFilter;
|
|
mFilter->setEnabled( false );
|
|
|
|
// user information...
|
|
mOwner.setName( i18n( "Unknown Name" ) );
|
|
mOwner.setEmail( i18n( "unknown@nowhere" ) );
|
|
}
|
|
|
|
~Private()
|
|
{
|
|
delete mTimeZones;
|
|
if ( mFilter != mDefaultFilter ) {
|
|
delete mFilter;
|
|
}
|
|
delete mDefaultFilter;
|
|
}
|
|
KDateTime::Spec timeZoneIdSpec( const QString &timeZoneId, bool view );
|
|
|
|
QString mProductId;
|
|
Person mOwner;
|
|
ICalTimeZones *mTimeZones; // collection of time zones used in this calendar
|
|
ICalTimeZone mBuiltInTimeZone; // cached time zone lookup
|
|
ICalTimeZone mBuiltInViewTimeZone; // cached viewing time zone lookup
|
|
KDateTime::Spec mTimeSpec;
|
|
mutable KDateTime::Spec mViewTimeSpec;
|
|
bool mModified;
|
|
bool mNewObserver;
|
|
bool mObserversEnabled;
|
|
QList<CalendarObserver*> mObservers;
|
|
|
|
CalFilter *mDefaultFilter;
|
|
CalFilter *mFilter;
|
|
|
|
// These lists are used to put together related To-dos
|
|
QMultiHash<QString, Incidence*> mOrphans;
|
|
QMultiHash<QString, Incidence*> mOrphanUids;
|
|
};
|
|
//@endcond
|
|
|
|
Calendar::Calendar( const KDateTime::Spec &timeSpec )
|
|
: d( new KCal::Calendar::Private )
|
|
{
|
|
d->mTimeSpec = timeSpec;
|
|
d->mViewTimeSpec = timeSpec;
|
|
}
|
|
|
|
Calendar::Calendar( const QString &timeZoneId )
|
|
: d( new KCal::Calendar::Private )
|
|
{
|
|
setTimeZoneId( timeZoneId );
|
|
}
|
|
|
|
Calendar::~Calendar()
|
|
{
|
|
delete d;
|
|
}
|
|
|
|
Person Calendar::owner() const
|
|
{
|
|
return d->mOwner;
|
|
}
|
|
|
|
void Calendar::setOwner( const Person &owner )
|
|
{
|
|
d->mOwner = owner;
|
|
|
|
setModified( true );
|
|
}
|
|
|
|
void Calendar::setTimeSpec( const KDateTime::Spec &timeSpec )
|
|
{
|
|
d->mTimeSpec = timeSpec;
|
|
d->mBuiltInTimeZone = ICalTimeZone();
|
|
setViewTimeSpec( timeSpec );
|
|
|
|
doSetTimeSpec( d->mTimeSpec );
|
|
}
|
|
|
|
KDateTime::Spec Calendar::timeSpec() const
|
|
{
|
|
return d->mTimeSpec;
|
|
}
|
|
|
|
void Calendar::setTimeZoneId( const QString &timeZoneId )
|
|
{
|
|
d->mTimeSpec = d->timeZoneIdSpec( timeZoneId, false );
|
|
d->mViewTimeSpec = d->mTimeSpec;
|
|
d->mBuiltInViewTimeZone = d->mBuiltInTimeZone;
|
|
|
|
doSetTimeSpec( d->mTimeSpec );
|
|
}
|
|
|
|
//@cond PRIVATE
|
|
KDateTime::Spec Calendar::Private::timeZoneIdSpec( const QString &timeZoneId,
|
|
bool view )
|
|
{
|
|
if ( view ) {
|
|
mBuiltInViewTimeZone = ICalTimeZone();
|
|
} else {
|
|
mBuiltInTimeZone = ICalTimeZone();
|
|
}
|
|
if ( timeZoneId == QLatin1String( "UTC" ) ) {
|
|
return KDateTime::UTC;
|
|
}
|
|
ICalTimeZone tz = mTimeZones->zone( timeZoneId );
|
|
if ( !tz.isValid() ) {
|
|
ICalTimeZoneSource tzsrc;
|
|
tz = tzsrc.parse( icaltimezone_get_builtin_timezone( timeZoneId.toLatin1() ) );
|
|
if ( view ) {
|
|
mBuiltInViewTimeZone = tz;
|
|
} else {
|
|
mBuiltInTimeZone = tz;
|
|
}
|
|
}
|
|
if ( tz.isValid() ) {
|
|
return tz;
|
|
} else {
|
|
return KDateTime::ClockTime;
|
|
}
|
|
}
|
|
//@endcond
|
|
|
|
QString Calendar::timeZoneId() const
|
|
{
|
|
KTimeZone tz = d->mTimeSpec.timeZone();
|
|
return tz.isValid() ? tz.name() : QString();
|
|
}
|
|
|
|
void Calendar::setViewTimeSpec( const KDateTime::Spec &timeSpec ) const
|
|
{
|
|
d->mViewTimeSpec = timeSpec;
|
|
d->mBuiltInViewTimeZone = ICalTimeZone();
|
|
}
|
|
|
|
void Calendar::setViewTimeZoneId( const QString &timeZoneId ) const
|
|
{
|
|
d->mViewTimeSpec = d->timeZoneIdSpec( timeZoneId, true );
|
|
}
|
|
|
|
KDateTime::Spec Calendar::viewTimeSpec() const
|
|
{
|
|
return d->mViewTimeSpec;
|
|
}
|
|
|
|
QString Calendar::viewTimeZoneId() const
|
|
{
|
|
KTimeZone tz = d->mViewTimeSpec.timeZone();
|
|
return tz.isValid() ? tz.name() : QString();
|
|
}
|
|
|
|
ICalTimeZones *Calendar::timeZones() const
|
|
{
|
|
return d->mTimeZones;
|
|
}
|
|
|
|
void Calendar::shiftTimes( const KDateTime::Spec &oldSpec,
|
|
const KDateTime::Spec &newSpec )
|
|
{
|
|
setTimeSpec( newSpec );
|
|
|
|
int i, end;
|
|
Event::List ev = events();
|
|
for ( i = 0, end = ev.count(); i < end; ++i ) {
|
|
ev[i]->shiftTimes( oldSpec, newSpec );
|
|
}
|
|
|
|
Todo::List to = todos();
|
|
for ( i = 0, end = to.count(); i < end; ++i ) {
|
|
to[i]->shiftTimes( oldSpec, newSpec );
|
|
}
|
|
|
|
Journal::List jo = journals();
|
|
for ( i = 0, end = jo.count(); i < end; ++i ) {
|
|
jo[i]->shiftTimes( oldSpec, newSpec );
|
|
}
|
|
}
|
|
|
|
void Calendar::setFilter( CalFilter *filter )
|
|
{
|
|
if ( filter ) {
|
|
d->mFilter = filter;
|
|
} else {
|
|
d->mFilter = d->mDefaultFilter;
|
|
}
|
|
}
|
|
|
|
CalFilter *Calendar::filter()
|
|
{
|
|
return d->mFilter;
|
|
}
|
|
|
|
QStringList Calendar::categories()
|
|
{
|
|
Incidence::List rawInc( rawIncidences() );
|
|
QStringList cats, thisCats;
|
|
// @TODO: For now just iterate over all incidences. In the future,
|
|
// the list of categories should be built when reading the file.
|
|
for ( Incidence::List::ConstIterator i = rawInc.constBegin();
|
|
i != rawInc.constEnd(); ++i ) {
|
|
thisCats = (*i)->categories();
|
|
for ( QStringList::ConstIterator si = thisCats.constBegin();
|
|
si != thisCats.constEnd(); ++si ) {
|
|
if ( !cats.contains( *si ) ) {
|
|
cats.append( *si );
|
|
}
|
|
}
|
|
}
|
|
return cats;
|
|
}
|
|
|
|
Incidence::List Calendar::incidences( const QDate &date )
|
|
{
|
|
return mergeIncidenceList( events( date ), todos( date ), journals( date ) );
|
|
}
|
|
|
|
Incidence::List Calendar::incidences()
|
|
{
|
|
return mergeIncidenceList( events(), todos(), journals() );
|
|
}
|
|
|
|
Incidence::List Calendar::rawIncidences()
|
|
{
|
|
return mergeIncidenceList( rawEvents(), rawTodos(), rawJournals() );
|
|
}
|
|
|
|
Event::List Calendar::sortEvents( Event::List *eventList,
|
|
EventSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Event::List eventListSorted;
|
|
Event::List tempList;
|
|
Event::List alphaList;
|
|
Event::List::Iterator sortIt;
|
|
Event::List::Iterator eit;
|
|
|
|
// Notice we alphabetically presort Summaries first.
|
|
// We do this so comparison "ties" stay in a nice order.
|
|
|
|
switch( sortField ) {
|
|
case EventSortUnsorted:
|
|
eventListSorted = *eventList;
|
|
break;
|
|
|
|
case EventSortStartDate:
|
|
alphaList = sortEvents( eventList, EventSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
if ( (*eit)->dtStart().isDateOnly() ) {
|
|
tempList.append( *eit );
|
|
continue;
|
|
}
|
|
sortIt = eventListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != eventListSorted.end() &&
|
|
(*eit)->dtStart() >= (*sortIt)->dtStart() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != eventListSorted.end() &&
|
|
(*eit)->dtStart() < (*sortIt)->dtStart() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
eventListSorted.insert( sortIt, *eit );
|
|
}
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
// Prepend the list of all-day Events
|
|
tempList += eventListSorted;
|
|
eventListSorted = tempList;
|
|
} else {
|
|
// Append the list of all-day Events
|
|
eventListSorted += tempList;
|
|
}
|
|
break;
|
|
|
|
case EventSortEndDate:
|
|
alphaList = sortEvents( eventList, EventSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
if ( (*eit)->hasEndDate() ) {
|
|
sortIt = eventListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != eventListSorted.end() &&
|
|
(*eit)->dtEnd() >= (*sortIt)->dtEnd() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != eventListSorted.end() &&
|
|
(*eit)->dtEnd() < (*sortIt)->dtEnd() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
} else {
|
|
// Keep a list of the Events without End DateTimes
|
|
tempList.append( *eit );
|
|
}
|
|
eventListSorted.insert( sortIt, *eit );
|
|
}
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
// Append the list of Events without End DateTimes
|
|
eventListSorted += tempList;
|
|
} else {
|
|
// Prepend the list of Events without End DateTimes
|
|
tempList += eventListSorted;
|
|
eventListSorted = tempList;
|
|
}
|
|
break;
|
|
|
|
case EventSortSummary:
|
|
for ( eit = eventList->begin(); eit != eventList->end(); ++eit ) {
|
|
sortIt = eventListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != eventListSorted.end() &&
|
|
(*eit)->summary() >= (*sortIt)->summary() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != eventListSorted.end() &&
|
|
(*eit)->summary() < (*sortIt)->summary() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
eventListSorted.insert( sortIt, *eit );
|
|
}
|
|
break;
|
|
}
|
|
|
|
return eventListSorted;
|
|
}
|
|
|
|
Event::List Calendar::sortEventsForDate( Event::List *eventList,
|
|
const QDate &date,
|
|
const KDateTime::Spec &timeSpec,
|
|
EventSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Event::List eventListSorted;
|
|
Event::List tempList;
|
|
Event::List alphaList;
|
|
Event::List::Iterator sortIt;
|
|
Event::List::Iterator eit;
|
|
|
|
switch( sortField ) {
|
|
case EventSortStartDate:
|
|
alphaList = sortEvents( eventList, EventSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
if ( (*eit)->allDay() ) {
|
|
tempList.append( *eit );
|
|
continue;
|
|
}
|
|
sortIt = eventListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != eventListSorted.end() ) {
|
|
if ( !(*eit)->recurs() ) {
|
|
if ( (*eit)->dtStart().time() >= (*sortIt)->dtStart().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
if ( (*eit)->recursOn( date, timeSpec ) ) {
|
|
if ( (*eit)->dtStart().time() >= (*sortIt)->dtStart().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
++sortIt;
|
|
}
|
|
}
|
|
}
|
|
} else { // descending
|
|
while ( sortIt != eventListSorted.end() ) {
|
|
if ( !(*eit)->recurs() ) {
|
|
if ( (*eit)->dtStart().time() < (*sortIt)->dtStart().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
if ( (*eit)->recursOn( date, timeSpec ) ) {
|
|
if ( (*eit)->dtStart().time() < (*sortIt)->dtStart().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
++sortIt;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
eventListSorted.insert( sortIt, *eit );
|
|
}
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
// Prepend the list of all-day Events
|
|
tempList += eventListSorted;
|
|
eventListSorted = tempList;
|
|
} else {
|
|
// Append the list of all-day Events
|
|
eventListSorted += tempList;
|
|
}
|
|
break;
|
|
|
|
case EventSortEndDate:
|
|
alphaList = sortEvents( eventList, EventSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
if ( (*eit)->hasEndDate() ) {
|
|
sortIt = eventListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != eventListSorted.end() ) {
|
|
if ( !(*eit)->recurs() ) {
|
|
if ( (*eit)->dtEnd().time() >= (*sortIt)->dtEnd().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
if ( (*eit)->recursOn( date, timeSpec ) ) {
|
|
if ( (*eit)->dtEnd().time() >= (*sortIt)->dtEnd().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
++sortIt;
|
|
}
|
|
}
|
|
}
|
|
} else { // descending
|
|
while ( sortIt != eventListSorted.end() ) {
|
|
if ( !(*eit)->recurs() ) {
|
|
if ( (*eit)->dtEnd().time() < (*sortIt)->dtEnd().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
if ( (*eit)->recursOn( date, timeSpec ) ) {
|
|
if ( (*eit)->dtEnd().time() < (*sortIt)->dtEnd().time() ) {
|
|
++sortIt;
|
|
} else {
|
|
break;
|
|
}
|
|
} else {
|
|
++sortIt;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} else {
|
|
// Keep a list of the Events without End DateTimes
|
|
tempList.append( *eit );
|
|
}
|
|
eventListSorted.insert( sortIt, *eit );
|
|
}
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
// Prepend the list of Events without End DateTimes
|
|
tempList += eventListSorted;
|
|
eventListSorted = tempList;
|
|
} else {
|
|
// Append the list of Events without End DateTimes
|
|
eventListSorted += tempList;
|
|
}
|
|
break;
|
|
|
|
default:
|
|
eventListSorted = sortEvents( eventList, sortField, sortDirection );
|
|
break;
|
|
}
|
|
|
|
return eventListSorted;
|
|
}
|
|
|
|
Event::List Calendar::events( const QDate &date,
|
|
const KDateTime::Spec &timeSpec,
|
|
EventSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Event::List el = rawEventsForDate( date, timeSpec, sortField, sortDirection );
|
|
d->mFilter->apply( &el );
|
|
return el;
|
|
}
|
|
|
|
Event::List Calendar::events( const KDateTime &dt )
|
|
{
|
|
Event::List el = rawEventsForDate( dt );
|
|
d->mFilter->apply( &el );
|
|
return el;
|
|
}
|
|
|
|
Event::List Calendar::events( const QDate &start, const QDate &end,
|
|
const KDateTime::Spec &timeSpec,
|
|
bool inclusive )
|
|
{
|
|
Event::List el = rawEvents( start, end, timeSpec, inclusive );
|
|
d->mFilter->apply( &el );
|
|
return el;
|
|
}
|
|
|
|
Event::List Calendar::events( EventSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Event::List el = rawEvents( sortField, sortDirection );
|
|
d->mFilter->apply( &el );
|
|
return el;
|
|
}
|
|
|
|
bool Calendar::addIncidence( Incidence *incidence )
|
|
{
|
|
Incidence::AddVisitor<Calendar> v( this );
|
|
|
|
return incidence->accept( v );
|
|
}
|
|
|
|
bool Calendar::deleteIncidence( Incidence *incidence )
|
|
{
|
|
if ( beginChange( incidence ) ) {
|
|
Incidence::DeleteVisitor<Calendar> v( this );
|
|
bool result = incidence->accept( v );
|
|
endChange( incidence );
|
|
return result;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
// Dissociate a single occurrence or all future occurrences from a recurring
|
|
// sequence. The new incidence is returned, but not automatically inserted
|
|
// into the calendar, which is left to the calling application.
|
|
Incidence *Calendar::dissociateOccurrence( Incidence *incidence,
|
|
const QDate &date,
|
|
const KDateTime::Spec &spec,
|
|
bool single )
|
|
{
|
|
if ( !incidence || !incidence->recurs() ) {
|
|
return 0;
|
|
}
|
|
|
|
Incidence *newInc = incidence->clone();
|
|
newInc->recreate();
|
|
// Do not call setRelatedTo() when dissociating recurring to-dos, otherwise the new to-do
|
|
// will appear as a child. Originally, we planned to set a relation with reltype SIBLING
|
|
// when dissociating to-dos, but currently kcal only supports reltype PARENT.
|
|
// We can uncomment the following line when we support the PARENT reltype.
|
|
//newInc->setRelatedTo( incidence );
|
|
Recurrence *recur = newInc->recurrence();
|
|
if ( single ) {
|
|
recur->clear();
|
|
} else {
|
|
// Adjust the recurrence for the future incidences. In particular adjust
|
|
// the "end after n occurrences" rules! "No end date" and "end by ..."
|
|
// don't need to be modified.
|
|
int duration = recur->duration();
|
|
if ( duration > 0 ) {
|
|
int doneduration = recur->durationTo( date.addDays( -1 ) );
|
|
if ( doneduration >= duration ) {
|
|
kDebug() << "The dissociated event already occurred more often"
|
|
<< "than it was supposed to ever occur. ERROR!";
|
|
recur->clear();
|
|
} else {
|
|
recur->setDuration( duration - doneduration );
|
|
}
|
|
}
|
|
}
|
|
// Adjust the date of the incidence
|
|
if ( incidence->type() == "Event" ) {
|
|
Event *ev = static_cast<Event *>( newInc );
|
|
KDateTime start( ev->dtStart() );
|
|
int daysTo = start.toTimeSpec( spec ).date().daysTo( date );
|
|
ev->setDtStart( start.addDays( daysTo ) );
|
|
ev->setDtEnd( ev->dtEnd().addDays( daysTo ) );
|
|
} else if ( incidence->type() == "Todo" ) {
|
|
Todo *td = static_cast<Todo *>( newInc );
|
|
bool haveOffset = false;
|
|
int daysTo = 0;
|
|
if ( td->hasDueDate() ) {
|
|
KDateTime due( td->dtDue() );
|
|
daysTo = due.toTimeSpec( spec ).date().daysTo( date );
|
|
td->setDtDue( due.addDays( daysTo ), true );
|
|
haveOffset = true;
|
|
}
|
|
if ( td->hasStartDate() ) {
|
|
KDateTime start( td->dtStart() );
|
|
if ( !haveOffset ) {
|
|
daysTo = start.toTimeSpec( spec ).date().daysTo( date );
|
|
}
|
|
td->setDtStart( start.addDays( daysTo ) );
|
|
haveOffset = true;
|
|
}
|
|
}
|
|
recur = incidence->recurrence();
|
|
if ( recur ) {
|
|
if ( single ) {
|
|
recur->addExDate( date );
|
|
} else {
|
|
// Make sure the recurrence of the past events ends
|
|
// at the corresponding day
|
|
recur->setEndDate( date.addDays(-1) );
|
|
}
|
|
}
|
|
return newInc;
|
|
}
|
|
|
|
Incidence *Calendar::incidence( const QString &uid )
|
|
{
|
|
Incidence *i = event( uid );
|
|
if ( i ) {
|
|
return i;
|
|
}
|
|
|
|
i = todo( uid );
|
|
if ( i ) {
|
|
return i;
|
|
}
|
|
|
|
i = journal( uid );
|
|
return i;
|
|
}
|
|
|
|
Incidence::List Calendar::incidencesFromSchedulingID( const QString &sid )
|
|
{
|
|
Incidence::List result;
|
|
const Incidence::List incidences = rawIncidences();
|
|
Incidence::List::const_iterator it = incidences.begin();
|
|
for ( ; it != incidences.end(); ++it ) {
|
|
if ( (*it)->schedulingID() == sid ) {
|
|
result.append( *it );
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
Incidence *Calendar::incidenceFromSchedulingID( const QString &UID )
|
|
{
|
|
const Incidence::List incidences = rawIncidences();
|
|
Incidence::List::const_iterator it = incidences.begin();
|
|
for ( ; it != incidences.end(); ++it ) {
|
|
if ( (*it)->schedulingID() == UID ) {
|
|
// Touchdown, and the crowd goes wild
|
|
return *it;
|
|
}
|
|
}
|
|
// Not found
|
|
return 0;
|
|
}
|
|
|
|
Todo::List Calendar::sortTodos( Todo::List *todoList,
|
|
TodoSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Todo::List todoListSorted;
|
|
Todo::List tempList, t;
|
|
Todo::List alphaList;
|
|
Todo::List::Iterator sortIt;
|
|
Todo::List::Iterator eit;
|
|
|
|
// Notice we alphabetically presort Summaries first.
|
|
// We do this so comparison "ties" stay in a nice order.
|
|
|
|
// Note that To-dos may not have Start DateTimes nor due DateTimes.
|
|
|
|
switch( sortField ) {
|
|
case TodoSortUnsorted:
|
|
todoListSorted = *todoList;
|
|
break;
|
|
|
|
case TodoSortStartDate:
|
|
alphaList = sortTodos( todoList, TodoSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
if ( (*eit)->hasStartDate() ) {
|
|
sortIt = todoListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->dtStart() >= (*sortIt)->dtStart() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->dtStart() < (*sortIt)->dtStart() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
todoListSorted.insert( sortIt, *eit );
|
|
} else {
|
|
// Keep a list of the To-dos without Start DateTimes
|
|
tempList.append( *eit );
|
|
}
|
|
}
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
// Append the list of To-dos without Start DateTimes
|
|
todoListSorted += tempList;
|
|
} else {
|
|
// Prepend the list of To-dos without Start DateTimes
|
|
tempList += todoListSorted;
|
|
todoListSorted = tempList;
|
|
}
|
|
break;
|
|
|
|
case TodoSortDueDate:
|
|
alphaList = sortTodos( todoList, TodoSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
if ( (*eit)->hasDueDate() ) {
|
|
sortIt = todoListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->dtDue() >= (*sortIt)->dtDue() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->dtDue() < (*sortIt)->dtDue() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
todoListSorted.insert( sortIt, *eit );
|
|
} else {
|
|
// Keep a list of the To-dos without Due DateTimes
|
|
tempList.append( *eit );
|
|
}
|
|
}
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
// Append the list of To-dos without Due DateTimes
|
|
todoListSorted += tempList;
|
|
} else {
|
|
// Prepend the list of To-dos without Due DateTimes
|
|
tempList += todoListSorted;
|
|
todoListSorted = tempList;
|
|
}
|
|
break;
|
|
|
|
case TodoSortPriority:
|
|
alphaList = sortTodos( todoList, TodoSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
sortIt = todoListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->priority() >= (*sortIt)->priority() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->priority() < (*sortIt)->priority() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
todoListSorted.insert( sortIt, *eit );
|
|
}
|
|
break;
|
|
|
|
case TodoSortPercentComplete:
|
|
alphaList = sortTodos( todoList, TodoSortSummary, sortDirection );
|
|
for ( eit = alphaList.begin(); eit != alphaList.end(); ++eit ) {
|
|
sortIt = todoListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->percentComplete() >= (*sortIt)->percentComplete() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->percentComplete() < (*sortIt)->percentComplete() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
todoListSorted.insert( sortIt, *eit );
|
|
}
|
|
break;
|
|
|
|
case TodoSortSummary:
|
|
for ( eit = todoList->begin(); eit != todoList->end(); ++eit ) {
|
|
sortIt = todoListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->summary() >= (*sortIt)->summary() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != todoListSorted.end() &&
|
|
(*eit)->summary() < (*sortIt)->summary() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
todoListSorted.insert( sortIt, *eit );
|
|
}
|
|
break;
|
|
}
|
|
|
|
return todoListSorted;
|
|
}
|
|
|
|
Todo::List Calendar::todos( TodoSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Todo::List tl = rawTodos( sortField, sortDirection );
|
|
d->mFilter->apply( &tl );
|
|
return tl;
|
|
}
|
|
|
|
Todo::List Calendar::todos( const QDate &date )
|
|
{
|
|
Todo::List el = rawTodosForDate( date );
|
|
d->mFilter->apply( &el );
|
|
return el;
|
|
}
|
|
|
|
Journal::List Calendar::sortJournals( Journal::List *journalList,
|
|
JournalSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Journal::List journalListSorted;
|
|
Journal::List::Iterator sortIt;
|
|
Journal::List::Iterator eit;
|
|
|
|
switch( sortField ) {
|
|
case JournalSortUnsorted:
|
|
journalListSorted = *journalList;
|
|
break;
|
|
|
|
case JournalSortDate:
|
|
for ( eit = journalList->begin(); eit != journalList->end(); ++eit ) {
|
|
sortIt = journalListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != journalListSorted.end() &&
|
|
(*eit)->dtStart() >= (*sortIt)->dtStart() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != journalListSorted.end() &&
|
|
(*eit)->dtStart() < (*sortIt)->dtStart() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
journalListSorted.insert( sortIt, *eit );
|
|
}
|
|
break;
|
|
|
|
case JournalSortSummary:
|
|
for ( eit = journalList->begin(); eit != journalList->end(); ++eit ) {
|
|
sortIt = journalListSorted.begin();
|
|
if ( sortDirection == SortDirectionAscending ) {
|
|
while ( sortIt != journalListSorted.end() &&
|
|
(*eit)->summary() >= (*sortIt)->summary() ) {
|
|
++sortIt;
|
|
}
|
|
} else {
|
|
while ( sortIt != journalListSorted.end() &&
|
|
(*eit)->summary() < (*sortIt)->summary() ) {
|
|
++sortIt;
|
|
}
|
|
}
|
|
journalListSorted.insert( sortIt, *eit );
|
|
}
|
|
break;
|
|
}
|
|
|
|
return journalListSorted;
|
|
}
|
|
|
|
Journal::List Calendar::journals( JournalSortField sortField,
|
|
SortDirection sortDirection )
|
|
{
|
|
Journal::List jl = rawJournals( sortField, sortDirection );
|
|
d->mFilter->apply( &jl );
|
|
return jl;
|
|
}
|
|
|
|
Journal::List Calendar::journals( const QDate &date )
|
|
{
|
|
Journal::List el = rawJournalsForDate( date );
|
|
d->mFilter->apply( &el );
|
|
return el;
|
|
}
|
|
|
|
void Calendar::beginBatchAdding()
|
|
{
|
|
emit batchAddingBegins();
|
|
}
|
|
|
|
void Calendar::endBatchAdding()
|
|
{
|
|
emit batchAddingEnds();
|
|
}
|
|
|
|
// When this is called, the to-dos have already been added to the calendar.
|
|
// This method is only about linking related to-dos.
|
|
void Calendar::setupRelations( Incidence *forincidence )
|
|
{
|
|
if ( !forincidence ) {
|
|
return;
|
|
}
|
|
|
|
QString uid = forincidence->uid();
|
|
|
|
// First, go over the list of orphans and see if this is their parent
|
|
QList<Incidence*> l = d->mOrphans.values( uid );
|
|
d->mOrphans.remove( uid );
|
|
for ( int i = 0, end = l.count(); i < end; ++i ) {
|
|
l[i]->setRelatedTo( forincidence );
|
|
forincidence->addRelation( l[i] );
|
|
d->mOrphanUids.remove( l[i]->uid() );
|
|
}
|
|
|
|
// Now see about this incidences parent
|
|
if ( !forincidence->relatedTo() && !forincidence->relatedToUid().isEmpty() ) {
|
|
// Incidence has a uid it is related to but is not registered to it yet.
|
|
// Try to find it
|
|
Incidence *parent = incidence( forincidence->relatedToUid() );
|
|
if ( parent ) {
|
|
// Found it
|
|
|
|
// look for hierarchy loops
|
|
if ( isAncestorOf( forincidence, parent ) ) {
|
|
forincidence->setRelatedToUid( QString() );
|
|
kWarning() << "hierarchy loop beetween " << forincidence->uid() << " and " << parent->uid();
|
|
} else {
|
|
forincidence->setRelatedTo( parent );
|
|
parent->addRelation( forincidence );
|
|
}
|
|
|
|
} else {
|
|
// Not found, put this in the mOrphans list
|
|
// Note that the mOrphans dict might contain multiple entries with the
|
|
// same key! which are multiple children that wait for the parent
|
|
// incidence to be inserted.
|
|
d->mOrphans.insert( forincidence->relatedToUid(), forincidence );
|
|
d->mOrphanUids.insert( forincidence->uid(), forincidence );
|
|
}
|
|
}
|
|
}
|
|
|
|
// If a to-do with sub-to-dos is deleted, move it's sub-to-dos to the orphan list
|
|
void Calendar::removeRelations( Incidence *incidence )
|
|
{
|
|
if ( !incidence ) {
|
|
kDebug() << "Warning: incidence is 0";
|
|
return;
|
|
}
|
|
|
|
QString uid = incidence->uid();
|
|
foreach ( Incidence *i, incidence->relations() ) {
|
|
if ( !d->mOrphanUids.contains( i->uid() ) ) {
|
|
d->mOrphans.insert( uid, i );
|
|
d->mOrphanUids.insert( i->uid(), i );
|
|
i->setRelatedTo( 0 );
|
|
i->setRelatedToUid( uid );
|
|
}
|
|
}
|
|
|
|
// If this incidence is related to something else, tell that about it
|
|
if ( incidence->relatedTo() ) {
|
|
incidence->relatedTo()->removeRelation( incidence );
|
|
}
|
|
|
|
// Remove this one from the orphans list
|
|
if ( d->mOrphanUids.remove( uid ) ) {
|
|
// This incidence is located in the orphans list - it should be removed
|
|
// Since the mOrphans dict might contain the same key (with different
|
|
// child incidence pointers!) multiple times, take care that we remove
|
|
// the correct one. So we need to remove all items with the given
|
|
// parent UID, and readd those that are not for this item. Also, there
|
|
// might be other entries with differnet UID that point to this
|
|
// incidence (this might happen when the relatedTo of the item is
|
|
// changed before its parent is inserted. This might happen with
|
|
// groupware servers....). Remove them, too
|
|
QStringList relatedToUids;
|
|
|
|
// First, create a list of all keys in the mOrphans list which point
|
|
// to the removed item
|
|
relatedToUids << incidence->relatedToUid();
|
|
for ( QMultiHash<QString, Incidence*>::Iterator it = d->mOrphans.begin();
|
|
it != d->mOrphans.end(); ++it ) {
|
|
if ( it.value()->uid() == uid ) {
|
|
relatedToUids << it.key();
|
|
}
|
|
}
|
|
|
|
// now go through all uids that have one entry that point to the incidence
|
|
for ( QStringList::const_iterator uidit = relatedToUids.constBegin();
|
|
uidit != relatedToUids.constEnd(); ++uidit ) {
|
|
Incidence::List tempList;
|
|
// Remove all to get access to the remaining entries
|
|
QList<Incidence*> l = d->mOrphans.values( *uidit );
|
|
d->mOrphans.remove( *uidit );
|
|
foreach ( Incidence *i, l ) {
|
|
if ( i != incidence ) {
|
|
tempList.append( i );
|
|
}
|
|
}
|
|
// Readd those that point to a different orphan incidence
|
|
for ( Incidence::List::Iterator incit = tempList.begin();
|
|
incit != tempList.end(); ++incit ) {
|
|
d->mOrphans.insert( *uidit, *incit );
|
|
}
|
|
}
|
|
}
|
|
|
|
// Make sure the deleted incidence doesn't relate to a non-deleted incidence,
|
|
// since that would cause trouble in CalendarLocal::close(), as the deleted
|
|
// incidences are destroyed after the non-deleted incidences. The destructor
|
|
// of the deleted incidences would then try to access the already destroyed
|
|
// non-deleted incidence, which would segfault.
|
|
//
|
|
// So in short: Make sure dead incidences don't point to alive incidences
|
|
// via the relation.
|
|
//
|
|
// This crash is tested in CalendarLocalTest::testRelationsCrash().
|
|
incidence->setRelatedTo( 0 );
|
|
}
|
|
|
|
bool Calendar::isAncestorOf( Incidence *ancestor, Incidence *incidence )
|
|
{
|
|
if ( !incidence || incidence->relatedToUid().isEmpty() ) {
|
|
return false;
|
|
} else if ( incidence->relatedToUid() == ancestor->uid() ) {
|
|
return true;
|
|
} else {
|
|
return isAncestorOf( ancestor, this->incidence( incidence->relatedToUid() ) );
|
|
}
|
|
}
|
|
|
|
void Calendar::CalendarObserver::calendarModified( bool modified, Calendar *calendar )
|
|
{
|
|
Q_UNUSED( modified );
|
|
Q_UNUSED( calendar );
|
|
}
|
|
|
|
void Calendar::CalendarObserver::calendarIncidenceAdded( Incidence *incidence )
|
|
{
|
|
Q_UNUSED( incidence );
|
|
}
|
|
|
|
void Calendar::CalendarObserver::calendarIncidenceChanged( Incidence *incidence )
|
|
{
|
|
Q_UNUSED( incidence );
|
|
}
|
|
|
|
void Calendar::CalendarObserver::calendarIncidenceDeleted( Incidence *incidence )
|
|
{
|
|
Q_UNUSED( incidence );
|
|
}
|
|
|
|
void Calendar::registerObserver( CalendarObserver *observer )
|
|
{
|
|
if ( !d->mObservers.contains( observer ) ) {
|
|
d->mObservers.append( observer );
|
|
}
|
|
d->mNewObserver = true;
|
|
}
|
|
|
|
void Calendar::unregisterObserver( CalendarObserver *observer )
|
|
{
|
|
d->mObservers.removeAll( observer );
|
|
}
|
|
|
|
bool Calendar::isSaving()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void Calendar::setModified( bool modified )
|
|
{
|
|
if ( modified != d->mModified || d->mNewObserver ) {
|
|
d->mNewObserver = false;
|
|
foreach ( CalendarObserver *observer, d->mObservers ) {
|
|
observer->calendarModified( modified, this );
|
|
}
|
|
d->mModified = modified;
|
|
}
|
|
}
|
|
|
|
bool Calendar::isModified() const
|
|
{
|
|
return d->mModified;
|
|
}
|
|
|
|
void Calendar::incidenceUpdated( IncidenceBase *incidence )
|
|
{
|
|
incidence->setLastModified( KDateTime::currentUtcDateTime() );
|
|
// we should probably update the revision number here,
|
|
// or internally in the Event itself when certain things change.
|
|
// need to verify with ical documentation.
|
|
|
|
// The static_cast is ok as the CalendarLocal only observes Incidence objects
|
|
notifyIncidenceChanged( static_cast<Incidence *>( incidence ) );
|
|
|
|
setModified( true );
|
|
}
|
|
|
|
void Calendar::doSetTimeSpec( const KDateTime::Spec &timeSpec )
|
|
{
|
|
Q_UNUSED( timeSpec );
|
|
}
|
|
|
|
void Calendar::notifyIncidenceAdded( Incidence *i )
|
|
{
|
|
if ( !d->mObserversEnabled ) {
|
|
return;
|
|
}
|
|
|
|
foreach ( CalendarObserver *observer, d->mObservers ) {
|
|
observer->calendarIncidenceAdded( i );
|
|
}
|
|
}
|
|
|
|
void Calendar::notifyIncidenceChanged( Incidence *i )
|
|
{
|
|
if ( !d->mObserversEnabled ) {
|
|
return;
|
|
}
|
|
|
|
foreach ( CalendarObserver *observer, d->mObservers ) {
|
|
observer->calendarIncidenceChanged( i );
|
|
}
|
|
}
|
|
|
|
void Calendar::notifyIncidenceDeleted( Incidence *i )
|
|
{
|
|
if ( !d->mObserversEnabled ) {
|
|
return;
|
|
}
|
|
|
|
foreach ( CalendarObserver *observer, d->mObservers ) {
|
|
observer->calendarIncidenceDeleted( i );
|
|
}
|
|
}
|
|
|
|
void Calendar::customPropertyUpdated()
|
|
{
|
|
setModified( true );
|
|
}
|
|
|
|
void Calendar::setProductId( const QString &id )
|
|
{
|
|
d->mProductId = id;
|
|
}
|
|
|
|
QString Calendar::productId() const
|
|
{
|
|
return d->mProductId;
|
|
}
|
|
|
|
Incidence::List Calendar::mergeIncidenceList( const Event::List &events,
|
|
const Todo::List &todos,
|
|
const Journal::List &journals )
|
|
{
|
|
Incidence::List incidences;
|
|
|
|
int i, end;
|
|
for ( i = 0, end = events.count(); i < end; ++i ) {
|
|
incidences.append( events[i] );
|
|
}
|
|
|
|
for ( i = 0, end = todos.count(); i < end; ++i ) {
|
|
incidences.append( todos[i] );
|
|
}
|
|
|
|
for ( i = 0, end = journals.count(); i < end; ++i ) {
|
|
incidences.append( journals[i] );
|
|
}
|
|
|
|
return incidences;
|
|
}
|
|
|
|
bool Calendar::beginChange( Incidence *incidence )
|
|
{
|
|
Q_UNUSED( incidence );
|
|
return true;
|
|
}
|
|
|
|
bool Calendar::endChange( Incidence *incidence )
|
|
{
|
|
Q_UNUSED( incidence );
|
|
return true;
|
|
}
|
|
|
|
void Calendar::setObserversEnabled( bool enabled )
|
|
{
|
|
d->mObserversEnabled = enabled;
|
|
}
|
|
|
|
void Calendar::appendAlarms( Alarm::List &alarms, Incidence *incidence,
|
|
const KDateTime &from, const KDateTime &to )
|
|
{
|
|
KDateTime preTime = from.addSecs(-1);
|
|
|
|
Alarm::List alarmlist = incidence->alarms();
|
|
for ( int i = 0, iend = alarmlist.count(); i < iend; ++i ) {
|
|
if ( alarmlist[i]->enabled() ) {
|
|
KDateTime dt = alarmlist[i]->nextRepetition( preTime );
|
|
if ( dt.isValid() && dt <= to ) {
|
|
kDebug() << incidence->summary() << "':" << dt.toString();
|
|
alarms.append( alarmlist[i] );
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void Calendar::appendRecurringAlarms( Alarm::List &alarms,
|
|
Incidence *incidence,
|
|
const KDateTime &from,
|
|
const KDateTime &to )
|
|
{
|
|
KDateTime dt;
|
|
Duration endOffset( 0 );
|
|
bool endOffsetValid = false;
|
|
Duration period( from, to );
|
|
|
|
Event *e = static_cast<Event *>( incidence );
|
|
Todo *t = static_cast<Todo *>( incidence );
|
|
|
|
Alarm::List alarmlist = incidence->alarms();
|
|
for ( int i = 0, iend = alarmlist.count(); i < iend; ++i ) {
|
|
Alarm *a = alarmlist[i];
|
|
if ( a->enabled() ) {
|
|
if ( a->hasTime() ) {
|
|
// The alarm time is defined as an absolute date/time
|
|
dt = a->nextRepetition( from.addSecs( -1 ) );
|
|
if ( !dt.isValid() || dt > to ) {
|
|
continue;
|
|
}
|
|
} else {
|
|
// Alarm time is defined by an offset from the event start or end time.
|
|
// Find the offset from the event start time, which is also used as the
|
|
// offset from the recurrence time.
|
|
Duration offset( 0 );
|
|
if ( a->hasStartOffset() ) {
|
|
offset = a->startOffset();
|
|
} else if ( a->hasEndOffset() ) {
|
|
offset = a->endOffset();
|
|
if ( !endOffsetValid ) {
|
|
if ( incidence->type() == "Event" ) {
|
|
endOffset = Duration( e->dtStart(), e->dtEnd() );
|
|
endOffsetValid = true;
|
|
} else if ( incidence->type() == "Todo" &&
|
|
t->hasStartDate() && t->hasDueDate() ) {
|
|
endOffset = Duration( t->dtStart(), t->dtEnd() );
|
|
endOffsetValid = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
// Find the incidence's earliest alarm
|
|
KDateTime alarmStart;
|
|
if ( incidence->type() == "Event" ) {
|
|
alarmStart =
|
|
offset.end( a->hasEndOffset() ? e->dtEnd() : e->dtStart() );
|
|
} else if ( incidence->type() == "Todo" ) {
|
|
alarmStart =
|
|
offset.end( a->hasEndOffset() ? t->dtDue() : t->dtStart() );
|
|
}
|
|
|
|
if ( alarmStart.isValid() && alarmStart > to ) {
|
|
continue;
|
|
}
|
|
|
|
KDateTime baseStart;
|
|
if ( incidence->type() == "Event" ) {
|
|
baseStart = e->dtStart();
|
|
} else if ( incidence->type() == "Todo" ) {
|
|
baseStart = t->dtDue();
|
|
}
|
|
if ( alarmStart.isValid() && from > alarmStart ) {
|
|
alarmStart = from; // don't look earlier than the earliest alarm
|
|
baseStart = (-offset).end( (-endOffset).end( alarmStart ) );
|
|
}
|
|
|
|
// Adjust the 'alarmStart' date/time and find the next recurrence
|
|
// at or after it. Treat the two offsets separately in case one
|
|
// is daily and the other not.
|
|
dt = incidence->recurrence()->getNextDateTime( baseStart.addSecs( -1 ) );
|
|
if ( !dt.isValid() ||
|
|
( dt = endOffset.end( offset.end( dt ) ) ) > to ) // adjust 'dt' to get the alarm time
|
|
{
|
|
// The next recurrence is too late.
|
|
if ( !a->repeatCount() ) {
|
|
continue;
|
|
}
|
|
|
|
// The alarm has repetitions, so check whether repetitions of
|
|
// previous recurrences fall within the time period.
|
|
bool found = false;
|
|
Duration alarmDuration = a->duration();
|
|
for ( KDateTime base = baseStart;
|
|
( dt = incidence->recurrence()->getPreviousDateTime( base ) ).isValid();
|
|
base = dt ) {
|
|
if ( a->duration().end( dt ) < base ) {
|
|
break; // this recurrence's last repetition is too early, so give up
|
|
}
|
|
|
|
// The last repetition of this recurrence is at or after
|
|
// 'alarmStart' time. Check if a repetition occurs between
|
|
// 'alarmStart' and 'to'.
|
|
int snooze = a->snoozeTime().value(); // in seconds or days
|
|
if ( a->snoozeTime().isDaily() ) {
|
|
Duration toFromDuration( dt, base );
|
|
int toFrom = toFromDuration.asDays();
|
|
if ( a->snoozeTime().end( from ) <= to ||
|
|
( toFromDuration.isDaily() && toFrom % snooze == 0 ) ||
|
|
( toFrom / snooze + 1 ) * snooze <= toFrom + period.asDays() ) {
|
|
found = true;
|
|
#ifndef NDEBUG
|
|
// for debug output
|
|
dt = offset.end( dt ).addDays( ( ( toFrom - 1 ) / snooze + 1 ) * snooze );
|
|
#endif
|
|
break;
|
|
}
|
|
} else {
|
|
int toFrom = dt.secsTo( base );
|
|
if ( period.asSeconds() >= snooze ||
|
|
toFrom % snooze == 0 ||
|
|
( toFrom / snooze + 1 ) * snooze <= toFrom + period.asSeconds() )
|
|
{
|
|
found = true;
|
|
#ifndef NDEBUG
|
|
// for debug output
|
|
dt = offset.end( dt ).addSecs( ( ( toFrom - 1 ) / snooze + 1 ) * snooze );
|
|
#endif
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if ( !found ) {
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
kDebug() << incidence->summary() << "':" << dt.toString();
|
|
alarms.append( a );
|
|
}
|
|
}
|
|
}
|
|
|