aboutsummaryrefslogtreecommitdiffstats
path: root/src/recur.c
diff options
context:
space:
mode:
authorLars Henriksen <LarsHenriksen@get2net.dk>2019-09-08 08:41:42 +0200
committerLukas Fleischer <lfleischer@calcurse.org>2019-10-18 16:29:34 -0400
commit0e46881746c1a639933d1b794bd2438a430c9c3a (patch)
treed94475b4fb7ce750b5cc00fcb1032f77e934430e /src/recur.c
parent1db1108e86ff41a5efc7268145a092fc36418d63 (diff)
downloadcalcurse-0e46881746c1a639933d1b794bd2438a430c9c3a.tar.gz
calcurse-0e46881746c1a639933d1b794bd2438a430c9c3a.zip
DST and recurrent items
The patch adresses two issues with the function recur_item_find ocurrence(), one major: mktime(), and one minor: item duration. In addition, some refactoring is done. The following recurrent appointments demonstrate the problems (as described in the message) and are used as test cases in the associated test commit. 03/29/2019 @ 12:00 -> 03/30/2019 @ 11:00 {2D -> 04/03/2019} |two-day - every other day - not on 1/4 03/31/2019 @ 12:00 -> 03/31/2019 @ 13:00 {1D -> 04/01/2019} |daily - not on 31/3, twice on 1/4 03/31/2019 @ 04:00 -> 03/31/2019 @ 05:00 {1W} |weekly - appears after one week 03/31/2019 @ 12:00 -> 03/31/2019 @ 12:00 {1M} |monthly - never appears 03/31/2019 @ 12:00 -> 03/31/2019 @ 12:00 {1Y} |yearly - never appears 10/20/2019 @ 00:00 -> 10/21/2019 @ 01:00 {1W -> 11/03/2019} |25 hours - ends on 27th, but continues on 28th 03/24/2019 @ 00:00 -> 03/25/2019 @ 00:00 {1W -> 04/07/2019} |24 hours - does not continue on April 1 The root cause is two mktime() calls in recur_item_find_occurrence(), both of which use an inherited tm_isdst value in the tm structure. In such cases mktime() will "normalize" the tm stucture if tm_isdst is 0 or 1 and in disagreement with the rest of the tm contents (just like 32 May will be normalized to 1 June). Example. In 2019 DST started on 31/3 at 02:00:00 (in the European Union). If the (local) time "31/3/2018 00:00:00" is passed to mktime() with tm_isdst = 0, the return value is (say) T sec and the tm structure is unchanged, because DST is not in effect at midnight. If the same call is performed with tm_isdst = 1, the return value becomes (T - 3600) sec and the tm structure is normalized to "30/3/2018 23:00:00", tm_isdst = 0. In recur_item_find_occurrence(), the normalized tm structure with wrong day and time is used in ensuing calculations, leading to wrong dates and the errors observed. The first mktime() call is used to calculate the "day span" of the occurrence before the occurrence itself has been determined. But once the occurence is known, the "day span" is easily determined, and there is no need for the first mktime() call. Events have no explicit duration. However, recur_event_find_occurrence() and recur_event_inday() set the duration of an event to DAYINSEC before passing it on to recur_item_find_occurrence(). The value is not correct on the day when DST begins or ends. The interpretation of the daylength should be left to the called function. Hence, duration is set to -1 to signal no (explicit) duration. Signed-off-by: Lars Henriksen <LarsHenriksen@get2net.dk> Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
Diffstat (limited to 'src/recur.c')
-rw-r--r--src/recur.c71
1 files changed, 36 insertions, 35 deletions
diff --git a/src/recur.c b/src/recur.c
index d424bca..7376536 100644
--- a/src/recur.c
+++ b/src/recur.c
@@ -760,29 +760,35 @@ recur_item_find_occurrence(time_t item_start, long item_dur,
time_t rpt_until, time_t day_start,
time_t *occurrence)
{
- struct date start_date;
- long diff, span;
+/*
+ * Function-internal duration
+ * 1) To avoid an item ending on midnight (which belongs to the next day),
+ * duration is always diminished by 1 second.
+ * 2) An event has no explicit duration, but lasts for an entire day, which
+ * in turn depends on DST.
+ */
+#define ITEM_DUR(d) ((item_dur == -1 ? DAYLEN(d) : item_dur) - 1)
+
+ long diff;
struct tm lt_day, lt_item, lt_item_day;
- time_t t;
+ time_t occ, item_day_start;
- if (date_cmp_day(day_start, item_start) < 0)
- return 0;
+ item_day_start = update_time_in_date(item_start, 0, 0);
- if (rpt_until != 0 && day_start >= rpt_until +
- (item_start - update_time_in_date(item_start, 0, 0)) + item_dur)
+ if (day_start < item_day_start)
return 0;
- t = day_start;
- localtime_r(&t, &lt_day);
-
- t = item_start;
- localtime_r(&t, &lt_item);
-
- lt_item_day = lt_item;
- lt_item_day.tm_sec = lt_item_day.tm_min = lt_item_day.tm_hour = 0;
+ if (rpt_until && day_start >=
+ rpt_until + (item_start - item_day_start) + ITEM_DUR(rpt_until))
+ return 0;
- span = (item_start - mktime(&lt_item_day) + item_dur - 1) / DAYINSEC;
+ localtime_r(&day_start, &lt_day); /* selected day */
+ localtime_r(&item_start, &lt_item); /* first occurrence */
+ lt_item_day = lt_item; /* recent occurrence */
+ /*
+ * Update to the most recent occurrence before or on the selected day.
+ */
switch (rpt_type) {
case RECUR_DAILY:
diff = diff_days(lt_item_day, lt_day) % rpt_freq;
@@ -817,8 +823,9 @@ recur_item_find_occurrence(time_t item_start, long item_dur,
EXIT(_("unknown item type"));
}
- lt_item_day.tm_isdst = lt_day.tm_isdst;
- t = mktime(&lt_item_day);
+ /* Switch to calendar (Unix) time. */
+ lt_item_day.tm_isdst = -1;
+ occ = mktime(&lt_item_day);
/*
* Impossible dates must be ignored (according to RFC 5545). Changing
@@ -826,34 +833,28 @@ recur_item_find_occurrence(time_t item_start, long item_dur,
* non-leap years or 31 November.
*/
if (rpt_type == RECUR_MONTHLY || rpt_type == RECUR_YEARLY) {
- localtime_r(&t, &lt_item_day);
+ localtime_r(&occ, &lt_item_day);
if (lt_item_day.tm_mday != lt_item.tm_mday)
return 0;
}
/* Exception day? */
- if (LLIST_FIND_FIRST(item_exc, &t, exc_inday))
+ if (LLIST_FIND_FIRST(item_exc, &occ, exc_inday))
return 0;
- if (rpt_until != 0 && t >= NEXTDAY(rpt_until))
+ /* After until day? */
+ if (rpt_until && occ >= NEXTDAY(rpt_until))
return 0;
- localtime_r(&t, &lt_item_day);
- diff = diff_days(lt_item_day, lt_day);
-
- if (diff > span)
+ /* Does it span the selected day? */
+ if (occ + ITEM_DUR(occ) < day_start)
return 0;
- if (occurrence) {
- start_date.dd = lt_item_day.tm_mday;
- start_date.mm = lt_item_day.tm_mon + 1;
- start_date.yyyy = lt_item_day.tm_year + 1900;
-
- *occurrence = date2sec(start_date, lt_item.tm_hour,
- lt_item.tm_min);
- }
+ if (occurrence)
+ *occurrence = occ;
return 1;
+#undef ITEM_DUR
}
unsigned
@@ -871,7 +872,7 @@ unsigned
recur_event_find_occurrence(struct recur_event *rev, time_t day_start,
time_t *occurrence)
{
- return recur_item_find_occurrence(rev->day, DAYINSEC, &rev->exc,
+ return recur_item_find_occurrence(rev->day, -1, &rev->exc,
rev->rpt->type, rev->rpt->freq,
rev->rpt->until, day_start,
occurrence);
@@ -899,7 +900,7 @@ unsigned recur_apoint_inday(struct recur_apoint *rapt, time_t *day_start)
unsigned recur_event_inday(struct recur_event *rev, time_t *day_start)
{
- return recur_item_inday(rev->day, DAYINSEC, &rev->exc,
+ return recur_item_inday(rev->day, -1, &rev->exc,
rev->rpt->type, rev->rpt->freq,
rev->rpt->until, *day_start);
}