First public contribution.
1 // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include "SchLogger.h"
21 NONSHARABLE_CLASS(TScheduleEntryHourly) : public TScheduleEntry
24 TScheduleEntryHourly(TScheduleEntryInfo2& aInfo);
25 void CalculateNextPossibleRunDate(TTime& aTime) const;
28 NONSHARABLE_CLASS(TScheduleEntryDaily) : public TScheduleEntry
31 TScheduleEntryDaily(TScheduleEntryInfo2& aInfo);
32 void CalculateNextPossibleRunDate(TTime& aTime) const;
35 NONSHARABLE_CLASS(TScheduleEntryMonthly) : public TScheduleEntry
38 TScheduleEntryMonthly(TScheduleEntryInfo2& aInfo);
39 void CalculateNextPossibleRunDate(TTime& aTime) const;
42 NONSHARABLE_CLASS(TScheduleEntryYearly) : public TScheduleEntry
45 TScheduleEntryYearly(TScheduleEntryInfo2& aInfo);
46 void CalculateNextPossibleRunDate(TTime& aTime) const;
50 TScheduleEntry* ScheduleEntryFactory::CreateL(TScheduleEntryInfo2& aInfo)
52 switch (aInfo.IntervalType())
56 return new(ELeave) TScheduleEntryHourly(aInfo);
60 return new(ELeave) TScheduleEntryDaily(aInfo);
64 return new(ELeave) TScheduleEntryMonthly(aInfo);
68 return new(ELeave) TScheduleEntryYearly(aInfo);
71 User::Leave(KErrArgument);
72 return NULL;//never gets to here!!
76 //TScheduleEntry (generic code)
77 TScheduleEntry::TScheduleEntry(TScheduleEntryInfo2& aInfo)
81 time.SetUtcTime(Time::MaxTTime());
85 const TTsTime& TScheduleEntry::DueTime() const
90 TInt TScheduleEntry::Offset()
92 return (_FOFF(TScheduleEntry, iLink));
95 const TScheduleEntryInfo2& TScheduleEntry::Info() const
100 returns the next due time for this schedule entry. aTime is the minimum time
101 for which this due time should be.*/
102 const TTsTime& TScheduleEntry::NextScheduledTime(const TTsTime& aTime)
104 // update start time in case of any timezone/DST changes
105 // do this before calculating next scheduled time so that it is taken into
106 // account in the calculation
107 iEntryInfo.ProcessOffsetEvent();
109 // if start time = max time then algorithm below doesnt work
110 // so we need to jump out of it here.
111 if (iEntryInfo.StartTime().GetUtcTime() == Time::MaxTTime()
112 || iEntryInfo.StartTime().GetLocalTime() == Time::MaxTTime()
113 || aTime.GetUtcTime() < (iEntryInfo.StartTime().GetUtcTime() + iEntryInfo.ValidityPeriod()))
114 iDueTime = iEntryInfo.StartTime();
117 // Work out when this schedule entry can next run, by adding interval steps
118 // Due times should be UTC based or local time based,
119 // in accordance with the start time set by the user
122 if (iEntryInfo.StartTime().IsUtc())
124 nextDueTime = iEntryInfo.StartTime().GetUtcTime();
125 while (aTime.GetUtcTime() > (nextDueTime + iEntryInfo.ValidityPeriod()))
126 CalculateNextPossibleRunDate(nextDueTime);
128 iDueTime.SetUtcTime(nextDueTime);
130 else //is hometime based
132 nextDueTime = iEntryInfo.StartTime().GetLocalTime();
133 while (aTime.GetLocalTime() > (nextDueTime + iEntryInfo.ValidityPeriod()))
134 CalculateNextPossibleRunDate(nextDueTime);
136 iDueTime.SetLocalTime(nextDueTime);
143 //subclass-specific code...
144 TScheduleEntryHourly::TScheduleEntryHourly(TScheduleEntryInfo2& aInfo)
145 :TScheduleEntry(aInfo)
149 void TScheduleEntryHourly::CalculateNextPossibleRunDate(TTime& aTime) const
151 aTime+=TTimeIntervalHours(Info().Interval());
154 TScheduleEntryDaily::TScheduleEntryDaily(TScheduleEntryInfo2& aInfo)
155 :TScheduleEntry(aInfo)
159 void TScheduleEntryDaily::CalculateNextPossibleRunDate(TTime& aTime) const
161 aTime+=TTimeIntervalDays(Info().Interval());
164 TScheduleEntryMonthly::TScheduleEntryMonthly(TScheduleEntryInfo2& aInfo)
165 :TScheduleEntry(aInfo)
169 void TScheduleEntryMonthly::CalculateNextPossibleRunDate(TTime& aTime) const
171 aTime+=TTimeIntervalMonths(Info().Interval());
174 TScheduleEntryYearly::TScheduleEntryYearly(TScheduleEntryInfo2& aInfo)
175 :TScheduleEntry(aInfo)
179 void TScheduleEntryYearly::CalculateNextPossibleRunDate(TTime& aTime) const
181 aTime+=TTimeIntervalYears(Info().Interval());