Support interactive test of recurrence rule extensions

The generic command 'next' is introduced.

Signed-off-by: Lars Henriksen <LarsHenriksen@get2net.dk>
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Lars Henriksen
2020-02-10 16:14:26 +01:00
committed by Lukas Fleischer
parent f3779d5945
commit f2918b1700
3 changed files with 68 additions and 1 deletions

View File

@@ -1772,3 +1772,27 @@ void recur_apoint_paste_item(struct recur_apoint *rapt, time_t date)
if (notify_bar())
notify_check_repeated(rapt);
}
/*
* Finds the next occurrence of a recurrent item and returns it in the provided
* buffer. Useful for test of a repeated item.
*/
int recur_next_occurrence(time_t s, long d, struct rpt *r, llist_t *e,
time_t occur, time_t *next)
{
int ret = 0;
if (r->until && r->until <= occur)
return ret;
while (!r->until || occur < r->until) {
occur = NEXTDAY(occur);
if (!check_sec(&occur))
break;
if (recur_item_find_occurrence(s, d, r, e, occur, next)) {
ret = 1;
break;
}
}
return ret;
}