-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcrontab.py
More file actions
1166 lines (965 loc) · 36.6 KB
/
crontab.py
File metadata and controls
1166 lines (965 loc) · 36.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Copyright 2015, Martin Owens <doctormo@gmail.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 3.0 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library.
#
"""
from crontab import CronTab
import sys
# Create a new non-installed crontab
cron = CronTab(tab='')
job = cron.new(command='/usr/bin/echo')
job.minute.during(5,50).every(5)
job.hour.every(4)
job.dow.on('SUN')
job.month.during('APR', 'JUN')
job.month.also.during('OCT', 'DEC')
job.every(2).days()
job.setall(1, 12, None, None, None)
job2 = cron.new(command='/foo/bar', comment='SomeID')
job2.every_reboot()
jobs = list(cron.find_command('bar'))
job3 = jobs[0]
job3.clear()
job3.minute.every(1)
sys.stdout.write(str(cron.render()))
job3.enable(False)
for job4 in cron.find_command('echo'):
sys.stdout.write(job4)
for job5 in cron.find_comment('SomeID'):
sys.stdout.write(job5)
for job6 in cron:
sys.stdout.write(job6)
for job7 in cron:
job7.every(3).hours()
sys.stdout.write(job7)
job7.every().dow()
cron.remove_all(command='/foo/bar')
cron.remove_all(comment='This command')
cron.remove_all(time='* * * * *')
cron.remove_all()
output = cron.render()
cron.write()
cron.write(filename='/tmp/output.txt')
#cron.write_to_user(user=True)
#cron.write_to_user(user='root')
# Croniter Extentions allow you to ask for the scheduled job times, make
# sure you have croniter installed, it's not a hard dependancy.
job3.schedule().get_next()
job3.schedule().get_prev()
"""
import os
import re
import shlex
import codecs
import logging
import tempfile
import subprocess as sp
from time import sleep
from collections import OrderedDict
from datetime import time, date, datetime, timedelta
__pkgname__ = 'python-crontab'
__version__ = '2.0.1'
ITEMREX = re.compile(r'^\s*([^@#\s]+)\s+([^@#\s]+)\s+([^@#\s]+)\s+([^@#\s]+)'
r'\s+([^@#\s]+)\s+([^#\n]*)(\s+#\s*([^\n]*)|$)')
SPECREX = re.compile(r'^\s*@(\w+)\s([^#\n]*)(\s+#\s*([^\n]*)|$)')
DEVNULL = ">/dev/null 2>&1"
WEEK_ENUM = ['sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun']
MONTH_ENUM = [None, 'jan', 'feb', 'mar', 'apr', 'may', 'jun', 'jul', 'aug',
'sep', 'oct', 'nov', 'dec']
SPECIALS = {"reboot": '@reboot',
"hourly": '0 * * * *',
"daily": '0 0 * * *',
"weekly": '0 0 * * 0',
"monthly": '0 0 1 * *',
"yearly": '0 0 1 1 *',
"annually": '0 0 1 1 *',
"midnight": '0 0 * * *'}
SPECIAL_IGNORE = ['midnight', 'annually']
S_INFO = [
{'max': 59, 'min': 0, 'name': 'Minutes'},
{'max': 23, 'min': 0, 'name': 'Hours'},
{'max': 31, 'min': 1, 'name': 'Day of Month'},
{'max': 12, 'min': 1, 'name': 'Month', 'enum': MONTH_ENUM},
{'max': 6, 'min': 0, 'name': 'Day of Week', 'enum': WEEK_ENUM},
]
# Detect Python3 and which OS for temperments.
import platform
PY3 = platform.python_version()[0] == '3'
WINOS = platform.system() == 'Windows'
SYSTEMV = not WINOS and os.uname()[0] in ["SunOS", "AIX", "HP-UX"]
LOG = logging.getLogger('crontab')
CRONCMD = "/usr/bin/crontab"
SHELL = os.environ.get('SHELL', '/bin/sh')
# The shell won't actually work on windows here, but
# it should be updated later in the below conditional.
current_user = lambda: None
if not WINOS:
import pwd
def current_user():
"""Returns the username of the current user"""
return pwd.getpwuid(os.getuid())[0]
if PY3:
# pylint: disable=W0622
unicode = str
basestring = str
def open_pipe(cmd, *args, **flags):
"""Runs a program and orders the arguments for compatability.
a. keyword args are flags and always appear /before/ arguments for bsd
"""
cmd_args = tuple(shlex.split(cmd))
for (key, value) in flags.items():
if len(key) == 1:
cmd_args += ("-%s" % key),
if value is not None:
cmd_args += str(value),
else:
cmd_args += ("--%s=%s" % (key, value)),
args = tuple(arg for arg in (cmd_args + tuple(args)) if arg)
return sp.Popen(args, stdout=sp.PIPE, stderr=sp.PIPE)
def _unicode(text):
"""Convert to the best string format for this python version"""
if type(text) is str and not PY3:
return unicode(text, 'utf-8')
if type(text) is bytes and PY3:
return text.decode('utf-8')
return text
class CronTab(object):
"""
Crontab object which can access any time based cron using the standard.
user - Set the user of the crontab (default: None)
* 'user' = Load from $username's crontab (instead of tab or tabfile)
* None = Don't load anything from any user crontab.
* True = Load from current $USER's crontab (unix only)
* False = This is a system crontab, each command has a username
tab - Use a string variable as the crontab instead of installed crontab
tabfile - Use a file for the crontab instead of installed crontab
log - Filename for logfile instead of /var/log/syslog
"""
def __init__(self, user=None, tab=None, tabfile=None, log=None):
self.lines = None
self.crons = None
self.filen = None
self.env = {}
# Protect windows users
self.root = not WINOS and os.getuid() == 0
# Storing user flag / username
self._user = user
# Load string or filename as inital crontab
self.intab = tab
self.read(tabfile)
self._log = log
@property
def log(self):
"""Returns the CronLog object for this tab (user or root tab only)"""
from cronlog import CronLog
if self._log is None or isinstance(self._log, basestring):
self._log = CronLog(self._log, user=self.user or 'root')
return self._log
@property
def user(self):
"""Return user's username of this crontab if applicable"""
if self._user is True:
return current_user()
return self._user
@property
def user_opt(self):
"""Returns the user option for the crontab commandline"""
# Fedora and Mac require the current user to not specify
# But Ubuntu/Debian doesn't care. Be careful here.
if self._user and self._user is not True:
if self._user != current_user():
return {'u': self._user}
return {}
def read(self, filename=None):
"""
Read in the crontab from the system into the object, called
automatically when listing or using the object. use for refresh.
"""
self.crons = []
self.lines = []
self.env = OrderedDict()
lines = []
if self.intab is not None:
lines = self.intab.split('\n')
elif filename:
self.filen = filename
with codecs.open(filename, 'r', encoding='utf-8') as fhl:
lines = fhl.readlines()
elif self.user:
(out, err) = open_pipe(CRONCMD, l='', **self.user_opt).communicate()
if err and 'no crontab for' in str(err):
pass
elif err:
raise IOError("Read crontab %s: %s" % (self.user, err))
lines = out.decode('utf-8').split("\n")
for line in lines:
self.append(CronItem(line, cron=self), line, read=True)
def append(self, cron, line='', read=False):
"""Append a CronItem object to this CronTab"""
if cron.is_valid():
if read and not cron.comment and self.lines and \
self.lines[-1] and self.lines[-1][0] == '#':
cron.set_comment(self.lines.pop()[1:].strip())
self.crons.append(cron)
self.lines.append(cron)
return cron
if '=' in line:
if ' ' not in line or line.index('=') < line.index(' '):
(name, value) = line.split('=', 1)
self.env[name.strip()] = value.strip()
return None
self.lines.append(line.replace('\n', ''))
def write(self, filename=None, user=None):
"""Write the crontab to it's source or a given filename."""
if filename:
self.filen = filename
elif user is not None:
self.filen = None
self.intab = None
self._user = user
# Add to either the crontab or the internal tab.
if self.intab is not None:
self.intab = self.render()
# And that's it if we never saved to a file
if not self.filen:
return
if self.filen:
fileh = open(self.filen, 'wb')
else:
filed, path = tempfile.mkstemp()
fileh = os.fdopen(filed, 'wb')
fileh.write(self.render().encode('utf-8'))
fileh.close()
if not self.filen:
# Add the entire crontab back to the user crontab
if self.user:
proc = open_pipe(CRONCMD, path, **self.user_opt)
# XXX This could do with being cleaned up quite a bit
proc.wait()
proc.stdout.close()
proc.stderr.close()
os.unlink(path)
else:
os.unlink(path)
raise IOError("Please specify user or filename to write.")
def write_to_user(self, user=True):
"""Write the crontab to a user (or root) instead of a file."""
return self.write(user=user)
def run_pending(self, **kwargs):
"""Run all commands in this crontab if pending (generator)"""
for job in self:
ret = job.run_pending(**kwargs)
if ret is not None:
yield ret
def run_scheduler(self, timeout=0, **kwargs):
"""Run the CronTab as an internal scheduler (generator)"""
count = 0
self.run_pending()
while count != timeout:
count += 1
sleep(kwargs.get('cadence', 60))
now = datetime.now()
if 'warp' in kwargs:
now += timedelta(seconds=count * 60)
for value in self.run_pending(now=now):
yield value
def render(self):
"""Render this crontab as it would be in the crontab."""
envs = self.env.items()
env = ["%s=%s" % (key, _unicode(val)) for (key, val) in envs]
crons = [unicode(cron) for cron in self.lines]
result = u'\n'.join(env + crons)
if result and result[-1] not in (u'\n', u'\r'):
result += u'\n'
return result
def new(self, command='', comment='', user=None):
"""
Create a new cron with a command and comment.
Returns the new CronItem object.
"""
if not user and self.user is False:
raise ValueError("User is required for system crontabs.")
return self.append(CronItem(None, command, comment, user, self))
def find_command(self, command):
"""Return an iter of jobs matching any part of the command."""
for job in self.crons:
if command in job.command:
yield job
def find_comment(self, comment):
"""Return an iter of jobs that match the comment field exactly."""
for job in self.crons:
if job.comment == comment:
yield job
def find_time(self, *args):
"""Return an iter of jobs that match this time pattern"""
for job in self.crons:
if job.slices == CronSlices(*args):
yield job
@property
def commands(self):
"""Return a generator of all unqiue commands used in this crontab"""
returned = []
for cron in self.crons:
if cron.command not in returned:
yield cron.command
returned.append(cron.command)
@property
def comments(self):
"""Return a generator of all unique comments/Id used in this crontab"""
returned = []
for cron in self.crons:
if cron.comment and cron.comment not in returned:
yield cron.comment
returned.append(cron.comment)
def remove_all(self, *args, **kwargs):
"""Removes all crons using the stated command OR that have the
stated comment OR removes everything if no arguments specified.
command - Remove all with this command
comment - Remove all with this comment or ID
time - Remove all with this time code
"""
if args:
raise AttributeError("Invalid use: remove_all(command='cmd')")
if 'command' in kwargs:
return self.remove(*self.find_command(kwargs['command']))
elif 'comment' in kwargs:
return self.remove(*self.find_comment(kwargs['comment']))
elif 'time' in kwargs:
return self.remove(*self.find_time(kwargs['time']))
return self.remove(*self.crons[:])
def remove(self, *items):
"""Remove a selected cron from the crontab."""
result = 0
for item in items:
result += self._remove(item)
return result
def _remove(self, item):
"""Internal removal of an item"""
# The last item often has a trailing line feed
if self.crons[-1] == item and self.lines[-1] == '':
self.lines.remove(self.lines[-1])
self.crons.remove(item)
self.lines.remove(item)
return 1
def __repr__(self):
kind = 'System ' if self._user == False else ''
if self.filen:
return "<%sCronTab '%s'>" % (kind, self.filen)
elif self.user and not self.user_opt:
return "<My CronTab>"
elif self.user:
return "<User CronTab '%s'>" % self.user
return "<Unattached %sCronTab>" % kind
def __iter__(self):
"""Return generator so we can track jobs after removal"""
for job in list(self.crons.__iter__()):
yield job
def __getitem__(self, i):
return self.crons[i]
def __unicode__(self):
return self.render()
def __len__(self):
return len(self.crons)
def __str__(self):
return self.render()
class CronItem(object):
"""
An item which objectifies a single line of a crontab and
May be considered to be a cron job object.
"""
def __init__(self, line=None, command='', comment='', user=None, cron=None):
self.cron = cron
self.user = user
self.valid = False
self.enabled = True
self.special = False
self.comment = None
self.command = None
self.last_run = None
self._log = None
# Initalise five cron slices using static info.
self.slices = CronSlices()
self.set_comment(comment)
if line and line.strip():
self.parse(line.strip())
elif command:
self.set_command(command)
self.valid = True
def delete(self):
"""Delete this item and remove it from it's parent"""
if not self.cron:
raise UnboundLocalError("Cron item is not in a crontab!")
else:
self.cron.remove(self)
def set_command(self, cmd):
"""Set the command and filter as needed"""
self.command = cmd.strip()
def set_comment(self, cmt):
"""Set the comment and don't filter"""
self.comment = cmt
def parse(self, line):
"""Parse a cron line string and save the info as the objects."""
line = _unicode(line)
if not line or line[0] == '#':
self.enabled = False
line = line[1:].strip()
self._set_parse(ITEMREX.findall(line))
self._set_parse(SPECREX.findall(line))
def _set_parse(self, result):
"""Set all the parsed variables into the item"""
if not result:
return
if self.cron.user == False:
# Special flag to look for per-command user
(self.user, cmd) = (result[0][-3] + ' ').split(' ', 1)
self.set_command(cmd)
else:
self.set_command(result[0][-3])
self.valid = self.setall(*result[0][:-3])
self.comment = result[0][-1]
self.enabled = self.enabled and self.valid
def enable(self, enabled=True):
"""Set if this cron job is enabled or not"""
if enabled in [True, False]:
self.enabled = enabled
return self.enabled
def is_enabled(self):
"""Return true if this job is enabled (not commented out)"""
return self.enabled
def is_valid(self):
"""Return true if this job is valid"""
return self.valid
def render(self):
"""Render this set cron-job to a string"""
self.command = _unicode(self.command)
user = ''
if self.cron and self.cron.user is False:
if not self.user:
raise ValueError("Job to system-cron format, no user set!")
user = self.user + ' '
result = u"%s %s%s" % (str(self.slices), user, self.command)
if self.comment:
self.comment = _unicode(self.comment)
if SYSTEMV:
result = "# " + self.comment + "\n" + result
else:
result += u" # " + self.comment
if not self.enabled:
result = u"# " + result
return result
def every_reboot(self):
"""Set to every reboot instead of a time pattern: @reboot"""
self.clear()
return self.slices.setall('@reboot')
def every(self, unit=1):
"""
Replace existing time pattern with a single unit, setting all lower
units to first value in valid range.
For instance job.every(3).days() will be `0 0 */3 * *`
while job.day().every(3) would be `* * */3 * *`
Many of these patterns exist as special tokens on Linux, such as
`@midnight` and `@hourly`
"""
return Every(self.slices, unit)
def setall(self, *args):
"""Replace existing time pattern with these five values given as args:
job.setall("1 2 * * *")
job.setall(1, 2) == '1 2 * * *'
job.setall(0, 0, None, '>', 'SUN') == '0 0 * 12 SUN'
"""
return self.slices.setall(*args)
def clear(self):
"""Clear the special and set values"""
return self.slices.clear()
def frequency(self, year=None):
"""Returns the number of times this item will execute in a given year
(defaults to this year)
"""
return self.slices.frequency(year=year)
def frequency_per_year(self, year=None):
"""Returns the number of /days/ this item will execute on in a year
(defaults to this year)
"""
return self.slices.frequency_per_year(year=year)
def frequency_per_day(self):
"""Returns the number of time this item will execute in any day"""
return self.slices.frequency_per_day()
def frequency_per_hour(self):
"""Returns the number of times this item will execute in any hour"""
return self.slices.frequency_per_hour()
def run_pending(self, now=None):
"""Runs the command if scheduled"""
now = now or datetime.now()
if self.is_enabled():
if self.last_run is not None:
next_time = self.schedule(self.last_run).get_next()
if next_time < now:
self.last_run = now
return self.run()
else:
self.last_run = now
def run(self):
"""Runs the given command as a pipe"""
shell = SHELL
if self.cron and 'SHELL' in self.cron.env:
shell = self.cron.env['SHELL']
(out, err) = open_pipe(shell, '-c', self.command).communicate()
if err:
LOG.error(err.decode("utf-8"))
return out.decode("utf-8").strip()
def schedule(self, date_from=None):
"""Return a croniter schedule if available."""
if not date_from:
date_from = datetime.now()
try:
# Croniter is an optional import
from croniter.croniter import croniter
except ImportError:
raise ImportError("Croniter not available. Please install croniter"
" python module via pip or your package manager")
class Croniter(croniter):
"""Same as normal croniter, but always return datetime objects"""
def get_next(self, type_ref=datetime):
return croniter.get_next(self, type_ref)
def get_prev(self, type_ref=datetime):
return croniter.get_prev(self, type_ref)
def get_current(self, type_ref=datetime):
return croniter.get_current(self, type_ref)
return Croniter(self.slices.clean_render(), date_from)
@property
def log(self):
"""Return a cron log specific for this job only"""
if not self._log and self.cron:
self._log = self.cron.log.for_program(self.command)
return self._log
@property
def minute(self):
"""Return the minute slice"""
return self.slices[0]
@property
def minutes(self):
"""Same as minute"""
return self.minute
@property
def hour(self):
"""Return the hour slice"""
return self.slices[1]
@property
def hours(self):
"""Same as hour"""
return self.hour
@property
def day(self):
"""Return the day slice"""
return self.dom
@property
def dom(self):
"""Return the day-of-the month slice"""
return self.slices[2]
@property
def month(self):
"""Return the month slice"""
return self.slices[3]
@property
def months(self):
"""Same as month"""
return self.month
@property
def dow(self):
"""Return the day of the week slice"""
return self.slices[4]
def __repr__(self):
return "<CronJob '%s'>" % str(self)
def __len__(self):
return len(str(self))
def __getitem__(self, key):
return self.slices[key]
def __lt__(self, value):
return self.frequency() < CronSlices(value).frequency()
def __gt__(self, value):
return self.frequency() > CronSlices(value).frequency()
def __str__(self):
return self.__unicode__()
def __unicode__(self):
if not self.is_valid():
raise ValueError('Refusing to render invalid crontab.'
' Disable to continue.')
return self.render()
class Every(object):
"""Provide an interface to the job.every() method:
Available Calls:
minute, minutes, hour, hours, dom, doms, month, months, dow, dows
Once run all units will be cleared (set to *) then proceeding units
will be set to '0' and the target unit will be set as every x units.
"""
def __init__(self, item, units):
self.slices = item
self.unit = units
for (key, name) in enumerate(['minute', 'hour', 'dom', 'month', 'dow',
'min', 'hour', 'day', 'moon', 'weekday']):
setattr(self, name, self.set_attr(key % 5))
setattr(self, name+'s', self.set_attr(key % 5))
def set_attr(self, target):
"""Inner set target, returns function"""
def innercall():
"""Returned inner call for setting slice targets"""
self.slices.clear()
# Day-of-week is actually a level 2 set, not level 4.
for key in range(target == 4 and 2 or target):
self.slices[key].on('<')
self.slices[target].every(self.unit)
return innercall
def year(self):
"""Special every year target"""
if self.unit > 1:
raise ValueError("Invalid value '%s', outside 1 year" % self.unit)
self.slices.setall('@yearly')
class CronSlices(list):
"""Controls a list of five time 'slices' which reprisent:
minute frequency, hour frequency, day of month frequency,
month requency and finally day of the week frequency.
"""
def __init__(self, *args):
super(CronSlices, self).__init__()
for info in S_INFO:
self.append(CronSlice(info))
self.special = None
if args and not self.setall(*args):
raise ValueError("Can't set cron value to: %s" % str(args))
self.is_valid = self.is_self_valid
def is_self_valid(self, *args):
"""Object version of is_valid"""
args = args or (self,)
return CronSlices.is_valid(*args)
@classmethod
def is_valid(cls, *args):
"""Returns true if the arguments are valid cron pattern"""
try:
return bool(cls(*args))
except Exception:
return False
def setall(self, value, *slices):
"""Parses the various ways date/time frequency can be specified"""
self.clear()
if isinstance(value, CronItem):
slices = value.slices
elif isinstance(value, datetime):
slices = [value.minute, value.hour, value.day, value.month, '*']
elif isinstance(value, time):
slices = [value.minute, value.hour, '*', '*', '*']
elif isinstance(value, date):
slices = [0, 0, value.day, value.month, '*']
# It might be possible to later understand timedelta objects
# but there's no convincing mathematics to do the conversion yet.
elif isinstance(value, list):
slices = value
elif slices:
slices = (value,) + slices
elif isinstance(value, basestring) and value:
if value.count(' ') == 4:
slices = value.strip().split(' ')
elif value.strip()[0] == '@':
value = value[1:]
slices = None
else:
slices = [value]
if 'reboot' in (value, value[1:]):
self.special = '@reboot'
return True
elif value in SPECIALS.keys():
return self.setall(SPECIALS[value])
elif not slices:
return False
if id(slices) == id(self):
raise AssertionError("Can not set cron to itself!")
for set_a, set_b in zip(self, slices):
try:
set_a.parse(set_b)
except ValueError as error:
LOG.warning(str(error))
return False
except Exception:
return False
return True
def clean_render(self):
"""Return just numbered parts of this crontab"""
return ' '.join([unicode(s) for s in self])
def render(self):
"Return just the first part of a cron job (the numbers or special)"
slices = self.clean_render()
if self.special:
return self.special
elif not SYSTEMV:
for (name, value) in SPECIALS.items():
if value == slices and name not in SPECIAL_IGNORE:
return "@%s" % name
return slices
def clear(self):
"""Clear the special and set values"""
self.special = None
for item in self:
item.clear()
def frequency(self, year=None):
"""Return frequence per year times frequency per day"""
return self.frequency_per_year(year=year) * self.frequency_per_day()
def frequency_per_year(self, year=None):
"""Returns the number of times this item will execute
in a given year (default is this year)"""
result = 0
if not year:
year = date.today().year
weekdays = list(self[4])
for month in self[3]:
for day in self[2]:
try:
if date(year, month, day).weekday() in weekdays:
result += 1
except ValueError:
continue
return result
def frequency_per_day(self):
"""Returns the number of times this item will execute in any day"""
return len(self[0]) * len(self[1])
def frequency_per_hour(self):
"""Returns the number of times this item will execute in any hour"""
return len(self[0])
def __str__(self):
return self.render()
def __eq__(self, arg):
return self.render() == CronSlices(arg).render()
class SundayError(KeyError):
"""Sunday was specified as 7 instead of 0"""
pass
class Also(object):
"""Link range values together (appending instead of replacing)"""
def __init__(self, obj):
self.obj = obj
def every(self, *a):
"""Also every one of these"""
return self.obj.every(*a, also=True)
def on(self, *a):
"""Also on these"""
return self.obj.on(*a, also=True)
def during(self, *a):
"""Also during these"""
return self.obj.during(*a, also=True)
class CronSlice(object):
"""Cron slice object which shows a time pattern"""
def __init__(self, info, value=None):
self.min = info.get('min', None)
self.max = info.get('max', None)
self.name = info.get('name', None)
self.enum = info.get('enum', None)
self.parts = []
if value:
self.parse(value)
def parse(self, value):
"""Set values into the slice."""
self.parts = []
if value is None:
return self.clear()
for part in str(value).split(','):
if part.find("/") > 0 or part.find("-") > 0 or part == '*':
self.parts.append(self.get_range(part))
else:
try:
self.parts.append(self.parse_value(part))
except SundayError:
self.parts.append(0)
except ValueError as err:
raise ValueError('%s:%s/%s' % (str(err), self.name, part))
def render(self, resolve=False):
"""Return the slice rendered as a crontab.
resolve - return integer values instead of enums (default False)
"""
if len(self.parts) == 0:
return '*'
return _render_values(self.parts, ',', resolve)
def __repr__(self):
return "<CronSlice '%s'>" % str(self)
def __eq__(self, value):
return str(self) == str(value)
def __str__(self):
return self.__unicode__()
def __unicode__(self):
return self.render()
def every(self, n_value, also=False):
"""Set the every X units value"""
if not also:
self.clear()
self.parts.append(self.get_range(int(n_value)))
return self.parts[-1]
def on(self, *n_value, **opts):
"""Set the time values to the specified placements."""
if not opts.get('also', False):
self.clear()
for set_a in n_value:
try:
self.parts += self.parse_value(set_a),
except SundayError:
self.parts += 0,
return self.parts
def during(self, vfrom, vto, also=False):
"""Set the During value, which sets a range"""
if not also:
self.clear()
self.parts.append(self.get_range(self.parse_value(vfrom), self.parse_value(vto)))
return self.parts[-1]
@property
def also(self):
"""Appends rather than replaces the new values"""
return Also(self)
def clear(self):
"""clear the slice ready for new vaues"""
self.parts = []
def get_range(self, *vrange):
"""Return a cron range for this slice"""
return CronRange(self, *vrange)