]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/calendarspec.h
Merge pull request #6851 from keszybz/fix-masking-with-empty-files
[thirdparty/systemd.git] / src / basic / calendarspec.h
1 #pragma once
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2012 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 /* A structure for specifying (possibly repetitive) points in calendar
23 * time, a la cron */
24
25 #include <stdbool.h>
26
27 #include "time-util.h"
28 #include "util.h"
29
30 typedef struct CalendarComponent {
31 int start;
32 int stop;
33 int repeat;
34
35 struct CalendarComponent *next;
36 } CalendarComponent;
37
38 typedef struct CalendarSpec {
39 int weekdays_bits;
40 bool end_of_month;
41 bool utc;
42 int dst;
43 char *timezone;
44
45 CalendarComponent *year;
46 CalendarComponent *month;
47 CalendarComponent *day;
48
49 CalendarComponent *hour;
50 CalendarComponent *minute;
51 CalendarComponent *microsecond;
52 } CalendarSpec;
53
54 void calendar_spec_free(CalendarSpec *c);
55
56 int calendar_spec_normalize(CalendarSpec *spec);
57 bool calendar_spec_valid(CalendarSpec *spec);
58
59 int calendar_spec_to_string(const CalendarSpec *spec, char **p);
60 int calendar_spec_from_string(const char *p, CalendarSpec **spec);
61
62 int calendar_spec_next_usec(const CalendarSpec *spec, usec_t usec, usec_t *next);