2018-03-09 06:09:11 +08:00
|
|
|
# libcron
|
|
|
|
A C++ scheduling library using cron formatting.
|
2018-03-12 01:45:27 +08:00
|
|
|
|
2018-03-12 06:38:12 +08:00
|
|
|
# Local time vs UTC
|
2018-03-12 02:07:35 +08:00
|
|
|
|
2018-03-12 06:38:12 +08:00
|
|
|
This library uses `std::chrono::system_clock::timepoint` as its time unit. While that is UTC by default, the Cron-class
|
|
|
|
uses a `LocalClock` by default which offsets `system_clock::now()` by the current UTC-offset. If you wish to work in
|
|
|
|
UTC, then construct the Cron instance, passing it a `libcron::UTCClock`.
|
2018-03-12 02:07:35 +08:00
|
|
|
|
2018-03-12 01:45:27 +08:00
|
|
|
# Supported formatting
|
|
|
|
|
|
|
|
This implementation supports cron format, as specified below.
|
|
|
|
|
|
|
|
Each schedule expression conststs of 6 parts, all mandatory. However, if 'day of month' specifies specific days, then 'day of week' is ignored.
|
|
|
|
|
|
|
|
```text
|
|
|
|
┌──────────────seconds (0 - 59)
|
|
|
|
│ ┌───────────── minute (0 - 59)
|
|
|
|
│ │ ┌───────────── hour (0 - 23)
|
|
|
|
│ │ │ ┌───────────── day of month (1 - 31)
|
|
|
|
│ │ │ │ ┌───────────── month (1 - 12)
|
|
|
|
│ │ │ │ │ ┌───────────── day of week (0 - 6) (Sunday to Saturday)
|
|
|
|
│ │ │ │ │ │
|
|
|
|
│ │ │ │ │ │
|
|
|
|
│ │ │ │ │ │
|
|
|
|
* * * * * *
|
|
|
|
```
|
|
|
|
* Allowed formats:
|
|
|
|
* Special characters: '*', meaning the entire range.
|
|
|
|
* '?' used to ignore day of month/day of week as noted below.
|
|
|
|
|
|
|
|
* Ranges: 1,2,4-6
|
|
|
|
* Result: 1,2,4,5,6
|
|
|
|
* Steps: n/m, where n is the start and m is the step.
|
|
|
|
* `1/2` yields 1,3,5,7...<max>
|
|
|
|
* `5/3` yields 5,8,11,14...<max>
|
|
|
|
* `*/2` yields Result: 1,3,5,7...<max>
|
|
|
|
* Reversed ranges:
|
|
|
|
* `0 0 23-2 * * *`, meaning top of each minute and hour, of hours, 23, 0, 1 and 2, every day.
|
|
|
|
* Compare to `0 0 2-23 * * *` which means top of each minute and hour, of hours, 2,3...21,22,23 every day.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
For `month`, these (case insensitive) strings can be used instead of numbers: `JAN, FEB, MAR, APR, MAY, JUN, JUL, AUG, SEP, OCT, NOV, DEC`.
|
|
|
|
Example: `JAN,MAR,SEP-NOV`
|
|
|
|
|
|
|
|
For `day of week`, these (case insensitive) strings can be used instead of numbers: `SUN, MON, TUE, WED, THU, FRI, SAT`.
|
|
|
|
Example: `MON-THU,SAT`
|
|
|
|
|
|
|
|
Each part is separated by one or more whitespaces. It is thus important to keep whitespaces out of the respective parts.
|
|
|
|
|
|
|
|
* Valid:
|
|
|
|
* 0,3,40-50 * * * * ?
|
|
|
|
|
|
|
|
* Invalid:
|
|
|
|
* 0, 3, 40-50 * * * * ?
|
|
|
|
|
|
|
|
`Day of month` and `day of week` are mutually exclusive so one of them must at always be ignored using
|
2019-03-15 18:18:10 +08:00
|
|
|
the '?'-character to ensure that it is not possible to specify a statement which results in an impossible mix of these fields.
|
2018-03-12 01:45:27 +08:00
|
|
|
|
2019-03-15 18:18:10 +08:00
|
|
|
## Examples
|
2018-03-12 01:45:27 +08:00
|
|
|
|
|
|
|
|Expression | Meaning
|
|
|
|
| --- | --- |
|
|
|
|
| * * * * * ? | Every second
|
2019-03-15 18:18:10 +08:00
|
|
|
| 0 0 12 * * MON-FRI | Every Weekday at noon
|
|
|
|
| 0 0 12 1/2 * ? | Every 2 days, starting on the 1st at noon
|
2018-03-12 02:07:35 +08:00
|
|
|
| 0 0 */12 ? * * | Every twelve hours
|
|
|
|
|
2019-03-15 18:18:10 +08:00
|
|
|
# Randomization
|
|
|
|
|
|
|
|
The standard cron format does not allow for randomization, but with the use of `CronRandomization` you can generate random
|
|
|
|
schedules using the following format: `R(range_start-range_end)`, where `range_start` and `range_end` follow the same rules
|
2019-05-17 19:39:32 +08:00
|
|
|
as for a regular cron range (step-syntax is not supported). All the rules for a regular cron expression still applies
|
|
|
|
when using randomization, i.e. mutual exclusiveness and no extra spaces.
|
2019-03-15 18:18:10 +08:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|Expression | Meaning
|
|
|
|
| --- | --- |
|
|
|
|
| 0 0 R(13-20) * * ? | On the hour, on a random hour 13-20, inclusive.
|
|
|
|
| 0 0 0 ? * R(0-6) | A random weekday, every week, at midnight.
|
|
|
|
| 0 R(45-15) */12 ? * * | A random minute between 45-15, inclusive, every 12 hours.
|
2019-05-17 19:39:32 +08:00
|
|
|
|0 0 0 ? R(DEC-MAR) R(SAT-SUN)| On the hour, on a random month december to march, on a random weekday saturday to sunday.
|
2019-03-15 18:18:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
# Used Third party libraries
|
2018-03-12 02:07:35 +08:00
|
|
|
|
2018-03-12 06:38:12 +08:00
|
|
|
Howard Hinnant's [date libraries](https://github.com/HowardHinnant/date/)
|
2018-03-12 02:07:35 +08:00
|
|
|
|