RuoYi/ruoyi-quartz/src/main/java/com/ruoyi/quartz/util/ScheduleUtils.java

174 lines
5.4 KiB
Java
Raw Normal View History

2018-10-07 14:16:47 +08:00
package com.ruoyi.quartz.util;
2018-07-09 08:44:52 +08:00
import org.quartz.CronScheduleBuilder;
import org.quartz.CronTrigger;
2019-03-13 19:45:12 +08:00
import org.quartz.Job;
2018-07-09 08:44:52 +08:00
import org.quartz.JobBuilder;
import org.quartz.JobDataMap;
import org.quartz.JobDetail;
import org.quartz.JobKey;
import org.quartz.Scheduler;
import org.quartz.SchedulerException;
import org.quartz.TriggerBuilder;
import org.quartz.TriggerKey;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.ruoyi.common.constant.ScheduleConstants;
2018-07-20 17:21:43 +08:00
import com.ruoyi.common.exception.job.TaskException;
import com.ruoyi.common.exception.job.TaskException.Code;
2018-10-07 14:16:47 +08:00
import com.ruoyi.quartz.domain.SysJob;
2018-07-09 08:44:52 +08:00
/**
* 定时任务工具类
*
* @author ruoyi
*
*/
public class ScheduleUtils
{
private static final Logger log = LoggerFactory.getLogger(ScheduleUtils.class);
2019-03-13 19:45:12 +08:00
/**
* 得到quartz任务类
*
* @param sysJob 执行计划
* @return 具体执行任务类
*/
private static Class<? extends Job> getQuartzJobClass(SysJob sysJob)
{
boolean isConcurrent = "0".equals(sysJob.getConcurrent());
return isConcurrent ? QuartzJobExecution.class : QuartzDisallowConcurrentExecution.class;
}
2018-07-09 08:44:52 +08:00
/**
* 获取触发器key
*/
public static TriggerKey getTriggerKey(Long jobId)
{
2018-07-20 17:21:43 +08:00
return TriggerKey.triggerKey(ScheduleConstants.TASK_CLASS_NAME + jobId);
2018-07-09 08:44:52 +08:00
}
/**
* 获取jobKey
*/
public static JobKey getJobKey(Long jobId)
{
2018-07-20 17:21:43 +08:00
return JobKey.jobKey(ScheduleConstants.TASK_CLASS_NAME + jobId);
2018-07-09 08:44:52 +08:00
}
/**
* 获取表达式触发器
*/
public static CronTrigger getCronTrigger(Scheduler scheduler, Long jobId)
{
try
{
return (CronTrigger) scheduler.getTrigger(getTriggerKey(jobId));
}
catch (SchedulerException e)
{
2018-07-26 12:37:33 +08:00
log.error("getCronTrigger 异常:", e);
2018-07-09 08:44:52 +08:00
}
return null;
}
/**
* 创建定时任务
*/
2019-03-13 19:45:12 +08:00
public static void createScheduleJob(Scheduler scheduler, SysJob job) throws SchedulerException, TaskException
2018-07-09 08:44:52 +08:00
{
2019-03-13 19:45:12 +08:00
Class<? extends Job> jobClass = getQuartzJobClass(job);
// 构建job信息
JobDetail jobDetail = JobBuilder.newJob(jobClass).withIdentity(getJobKey(job.getJobId())).build();
2018-07-09 08:44:52 +08:00
2019-03-13 19:45:12 +08:00
// 表达式调度构建器
CronScheduleBuilder cronScheduleBuilder = CronScheduleBuilder.cronSchedule(job.getCronExpression());
cronScheduleBuilder = handleCronScheduleMisfirePolicy(job, cronScheduleBuilder);
2018-07-09 08:44:52 +08:00
2019-03-13 19:45:12 +08:00
// 按新的cronExpression表达式构建一个新的trigger
CronTrigger trigger = TriggerBuilder.newTrigger().withIdentity(getTriggerKey(job.getJobId()))
.withSchedule(cronScheduleBuilder).build();
2018-07-09 08:44:52 +08:00
2019-03-13 19:45:12 +08:00
// 放入参数,运行时的方法可以获取
jobDetail.getJobDataMap().put(ScheduleConstants.TASK_PROPERTIES, job);
2018-07-09 08:44:52 +08:00
2019-06-17 13:29:40 +08:00
// 判断是否存在
if (scheduler.checkExists(getJobKey(job.getJobId())))
{
// 防止创建时存在数据问题 先移除,然后在执行创建操作
scheduler.deleteJob(getJobKey(job.getJobId()));
}
2019-03-13 19:45:12 +08:00
scheduler.scheduleJob(jobDetail, trigger);
2018-07-09 08:44:52 +08:00
2019-03-13 19:45:12 +08:00
// 暂停任务
if (job.getStatus().equals(ScheduleConstants.Status.PAUSE.getValue()))
2018-07-09 08:44:52 +08:00
{
2019-03-13 19:45:12 +08:00
pauseJob(scheduler, job.getJobId());
2018-07-20 17:21:43 +08:00
}
2018-07-09 08:44:52 +08:00
}
/**
* 更新定时任务
*/
2019-03-13 19:45:12 +08:00
public static void updateScheduleJob(Scheduler scheduler, SysJob job) throws SchedulerException, TaskException
2018-07-09 08:44:52 +08:00
{
2019-03-13 19:45:12 +08:00
createScheduleJob(scheduler, job);
2018-07-09 08:44:52 +08:00
}
/**
* 立即执行任务
*/
2019-03-13 19:45:12 +08:00
public static void run(Scheduler scheduler, SysJob job) throws SchedulerException
2018-07-09 08:44:52 +08:00
{
2019-03-13 19:45:12 +08:00
// 参数
JobDataMap dataMap = new JobDataMap();
dataMap.put(ScheduleConstants.TASK_PROPERTIES, job);
2018-07-09 08:44:52 +08:00
2019-03-13 19:45:12 +08:00
scheduler.triggerJob(getJobKey(job.getJobId()), dataMap);
2018-07-09 08:44:52 +08:00
}
/**
* 暂停任务
*/
2019-03-13 19:45:12 +08:00
public static void pauseJob(Scheduler scheduler, Long jobId) throws SchedulerException
2018-07-09 08:44:52 +08:00
{
2019-03-13 19:45:12 +08:00
scheduler.pauseJob(getJobKey(jobId));
2018-07-09 08:44:52 +08:00
}
/**
* 恢复任务
*/
2019-03-13 19:45:12 +08:00
public static void resumeJob(Scheduler scheduler, Long jobId) throws SchedulerException
2018-07-09 08:44:52 +08:00
{
2019-03-13 19:45:12 +08:00
scheduler.resumeJob(getJobKey(jobId));
2018-07-09 08:44:52 +08:00
}
/**
* 删除定时任务
*/
2019-03-13 19:45:12 +08:00
public static void deleteScheduleJob(Scheduler scheduler, Long jobId) throws SchedulerException
2018-07-09 08:44:52 +08:00
{
2019-03-13 19:45:12 +08:00
scheduler.deleteJob(getJobKey(jobId));
2018-07-09 08:44:52 +08:00
}
2018-07-20 17:21:43 +08:00
2018-10-07 14:16:47 +08:00
public static CronScheduleBuilder handleCronScheduleMisfirePolicy(SysJob job, CronScheduleBuilder cb)
2018-07-20 17:21:43 +08:00
throws TaskException
{
switch (job.getMisfirePolicy())
{
case ScheduleConstants.MISFIRE_DEFAULT:
return cb;
case ScheduleConstants.MISFIRE_IGNORE_MISFIRES:
return cb.withMisfireHandlingInstructionIgnoreMisfires();
case ScheduleConstants.MISFIRE_FIRE_AND_PROCEED:
return cb.withMisfireHandlingInstructionFireAndProceed();
case ScheduleConstants.MISFIRE_DO_NOTHING:
return cb.withMisfireHandlingInstructionDoNothing();
default:
2019-03-13 19:45:12 +08:00
throw new TaskException("The task misfire policy '" + job.getMisfirePolicy()
+ "' cannot be used in cron schedule tasks", Code.CONFIG_ERROR);
2018-07-20 17:21:43 +08:00
}
}
2018-07-09 08:44:52 +08:00
}