/*
* All content copyright Terracotta, Inc., unless otherwise indicated. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
*/
package com.aizuda.snailjob.common.core.util;
import java.io.Serializable;
import java.text.ParseException;
import java.util.*;
/**
* Provides a parser and evaluator for unix-like cron expressions. Cron
* expressions provide the ability to specify complex time combinations such as
* "At 8:00am every Monday through Friday" or "At 1:30am every
* last Friday of the month".
* <P>
* Cron expressions are comprised of 6 required fields and one optional field
* separated by white space. The fields respectively are described as follows:
*
* <table cellspacing="8">
* <tr>
* <th align="left">Field Name</th>
* <th align="left"> </th>
* <th align="left">Allowed Values</th>
* <th align="left"> </th>
* <th align="left">Allowed Special Characters</th>
* </tr>
* <tr>
* <td align="left"><code>Seconds</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-59</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Minutes</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-59</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Hours</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-23</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Day-of-month</code></td>
* <td align="left"> </th>
* <td align="left"><code>1-31</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * ? / L W</code></td>
* </tr>
* <tr>
* <td align="left"><code>Month</code></td>
* <td align="left"> </th>
* <td align="left"><code>0-11 or JAN-DEC</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* <tr>
* <td align="left"><code>Day-of-Week</code></td>
* <td align="left"> </th>
* <td align="left"><code>1-7 or SUN-SAT</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * ? / L #</code></td>
* </tr>
* <tr>
* <td align="left"><code>Year (Optional)</code></td>
* <td align="left"> </th>
* <td align="left"><code>empty, 1970-2199</code></td>
* <td align="left"> </th>
* <td align="left"><code>, - * /</code></td>
* </tr>
* </table>
* <P>
* The '*' character is used to specify all values. For example, "*"
* in the minute field means "every minute".
* <P>
* The '?' character is allowed for the day-of-month and day-of-week fields. It
* 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>
* The '-' character is used to specify ranges For example "10-12" in
* the hour field means "the hours 10, 11 and 12".
* <P>
* The ',' character is used to specify additional values. For example
* "MON,WED,FRI" in the day-of-week field means "the days Monday,
* Wednesday, and Friday".
* <P>
* The '/' character is used to specify increments. For example "0/15"
* in the seconds field means "the seconds 0, 15, 30, and 45". And
* "5/15" in the seconds field means "the seconds 5, 20, 35, and
* 50". Specifying '*' before the '/' is equivalent to specifying 0 is
* the value to start with. Essentially, for each field in the expression, there
* 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 "/" character simply helps you turn
* on every "nth" value in the given set. Thus "7/6" in the
* month field only turns on month "7", it does NOT mean every 6th
* month, please note that subtlety.
* <P>
* The 'L' character is allowed for the day-of-month and day-of-week fields.
* This character is short-hand for "last", but it has different
* meaning in each of the two fields. For example, the value "L" in
* the day-of-month field means "the last day of the month" - day 31
* for January, day 28 for February on non-leap years. If used in the
* day-of-week field by itself, it simply means "7" or
* "SAT". But if used in the day-of-week field after another value, it
* means "the last xxx day of the month" - for example "6L"
* means "the last friday of the month". 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>
* The 'W' character is allowed for the day-of-month field. This character
* is used to specify the weekday (Monday-Friday) nearest the given day. As an
* example, if you were to specify "15W" as the value for the
* day-of-month field, the meaning is: "the nearest weekday to the 15th of
* the month". So if the 15th is a Saturday, the trigger will fire on
* 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 "1W" 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>
* The 'L' and 'W' characters can also be combined for the day-of-month
* expression to yield 'LW', which translates to "last weekday of the
* month".
* <P>
* The '#' character is allowed for the day-of-week field. This character is
* used to specify "the nth" XXX day of the month. For example, the
* value of "6#3" in the day-of-week field means the third Friday of
* the month (day 6 = Friday and "#3" = the 3rd one in the month).
* Other examples: "2#1" = the first Monday of the month and
* "4#5" = the fifth Wednesday of the month. Note that if you specify
* "#5" 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 ("3#1,6#3" is
* not valid, since there are two expressions).
* <P>
* <!--The 'C' character is allowed for the day-of-month and day-of-week fields.
* This character is short-hand for "calendar". This means values are
* calculated against the associated calendar, if any. If no calendar is
* associated, then it is equivalent to having an all-inclusive calendar. A
* 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>
* The legal characters and the names of months and days of the week are not
* case sensitive.
*
* <p>
* <b>NOTES:</b>
* <
没有合适的资源?快使用搜索试试~ 我知道了~
灵活,可靠和快速的分布式任务重试和分布式任务调度平台
共1091个文件
java:823个
js:98个
xml:81个
0 下载量 63 浏览量
2024-05-27
13:41:15
上传
评论
收藏 4.05MB ZIP 举报
温馨提示
可重放,可管控、为提高分布式业务系统一致性的分布式任务重试平台 支持秒级、可中断、可编排的高性能分布式任务调度平台 简介 SnailJob 是一个灵活、可靠且高效的分布式任务重试和任务调度平台。其核心采用分区模式实现,具备高度可伸缩性和容错性的分布式系统。拥有完善的权限管理、强大的告警监控功能和友好的界面交互。欢迎大家接入并使用。 开源地址 snail-job-admin snail-job-demo 预览地址 https://snailjob.opensnail.com/docs/preview.html
资源推荐
资源详情
资源评论
收起资源包目录
灵活,可靠和快速的分布式任务重试和分布式任务调度平台 (1091个子文件)
snailjob.conf 3KB
index-BZEIztF1.css 48KB
index-MX7YncXP.css 19KB
index-CSfeLhwr.css 2KB
log-BILuLAnD.css 1KB
cron-input-D6SzxL5y.css 1KB
operate-drawer-DTODKmlP.css 215B
detail-drawer-6eZaB4pC.css 215B
index-B6PY99gE.css 46B
index-DAocMW2T.css 46B
index-CgBEMTup.css 46B
index-Bk-m-aZ9.css 46B
Dockerfile 420B
spring.factories 137B
spring.factories 135B
spring.factories 122B
spring.factories 119B
.gitignore 4KB
.gitignore 490B
.gitignore 490B
.gitignore 490B
.gitignore 490B
.gitignore 490B
.gitignore 490B
.gitignore 490B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 415B
.gitignore 344B
.gitignore 337B
index.html 685B
index.html 476B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 150B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 81B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 79B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 69B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 65B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 52B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 51B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 50B
CronExpression.java 60KB
DashBoardServiceImpl.java 20KB
GroupConfigServiceImpl.java 20KB
RetryTaskServiceImpl.java 19KB
MailAccount.java 19KB
MailUtils.java 18KB
WorkflowServiceImpl.java 16KB
SnailRetryEndPoint.java 15KB
SystemUserServiceImpl.java 15KB
WorkflowBatchHandler.java 15KB
LeapArray.java 14KB
Mail.java 14KB
JobExecutorActor.java 13KB
SegmentIdGenerator.java 13KB
SnailRetryInterceptor.java 13KB
SceneConfigServiceImpl.java 12KB
SlidingWindow.java 12KB
JobServiceImpl.java 12KB
WorkflowExecutorActor.java 11KB
AbstractGenerator.java 11KB
StreamUtils.java 11KB
RpcClientInvokeHandler.java 11KB
ActorGenerator.java 11KB
WorkflowBatchServiceImpl.java 11KB
NotifyConfigServiceImpl.java 10KB
RetryTaskLogServiceImpl.java 10KB
WorkflowHandler.java 10KB
Console.java 10KB
ServerNodeBalance.java 10KB
RetryDeadLetterServiceImpl.java 10KB
FilterStrategies.java 10KB
AbstractConfigAccess.java 9KB
JsonUtil.java 9KB
CacheRegisterTable.java 9KB
AbstractScanGroup.java 9KB
AbstractAlarm.java 9KB
WorkflowJobSummarySchedule.java 9KB
JobSummarySchedule.java 9KB
ScanJobTaskActor.java 8KB
AbstractRetryStrategies.java 8KB
JobExecutorFutureCallback.java 8KB
RequestClientActor.java 8KB
RetryErrorMoreThresholdAlarmSchedule.java 8KB
DecisionWorkflowExecutor.java 8KB
RetryLogMergeSchedule.java 8KB
CallbackWorkflowExecutor.java 8KB
ScanWorkflowTaskActor.java 8KB
RetryServiceImpl.java 8KB
Slf4jLog.java 8KB
共 1091 条
- 1
- 2
- 3
- 4
- 5
- 6
- 11
资源评论
阿尔法星球
- 粉丝: 1369
- 资源: 240
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功