lzq 2025-12-24 00:29:17 +08:00
parent d49d6bfc9b
commit 10c52408b2
1 changed files with 60 additions and 108 deletions

View File

@ -19,173 +19,132 @@ package com.njzscloud.common.sichen.support;
import java.text.ParseException; import java.text.ParseException;
import java.util.*; import java.util.*;
/** /**
* Provides a parser and evaluator for unix-like cron expressions. Cron * Unix Cron Cron
* expressions provide the ability to specify complex time combinations such as * 8:00 1:30
* "At 8:00am every Monday through Friday" or "At 1:30am every *
* last Friday of the month".
* <P> * <P>
* Cron expressions are comprised of 6 required fields and one optional field * Cron 6 1
* separated by white space. The fields respectively are described as follows:
* *
* <table cellspacing="8"> * <table cellspacing="8">
* <tr> * <tr>
* <th align="left">Field Name</th> * <th align="left"></th>
* <th align="left">&nbsp;</th> * <th align="left">&nbsp;</th>
* <th align="left">Allowed Values</th> * <th align="left"></th>
* <th align="left">&nbsp;</th> * <th align="left">&nbsp;</th>
* <th align="left">Allowed Special Characters</th> * <th align="left"></th>
* </tr> * </tr>
* <tr> * <tr>
* <td align="left"><code>Seconds</code></td> * <td align="left"><code>Seconds</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>0-59</code></td> * <td align="left"><code>0-59</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>, - * /</code></td> * <td align="left"><code>, - * /</code></td>
* </tr> * </tr>
* <tr> * <tr>
* <td align="left"><code>Minutes</code></td> * <td align="left"><code>Minutes</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>0-59</code></td> * <td align="left"><code>0-59</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>, - * /</code></td> * <td align="left"><code>, - * /</code></td>
* </tr> * </tr>
* <tr> * <tr>
* <td align="left"><code>Hours</code></td> * <td align="left"><code>Hours</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>0-23</code></td> * <td align="left"><code>0-23</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>, - * /</code></td> * <td align="left"><code>, - * /</code></td>
* </tr> * </tr>
* <tr> * <tr>
* <td align="left"><code>Day-of-month</code></td> * <td align="left"><code>Day-of-month</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>1-31</code></td> * <td align="left"><code>1-31</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>, - * ? / L W</code></td> * <td align="left"><code>, - * ? / L W</code></td>
* </tr> * </tr>
* <tr> * <tr>
* <td align="left"><code>Month</code></td> * <td align="left"><code>Month</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>0-11 or JAN-DEC</code></td> * <td align="left"><code>0-11 JAN-DEC</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>, - * /</code></td> * <td align="left"><code>, - * /</code></td>
* </tr> * </tr>
* <tr> * <tr>
* <td align="left"><code>Day-of-Week</code></td> * <td align="left"><code>Day-of-Week</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>1-7 or SUN-SAT</code></td> * <td align="left"><code>1-7 SUN-SAT</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>, - * ? / L #</code></td> * <td align="left"><code>, - * ? / L #</code></td>
* </tr> * </tr>
* <tr> * <tr>
* <td align="left"><code>Year (Optional)</code></td> * <td align="left"><code>Year</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>empty, 1970-2199</code></td> * <td align="left"><code>1970-2199</code></td>
* <td align="left">&nbsp;</th> * <td align="left">&nbsp;</th>
* <td align="left"><code>, - * /</code></td> * <td align="left"><code>, - * /</code></td>
* </tr> * </tr>
* </table> * </table>
* <P> * <P>
* The '*' character is used to specify all values. For example, &quot;*&quot; * '*' 使 "*"
* in the minute field means &quot;every minute&quot;.
* <P> * <P>
* The '?' character is allowed for the day-of-month and day-of-week fields. It * '?' Day-of-monthDay-of-Week使
* is used to specify 'no specific value'. This is useful when you need to *
* specify something in one of the two fields, but not the other.
* <P> * <P>
* The '-' character is used to specify ranges For example &quot;10-12&quot; in * '-' 使 "10-12" 10 11 12
* the hour field means &quot;the hours 10, 11 and 12&quot;.
* <P> * <P>
* The ',' character is used to specify additional values. For example * ',' 使 "MON,WED,FRI"
* &quot;MON,WED,FRI&quot; in the day-of-week field means &quot;the days Monday,
* Wednesday, and Friday&quot;.
* <P> * <P>
* The '/' character is used to specify increments. For example &quot;0/15&quot; * '/' 使 "0/15" 0 15 30 45
* in the seconds field means &quot;the seconds 0, 15, 30, and 45&quot;. And * "5/15" 5 20 35 50 '/' '*' 0
* &quot;5/15&quot; in the seconds field means &quot;the seconds 5, 20, 35, and * 0-59 0-23
* 50&quot;. Specifying '*' before the '/' is equivalent to specifying 0 is * 1-31 0-11 JAN DEC'/' n
* the value to start with. Essentially, for each field in the expression, there * 使 "7/6" 7 6
* is a set of numbers that can be turned on or off. For seconds and minutes,
* the numbers range from 0 to 59. For hours 0 to 23, for days of the month 0 to
* 31, and for months 0 to 11 (JAN to DEC). The &quot;/&quot; character simply helps you turn
* on every &quot;nth&quot; value in the given set. Thus &quot;7/6&quot; in the
* month field only turns on month &quot;7&quot;, it does NOT mean every 6th
* month, please note that subtlety.
* <P> * <P>
* The 'L' character is allowed for the day-of-month and day-of-week fields. * 'L' Day-of-monthDay-of-Week使last
* This character is short-hand for &quot;last&quot;, but it has different * 使 "L" 1 31
* meaning in each of the two fields. For example, the value &quot;L&quot; in * 2 28 使 "L"7SAT
* the day-of-month field means &quot;the last day of the month&quot; - day 31 * 使 "6L"
* for January, day 28 for February on non-leap years. If used in the * "L-3"
* day-of-week field by itself, it simply means &quot;7&quot; or * <i>使 'L' </i>
* &quot;SAT&quot;. But if used in the day-of-week field after another value, it
* means &quot;the last xxx day of the month&quot; - for example &quot;6L&quot;
* means &quot;the last friday of the month&quot;. You can also specify an offset
* from the last day of the month, such as "L-3" which would mean the third-to-last
* day of the calendar month. <i>When using the 'L' option, it is important not to
* specify lists, or ranges of values, as you'll get confusing/unexpected results.</i>
* <P> * <P>
* The 'W' character is allowed for the day-of-month field. This character * 'W' Day-of-month使
* is used to specify the weekday (Monday-Friday) nearest the given day. As an * "15W" 15 15
* example, if you were to specify &quot;15W&quot; as the value for the * 14 15 16 15
* day-of-month field, the meaning is: &quot;the nearest weekday to the 15th of * 15 "1W" 1 3
* the month&quot;. So if the 15th is a Saturday, the trigger will fire on * 'W' 使
* Friday the 14th. If the 15th is a Sunday, the trigger will fire on Monday the *
* 16th. If the 15th is a Tuesday, then it will fire on Tuesday the 15th.
* However if you specify &quot;1W&quot; as the value for day-of-month, and the
* 1st is a Saturday, the trigger will fire on Monday the 3rd, as it will not
* 'jump' over the boundary of a month's days. The 'W' character can only be
* specified when the day-of-month is a single day, not a range or list of days.
* <P> * <P>
* The 'L' and 'W' characters can also be combined for the day-of-month * 'L' 'W' Day-of-month使 "LW"
* expression to yield 'LW', which translates to &quot;last weekday of the
* month&quot;.
* <P> * <P>
* The '#' character is allowed for the day-of-week field. This character is * '#' Day-of-Week使 n
* used to specify &quot;the nth&quot; XXX day of the month. For example, the * 使 "6#3" 6 "#3"
* value of &quot;6#3&quot; in the day-of-week field means the third Friday of * "2#1" "4#5"
* the month (day 6 = Friday and &quot;#3&quot; = the 3rd one in the month). * "#5" 5
* Other examples: &quot;2#1&quot; = the first Monday of the month and * 使 '#' "3#1,6#3"
* &quot;4#5&quot; = the fifth Wednesday of the month. Note that if you specify
* &quot;#5&quot; and there is not 5 of the given day-of-week in the month, then
* no firing will occur that month. If the '#' character is used, there can
* only be one expression in the day-of-week field (&quot;3#1,6#3&quot; is
* not valid, since there are two expressions).
* <P> * <P>
* <!--The 'C' character is allowed for the day-of-month and day-of-week fields. * <!--'C' Day-of-monthDay-of-Week使calendar
* This character is short-hand for "calendar". This means values are * 使
* calculated against the associated calendar, if any. If no calendar is * 使 "5C" 5 5
* associated, then it is equivalent to having an all-inclusive calendar. A * 使 "1C" -->
* value of "5C" in the day-of-month field means "the first day included by the
* calendar on or after the 5th". A value of "1C" in the day-of-week field
* means "the first day included by the calendar on or after Sunday".-->
* <P> * <P>
* The legal characters and the names of months and days of the week are not *
* case sensitive.
* *
* <p> * <p>
* <b>NOTES:</b> * <b></b>
* <ul> * <ul>
* <li>Support for specifying both a day-of-week and a day-of-month value is * <li> Day-of-monthDay-of-Week
* not complete (you'll need to use the '?' character in one of these fields). * 使 '?' </li>
* </li> * <li> 使 22-2 10 2
* <li>Overflowing ranges is supported - that is, having a larger number on * 使 NOV-FEB 11 2 使
* the left hand side than the right. You might do 22-2 to catch 10 o'clock * CronExpression "0 0 14-6 ? * FRI-MON" </li>
* at night until 2 o'clock in the morning, or you might have NOV-FEB. It is
* very important to note that overuse of overflowing ranges creates ranges
* that don't make sense and no effort has been made to determine which
* interpretation CronExpression chooses. An example would be
* "0 0 14-6 ? * FRI-MON". </li>
* </ul> * </ul>
* </p> * </p>
* *
* @author Sharada Jambula, James House * @author ··
* @author Contributions from Mads Henderson * @author ·
* @author Refactoring from CronTrigger to CronExpression by Aaron Craven * @author · CronTrigger CronExpression
* <p> * <p>
* Borrowed from quartz v2.3.1 * Quartz v2.3.1
*/ */
public final class CronExpression { public final class CronExpression {
@ -1160,13 +1119,6 @@ public final class CronExpression {
return integer; return integer;
} }
////////////////////////////////////////////////////////////////////////////
//
// Computation Functions
//
/// /////////////////////////////////////////////////////////////////////////
public Date getTimeAfter(Date afterTime) { public Date getTimeAfter(Date afterTime) {
// Computation is based on Gregorian year only. // Computation is based on Gregorian year only.