]> git.proxmox.com Git - pve-common.git/blob - src/PVE/CalendarEvent.pm
trim event and check if empty
[pve-common.git] / src / PVE / CalendarEvent.pm
1 package PVE::CalendarEvent;
2
3 use strict;
4 use warnings;
5 use Data::Dumper;
6 use Time::Local;
7 use PVE::JSONSchema;
8 use PVE::Tools qw(trim);
9
10 # Note: This class implements a parser/utils for systemd like calender exents
11 # Date specification is currently not implemented
12
13 my $dow_names = {
14 sun => 0,
15 mon => 1,
16 tue => 2,
17 wed => 3,
18 thu => 4,
19 fri => 5,
20 sat => 6,
21 };
22
23 PVE::JSONSchema::register_format('pve-calendar-event', \&pve_verify_calendar_event);
24 sub pve_verify_calendar_event {
25 my ($text, $noerr) = @_;
26
27 eval { parse_calendar_event($text); };
28 if (my $err = $@) {
29 return undef if $noerr;
30 die "invalid calendar event '$text'\n";
31 }
32 return $text;
33 }
34
35 # The parser.
36 # returns a $calspec hash which can be passed to compute_next_event()
37 sub parse_calendar_event {
38 my ($event) = @_;
39
40 $event = trim($event);
41
42 if ($event eq '') {
43 die "unable to parse calendar event - event is empty\n";
44 }
45
46 my $parse_single_timespec = sub {
47 my ($p, $max, $matchall_ref, $res_hash) = @_;
48
49 if ($p =~ m/^((?:\*|[0-9]+))(?:\/([1-9][0-9]*))?$/) {
50 my ($start, $repetition) = ($1, $2);
51 if (defined($repetition)) {
52 $repetition = int($repetition);
53 $start = $start eq '*' ? 0 : int($start);
54 die "value '$start' out of range\n" if $start >= $max;
55 die "repetition '$repetition' out of range\n" if $repetition >= $max;
56 while ($start < $max) {
57 $res_hash->{$start} = 1;
58 $start += $repetition;
59 }
60 } else {
61 if ($start eq '*') {
62 $$matchall_ref = 1;
63 } else {
64 $start = int($start);
65 die "value '$start' out of range\n" if $start >= $max;
66 $res_hash->{$start} = 1;
67 }
68 }
69 } elsif ($p =~ m/^([0-9]+)\.\.([1-9][0-9]*)$/) {
70 my ($start, $end) = (int($1), int($2));
71 die "range start '$start' out of range\n" if $start >= $max;
72 die "range end '$end' out of range\n" if $end >= $max || $end < $start;
73 for (my $i = $start; $i <= $end; $i++) {
74 $res_hash->{$i} = 1;
75 }
76 } else {
77 die "unable to parse calendar event '$p'\n";
78 }
79 };
80
81 my $h = undef;
82 my $m = undef;
83
84 my $matchall_minutes = 0;
85 my $matchall_hours = 0;
86 my $minutes_hash = {};
87 my $hours_hash = {};
88
89 my $dowsel = join('|', keys %$dow_names);
90
91 my $dow_hash;
92
93 my $parse_dowspec = sub {
94 my ($p) = @_;
95
96 if ($p =~ m/^($dowsel)$/i) {
97 $dow_hash->{$dow_names->{lc($1)}} = 1;
98 } elsif ($p =~ m/^($dowsel)\.\.($dowsel)$/i) {
99 my $start = $dow_names->{lc($1)};
100 my $end = $dow_names->{lc($2)} || 7;
101 die "wrong order in range '$p'\n" if $end < $start;
102 for (my $i = $start; $i <= $end; $i++) {
103 $dow_hash->{($i % 7)} = 1;
104 }
105 } else {
106 die "unable to parse weekday specification '$p'\n";
107 }
108 };
109
110 my @parts = split(/\s+/, $event);
111
112 if ($parts[0] =~ m/$dowsel/i) {
113 my $dow_spec = shift @parts;
114 foreach my $p (split(',', $dow_spec)) {
115 $parse_dowspec->($p);
116 }
117 } else {
118 $dow_hash = { 0 => 1, 1 => 1, 2 => 1, 3 => 1, 4 => 1, 5=> 1, 6 => 1 };
119 }
120
121 if (scalar(@parts) && $parts[0] =~ m/\-/) {
122 my $date_spec = shift @parts;
123 die "date specification not implemented";
124 }
125
126 my $time_spec = shift(@parts) // "00:00";
127 my $chars = '[0-9*/.,]';
128
129 if ($time_spec =~ m/^($chars+):($chars+)$/) {
130 my ($p1, $p2) = ($1, $2);
131 $parse_single_timespec->($p1, 24, \$matchall_hours, $hours_hash);
132 $parse_single_timespec->($p2, 60, \$matchall_minutes, $minutes_hash);
133 } elsif ($time_spec =~ m/^($chars)+$/) { # minutes only
134 $matchall_hours = 1;
135 foreach my $p (split(',', $time_spec)) {
136 $parse_single_timespec->($p, 60, \$matchall_minutes, $minutes_hash);
137 }
138
139 } else {
140 die "unable to parse calendar event\n";
141 }
142
143 die "unable to parse calendar event - unused parts\n" if scalar(@parts);
144
145 if ($matchall_hours) {
146 $h = '*';
147 } else {
148 $h = [ sort { $a <=> $b } keys %$hours_hash ];
149 }
150
151 if ($matchall_minutes) {
152 $m = '*';
153 } else {
154 $m = [ sort { $a <=> $b } keys %$minutes_hash ];
155 }
156
157 return { h => $h, m => $m, dow => [ sort keys %$dow_hash ]};
158 }
159
160 sub compute_next_event {
161 my ($calspec, $last, $utc) = @_;
162
163 my $hspec = $calspec->{h};
164 my $mspec = $calspec->{m};
165 my $dowspec = $calspec->{dow};
166
167 $last += 60; # at least one minute later
168
169 while (1) {
170
171 my ($min, $hour, $mday, $mon, $year, $wday);
172 my $startofday;
173
174 if ($utc) {
175 (undef, $min, $hour, $mday, $mon, $year, $wday) = gmtime($last);
176 $startofday = timegm(0, 0, 0, $mday, $mon, $year);
177 } else {
178 (undef, $min, $hour, $mday, $mon, $year, $wday) = localtime($last);
179 $startofday = timelocal(0, 0, 0, $mday, $mon, $year);
180 }
181
182 $last = $startofday + $hour*3600 + $min*60;
183
184 my $check_dow = sub {
185 foreach my $d (@$dowspec) {
186 return $last if $d == $wday;
187 if ($d > $wday) {
188 return $startofday + ($d-$wday)*86400;
189 }
190 }
191 return $startofday + (7-$wday)*86400; # start of next week
192 };
193
194 if ((my $next = $check_dow->()) != $last) {
195 $last = $next;
196 next; # repeat
197 }
198
199 my $check_hour = sub {
200 return $last if $hspec eq '*';
201 foreach my $h (@$hspec) {
202 return $last if $h == $hour;
203 if ($h > $hour) {
204 return $startofday + $h*3600;
205 }
206 }
207 return $startofday + 24*3600; # test next day
208 };
209
210 if ((my $next = $check_hour->()) != $last) {
211 $last = $next;
212 next; # repeat
213 }
214
215 my $check_minute = sub {
216 return $last if $mspec eq '*';
217 foreach my $m (@$mspec) {
218 return $last if $m == $min;
219 if ($m > $min) {
220 return $startofday +$hour*3600 + $m*60;
221 }
222 }
223 return $startofday + ($hour + 1)*3600; # test next hour
224 };
225
226 if ((my $next = $check_minute->()) != $last) {
227 $last = $next;
228 next; # repeat
229 } else {
230 return $last;
231 }
232 }
233
234 die "unable to compute next calendar event\n";
235 }
236
237 1;