| | |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import javax.annotation.Resource; |
| | | import jakarta.annotation.Resource; |
| | | import java.text.MessageFormat; |
| | | import java.util.*; |
| | | |
| | | /** |
| | | * core job action for xxl-job |
| | | * |
| | | * @author xuxueli 2016-5-28 15:30:33 |
| | | */ |
| | | @Service |
| | | public class XxlJobServiceImpl implements XxlJobService { |
| | | private static Logger logger = LoggerFactory.getLogger(XxlJobServiceImpl.class); |
| | | private static Logger logger = LoggerFactory.getLogger(XxlJobServiceImpl.class); |
| | | |
| | | @Resource |
| | | private XxlJobGroupDao xxlJobGroupDao; |
| | | @Resource |
| | | private XxlJobInfoDao xxlJobInfoDao; |
| | | @Resource |
| | | public XxlJobLogDao xxlJobLogDao; |
| | | @Resource |
| | | private XxlJobLogGlueDao xxlJobLogGlueDao; |
| | | @Resource |
| | | private XxlJobLogReportDao xxlJobLogReportDao; |
| | | |
| | | @Override |
| | | public Map<String, Object> pageList(int start, int length, int jobGroup, int triggerStatus, String jobDesc, String executorHandler, String author) { |
| | | @Resource |
| | | private XxlJobGroupDao xxlJobGroupDao; |
| | | @Resource |
| | | private XxlJobInfoDao xxlJobInfoDao; |
| | | @Resource |
| | | public XxlJobLogDao xxlJobLogDao; |
| | | @Resource |
| | | private XxlJobLogGlueDao xxlJobLogGlueDao; |
| | | @Resource |
| | | private XxlJobLogReportDao xxlJobLogReportDao; |
| | | |
| | | // page list |
| | | List<XxlJobInfo> list = xxlJobInfoDao.pageList(start, length, jobGroup, triggerStatus, jobDesc, executorHandler, author); |
| | | int list_count = xxlJobInfoDao.pageListCount(start, length, jobGroup, triggerStatus, jobDesc, executorHandler, author); |
| | | |
| | | // package result |
| | | Map<String, Object> maps = new HashMap<String, Object>(); |
| | | maps.put("recordsTotal", list_count); // 总记录数 |
| | | maps.put("recordsFiltered", list_count); // 过滤后的总记录数 |
| | | maps.put("data", list); // 分页列表 |
| | | return maps; |
| | | } |
| | | @Override |
| | | public Map<String, Object> pageList(int start, int length, int jobGroup, int triggerStatus, String jobDesc, String executorHandler, String author) { |
| | | |
| | | @Override |
| | | public ReturnT<String> add(XxlJobInfo jobInfo) { |
| | | // page list |
| | | List<XxlJobInfo> list = xxlJobInfoDao.pageList(start, length, jobGroup, triggerStatus, jobDesc, executorHandler, author); |
| | | int list_count = xxlJobInfoDao.pageListCount(start, length, jobGroup, triggerStatus, jobDesc, executorHandler, author); |
| | | |
| | | // valid base |
| | | XxlJobGroup group = xxlJobGroupDao.load(jobInfo.getJobGroup()); |
| | | if (group == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_choose")+I18nUtil.getString("jobinfo_field_jobgroup")) ); |
| | | } |
| | | if (jobInfo.getJobDesc()==null || jobInfo.getJobDesc().trim().length()==0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input")+I18nUtil.getString("jobinfo_field_jobdesc")) ); |
| | | } |
| | | if (jobInfo.getAuthor()==null || jobInfo.getAuthor().trim().length()==0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input")+I18nUtil.getString("jobinfo_field_author")) ); |
| | | } |
| | | // package result |
| | | Map<String, Object> maps = new HashMap<String, Object>(); |
| | | maps.put("recordsTotal", list_count); // 总记录数 |
| | | maps.put("recordsFiltered", list_count); // 过滤后的总记录数 |
| | | maps.put("data", list); // 分页列表 |
| | | return maps; |
| | | } |
| | | |
| | | // valid trigger |
| | | ScheduleTypeEnum scheduleTypeEnum = ScheduleTypeEnum.match(jobInfo.getScheduleType(), null); |
| | | if (scheduleTypeEnum == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | if (scheduleTypeEnum == ScheduleTypeEnum.CRON) { |
| | | if (jobInfo.getScheduleConf()==null || !CronExpression.isValidExpression(jobInfo.getScheduleConf())) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, "Cron"+I18nUtil.getString("system_unvalid")); |
| | | } |
| | | } else if (scheduleTypeEnum == ScheduleTypeEnum.FIX_RATE/* || scheduleTypeEnum == ScheduleTypeEnum.FIX_DELAY*/) { |
| | | if (jobInfo.getScheduleConf() == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")) ); |
| | | } |
| | | try { |
| | | int fixSecond = Integer.valueOf(jobInfo.getScheduleConf()); |
| | | if (fixSecond < 1) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | } catch (Exception e) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | } |
| | | @Override |
| | | public ReturnT<String> add(XxlJobInfo jobInfo) { |
| | | |
| | | // valid job |
| | | if (GlueTypeEnum.match(jobInfo.getGlueType()) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_gluetype")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | if (GlueTypeEnum.BEAN==GlueTypeEnum.match(jobInfo.getGlueType()) && (jobInfo.getExecutorHandler()==null || jobInfo.getExecutorHandler().trim().length()==0) ) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input")+"JobHandler") ); |
| | | } |
| | | // 》fix "\r" in shell |
| | | if (GlueTypeEnum.GLUE_SHELL==GlueTypeEnum.match(jobInfo.getGlueType()) && jobInfo.getGlueSource()!=null) { |
| | | jobInfo.setGlueSource(jobInfo.getGlueSource().replaceAll("\r", "")); |
| | | } |
| | | // valid base |
| | | XxlJobGroup group = xxlJobGroupDao.load(jobInfo.getJobGroup()); |
| | | if (group == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_choose") + I18nUtil.getString("jobinfo_field_jobgroup"))); |
| | | } |
| | | if (jobInfo.getJobDesc() == null || jobInfo.getJobDesc().trim().length() == 0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_jobdesc"))); |
| | | } |
| | | if (jobInfo.getAuthor() == null || jobInfo.getAuthor().trim().length() == 0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_author"))); |
| | | } |
| | | |
| | | // valid advanced |
| | | if (ExecutorRouteStrategyEnum.match(jobInfo.getExecutorRouteStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorRouteStrategy")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | if (MisfireStrategyEnum.match(jobInfo.getMisfireStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("misfire_strategy")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | if (ExecutorBlockStrategyEnum.match(jobInfo.getExecutorBlockStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorBlockStrategy")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | // valid trigger |
| | | ScheduleTypeEnum scheduleTypeEnum = ScheduleTypeEnum.match(jobInfo.getScheduleType(), null); |
| | | if (scheduleTypeEnum == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | if (scheduleTypeEnum == ScheduleTypeEnum.CRON) { |
| | | if (jobInfo.getScheduleConf() == null || !CronExpression.isValidExpression(jobInfo.getScheduleConf())) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, "Cron" + I18nUtil.getString("system_unvalid")); |
| | | } |
| | | } else if (scheduleTypeEnum == ScheduleTypeEnum.FIX_RATE/* || scheduleTypeEnum == ScheduleTypeEnum.FIX_DELAY*/) { |
| | | if (jobInfo.getScheduleConf() == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type"))); |
| | | } |
| | | try { |
| | | int fixSecond = Integer.valueOf(jobInfo.getScheduleConf()); |
| | | if (fixSecond < 1) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | } catch (Exception e) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | } |
| | | |
| | | // 》ChildJobId valid |
| | | if (jobInfo.getChildJobId()!=null && jobInfo.getChildJobId().trim().length()>0) { |
| | | String[] childJobIds = jobInfo.getChildJobId().split(","); |
| | | for (String childJobIdItem: childJobIds) { |
| | | if (childJobIdItem!=null && childJobIdItem.trim().length()>0 && isNumeric(childJobIdItem)) { |
| | | XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem)); |
| | | if (childJobInfo==null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_not_found")), childJobIdItem)); |
| | | } |
| | | } else { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_unvalid")), childJobIdItem)); |
| | | } |
| | | } |
| | | // valid job |
| | | if (GlueTypeEnum.match(jobInfo.getGlueType()) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_gluetype") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | if (GlueTypeEnum.BEAN == GlueTypeEnum.match(jobInfo.getGlueType()) && (jobInfo.getExecutorHandler() == null || jobInfo.getExecutorHandler().trim().length() == 0)) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + "JobHandler")); |
| | | } |
| | | // 》fix "\r" in shell |
| | | if (GlueTypeEnum.GLUE_SHELL == GlueTypeEnum.match(jobInfo.getGlueType()) && jobInfo.getGlueSource() != null) { |
| | | jobInfo.setGlueSource(jobInfo.getGlueSource().replaceAll("\r", "")); |
| | | } |
| | | |
| | | // join , avoid "xxx,," |
| | | String temp = ""; |
| | | for (String item:childJobIds) { |
| | | temp += item + ","; |
| | | } |
| | | temp = temp.substring(0, temp.length()-1); |
| | | // valid advanced |
| | | if (ExecutorRouteStrategyEnum.match(jobInfo.getExecutorRouteStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorRouteStrategy") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | if (MisfireStrategyEnum.match(jobInfo.getMisfireStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("misfire_strategy") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | if (ExecutorBlockStrategyEnum.match(jobInfo.getExecutorBlockStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorBlockStrategy") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | |
| | | jobInfo.setChildJobId(temp); |
| | | } |
| | | // 》ChildJobId valid |
| | | if (jobInfo.getChildJobId() != null && jobInfo.getChildJobId().trim().length() > 0) { |
| | | String[] childJobIds = jobInfo.getChildJobId().split(","); |
| | | for (String childJobIdItem : childJobIds) { |
| | | if (childJobIdItem != null && childJobIdItem.trim().length() > 0 && isNumeric(childJobIdItem)) { |
| | | XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem)); |
| | | if (childJobInfo == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId") + "({0})" + I18nUtil.getString("system_not_found")), childJobIdItem)); |
| | | } |
| | | } else { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId") + "({0})" + I18nUtil.getString("system_unvalid")), childJobIdItem)); |
| | | } |
| | | } |
| | | |
| | | // add in db |
| | | jobInfo.setAddTime(new Date()); |
| | | jobInfo.setUpdateTime(new Date()); |
| | | jobInfo.setGlueUpdatetime(new Date()); |
| | | xxlJobInfoDao.save(jobInfo); |
| | | if (jobInfo.getId() < 1) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_add")+I18nUtil.getString("system_fail")) ); |
| | | } |
| | | // join , avoid "xxx,," |
| | | String temp = ""; |
| | | for (String item : childJobIds) { |
| | | temp += item + ","; |
| | | } |
| | | temp = temp.substring(0, temp.length() - 1); |
| | | |
| | | return new ReturnT<String>(String.valueOf(jobInfo.getId())); |
| | | } |
| | | jobInfo.setChildJobId(temp); |
| | | } |
| | | |
| | | private boolean isNumeric(String str){ |
| | | try { |
| | | int result = Integer.valueOf(str); |
| | | return true; |
| | | } catch (NumberFormatException e) { |
| | | return false; |
| | | } |
| | | } |
| | | // add in db |
| | | jobInfo.setAddTime(new Date()); |
| | | jobInfo.setUpdateTime(new Date()); |
| | | jobInfo.setGlueUpdatetime(new Date()); |
| | | xxlJobInfoDao.save(jobInfo); |
| | | if (jobInfo.getId() < 1) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_add") + I18nUtil.getString("system_fail"))); |
| | | } |
| | | |
| | | @Override |
| | | public ReturnT<String> update(XxlJobInfo jobInfo) { |
| | | return new ReturnT<String>(String.valueOf(jobInfo.getId())); |
| | | } |
| | | |
| | | // valid base |
| | | if (jobInfo.getJobDesc()==null || jobInfo.getJobDesc().trim().length()==0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input")+I18nUtil.getString("jobinfo_field_jobdesc")) ); |
| | | } |
| | | if (jobInfo.getAuthor()==null || jobInfo.getAuthor().trim().length()==0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input")+I18nUtil.getString("jobinfo_field_author")) ); |
| | | } |
| | | private boolean isNumeric(String str) { |
| | | try { |
| | | int result = Integer.valueOf(str); |
| | | return true; |
| | | } catch (NumberFormatException e) { |
| | | return false; |
| | | } |
| | | } |
| | | |
| | | // valid trigger |
| | | ScheduleTypeEnum scheduleTypeEnum = ScheduleTypeEnum.match(jobInfo.getScheduleType(), null); |
| | | if (scheduleTypeEnum == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | if (scheduleTypeEnum == ScheduleTypeEnum.CRON) { |
| | | if (jobInfo.getScheduleConf()==null || !CronExpression.isValidExpression(jobInfo.getScheduleConf())) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, "Cron"+I18nUtil.getString("system_unvalid") ); |
| | | } |
| | | } else if (scheduleTypeEnum == ScheduleTypeEnum.FIX_RATE /*|| scheduleTypeEnum == ScheduleTypeEnum.FIX_DELAY*/) { |
| | | if (jobInfo.getScheduleConf() == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | try { |
| | | int fixSecond = Integer.valueOf(jobInfo.getScheduleConf()); |
| | | if (fixSecond < 1) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | } catch (Exception e) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | } |
| | | @Override |
| | | public ReturnT<String> update(XxlJobInfo jobInfo) { |
| | | |
| | | // valid advanced |
| | | if (ExecutorRouteStrategyEnum.match(jobInfo.getExecutorRouteStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorRouteStrategy")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | if (MisfireStrategyEnum.match(jobInfo.getMisfireStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("misfire_strategy")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | if (ExecutorBlockStrategyEnum.match(jobInfo.getExecutorBlockStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorBlockStrategy")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | // valid base |
| | | if (jobInfo.getJobDesc() == null || jobInfo.getJobDesc().trim().length() == 0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_jobdesc"))); |
| | | } |
| | | if (jobInfo.getAuthor() == null || jobInfo.getAuthor().trim().length() == 0) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_author"))); |
| | | } |
| | | |
| | | // 》ChildJobId valid |
| | | if (jobInfo.getChildJobId()!=null && jobInfo.getChildJobId().trim().length()>0) { |
| | | String[] childJobIds = jobInfo.getChildJobId().split(","); |
| | | for (String childJobIdItem: childJobIds) { |
| | | if (childJobIdItem!=null && childJobIdItem.trim().length()>0 && isNumeric(childJobIdItem)) { |
| | | XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem)); |
| | | if (childJobInfo==null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_not_found")), childJobIdItem)); |
| | | } |
| | | } else { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId")+"({0})"+I18nUtil.getString("system_unvalid")), childJobIdItem)); |
| | | } |
| | | } |
| | | // valid trigger |
| | | ScheduleTypeEnum scheduleTypeEnum = ScheduleTypeEnum.match(jobInfo.getScheduleType(), null); |
| | | if (scheduleTypeEnum == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | if (scheduleTypeEnum == ScheduleTypeEnum.CRON) { |
| | | if (jobInfo.getScheduleConf() == null || !CronExpression.isValidExpression(jobInfo.getScheduleConf())) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, "Cron" + I18nUtil.getString("system_unvalid")); |
| | | } |
| | | } else if (scheduleTypeEnum == ScheduleTypeEnum.FIX_RATE /*|| scheduleTypeEnum == ScheduleTypeEnum.FIX_DELAY*/) { |
| | | if (jobInfo.getScheduleConf() == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | try { |
| | | int fixSecond = Integer.valueOf(jobInfo.getScheduleConf()); |
| | | if (fixSecond < 1) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | } catch (Exception e) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | } |
| | | |
| | | // join , avoid "xxx,," |
| | | String temp = ""; |
| | | for (String item:childJobIds) { |
| | | temp += item + ","; |
| | | } |
| | | temp = temp.substring(0, temp.length()-1); |
| | | // valid advanced |
| | | if (ExecutorRouteStrategyEnum.match(jobInfo.getExecutorRouteStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorRouteStrategy") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | if (MisfireStrategyEnum.match(jobInfo.getMisfireStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("misfire_strategy") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | if (ExecutorBlockStrategyEnum.match(jobInfo.getExecutorBlockStrategy(), null) == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorBlockStrategy") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | |
| | | jobInfo.setChildJobId(temp); |
| | | } |
| | | // 》ChildJobId valid |
| | | if (jobInfo.getChildJobId() != null && jobInfo.getChildJobId().trim().length() > 0) { |
| | | String[] childJobIds = jobInfo.getChildJobId().split(","); |
| | | for (String childJobIdItem : childJobIds) { |
| | | if (childJobIdItem != null && childJobIdItem.trim().length() > 0 && isNumeric(childJobIdItem)) { |
| | | XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.parseInt(childJobIdItem)); |
| | | if (childJobInfo == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId") + "({0})" + I18nUtil.getString("system_not_found")), childJobIdItem)); |
| | | } |
| | | } else { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, |
| | | MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId") + "({0})" + I18nUtil.getString("system_unvalid")), childJobIdItem)); |
| | | } |
| | | } |
| | | |
| | | // group valid |
| | | XxlJobGroup jobGroup = xxlJobGroupDao.load(jobInfo.getJobGroup()); |
| | | if (jobGroup == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_jobgroup")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | // join , avoid "xxx,," |
| | | String temp = ""; |
| | | for (String item : childJobIds) { |
| | | temp += item + ","; |
| | | } |
| | | temp = temp.substring(0, temp.length() - 1); |
| | | |
| | | // stage job info |
| | | XxlJobInfo exists_jobInfo = xxlJobInfoDao.loadById(jobInfo.getId()); |
| | | if (exists_jobInfo == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_id")+I18nUtil.getString("system_not_found")) ); |
| | | } |
| | | jobInfo.setChildJobId(temp); |
| | | } |
| | | |
| | | // next trigger time (5s后生效,避开预读周期) |
| | | long nextTriggerTime = exists_jobInfo.getTriggerNextTime(); |
| | | boolean scheduleDataNotChanged = jobInfo.getScheduleType().equals(exists_jobInfo.getScheduleType()) && jobInfo.getScheduleConf().equals(exists_jobInfo.getScheduleConf()); |
| | | if (exists_jobInfo.getTriggerStatus() == 1 && !scheduleDataNotChanged) { |
| | | try { |
| | | Date nextValidTime = JobScheduleHelper.generateNextValidTime(jobInfo, new Date(System.currentTimeMillis() + JobScheduleHelper.PRE_READ_MS)); |
| | | if (nextValidTime == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | nextTriggerTime = nextValidTime.getTime(); |
| | | } catch (Exception e) { |
| | | logger.error(e.getMessage(), e); |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | } |
| | | // group valid |
| | | XxlJobGroup jobGroup = xxlJobGroupDao.load(jobInfo.getJobGroup()); |
| | | if (jobGroup == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_jobgroup") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | |
| | | exists_jobInfo.setJobGroup(jobInfo.getJobGroup()); |
| | | exists_jobInfo.setJobDesc(jobInfo.getJobDesc()); |
| | | exists_jobInfo.setAuthor(jobInfo.getAuthor()); |
| | | exists_jobInfo.setAlarmEmail(jobInfo.getAlarmEmail()); |
| | | exists_jobInfo.setScheduleType(jobInfo.getScheduleType()); |
| | | exists_jobInfo.setScheduleConf(jobInfo.getScheduleConf()); |
| | | exists_jobInfo.setMisfireStrategy(jobInfo.getMisfireStrategy()); |
| | | exists_jobInfo.setExecutorRouteStrategy(jobInfo.getExecutorRouteStrategy()); |
| | | exists_jobInfo.setExecutorHandler(jobInfo.getExecutorHandler()); |
| | | exists_jobInfo.setExecutorParam(jobInfo.getExecutorParam()); |
| | | exists_jobInfo.setExecutorBlockStrategy(jobInfo.getExecutorBlockStrategy()); |
| | | exists_jobInfo.setExecutorTimeout(jobInfo.getExecutorTimeout()); |
| | | exists_jobInfo.setExecutorFailRetryCount(jobInfo.getExecutorFailRetryCount()); |
| | | exists_jobInfo.setChildJobId(jobInfo.getChildJobId()); |
| | | exists_jobInfo.setTriggerNextTime(nextTriggerTime); |
| | | // stage job info |
| | | XxlJobInfo exists_jobInfo = xxlJobInfoDao.loadById(jobInfo.getId()); |
| | | if (exists_jobInfo == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_id") + I18nUtil.getString("system_not_found"))); |
| | | } |
| | | |
| | | exists_jobInfo.setUpdateTime(new Date()); |
| | | // next trigger time (5s后生效,避开预读周期) |
| | | long nextTriggerTime = exists_jobInfo.getTriggerNextTime(); |
| | | boolean scheduleDataNotChanged = jobInfo.getScheduleType().equals(exists_jobInfo.getScheduleType()) && jobInfo.getScheduleConf().equals(exists_jobInfo.getScheduleConf()); |
| | | if (exists_jobInfo.getTriggerStatus() == 1 && !scheduleDataNotChanged) { |
| | | try { |
| | | Date nextValidTime = JobScheduleHelper.generateNextValidTime(jobInfo, new Date(System.currentTimeMillis() + JobScheduleHelper.PRE_READ_MS)); |
| | | if (nextValidTime == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | nextTriggerTime = nextValidTime.getTime(); |
| | | } catch (Exception e) { |
| | | logger.error(e.getMessage(), e); |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | } |
| | | |
| | | exists_jobInfo.setJobGroup(jobInfo.getJobGroup()); |
| | | exists_jobInfo.setJobDesc(jobInfo.getJobDesc()); |
| | | exists_jobInfo.setAuthor(jobInfo.getAuthor()); |
| | | exists_jobInfo.setAlarmEmail(jobInfo.getAlarmEmail()); |
| | | exists_jobInfo.setScheduleType(jobInfo.getScheduleType()); |
| | | exists_jobInfo.setScheduleConf(jobInfo.getScheduleConf()); |
| | | exists_jobInfo.setMisfireStrategy(jobInfo.getMisfireStrategy()); |
| | | exists_jobInfo.setExecutorRouteStrategy(jobInfo.getExecutorRouteStrategy()); |
| | | exists_jobInfo.setExecutorHandler(jobInfo.getExecutorHandler()); |
| | | exists_jobInfo.setExecutorParam(jobInfo.getExecutorParam()); |
| | | exists_jobInfo.setExecutorBlockStrategy(jobInfo.getExecutorBlockStrategy()); |
| | | exists_jobInfo.setExecutorTimeout(jobInfo.getExecutorTimeout()); |
| | | exists_jobInfo.setExecutorFailRetryCount(jobInfo.getExecutorFailRetryCount()); |
| | | exists_jobInfo.setChildJobId(jobInfo.getChildJobId()); |
| | | exists_jobInfo.setTriggerNextTime(nextTriggerTime); |
| | | |
| | | exists_jobInfo.setUpdateTime(new Date()); |
| | | xxlJobInfoDao.update(exists_jobInfo); |
| | | |
| | | |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | |
| | | @Override |
| | | public ReturnT<String> remove(int id) { |
| | | XxlJobInfo xxlJobInfo = xxlJobInfoDao.loadById(id); |
| | | if (xxlJobInfo == null) { |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | @Override |
| | | public ReturnT<String> remove(int id) { |
| | | XxlJobInfo xxlJobInfo = xxlJobInfoDao.loadById(id); |
| | | if (xxlJobInfo == null) { |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | |
| | | xxlJobInfoDao.delete(id); |
| | | xxlJobLogDao.delete(id); |
| | | xxlJobLogGlueDao.deleteByJobId(id); |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | xxlJobInfoDao.delete(id); |
| | | xxlJobLogDao.delete(id); |
| | | xxlJobLogGlueDao.deleteByJobId(id); |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | |
| | | @Override |
| | | public ReturnT<String> start(int id) { |
| | | XxlJobInfo xxlJobInfo = xxlJobInfoDao.loadById(id); |
| | | |
| | | // valid |
| | | ScheduleTypeEnum scheduleTypeEnum = ScheduleTypeEnum.match(xxlJobInfo.getScheduleType(), ScheduleTypeEnum.NONE); |
| | | if (ScheduleTypeEnum.NONE == scheduleTypeEnum) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type_none_limit_start")) ); |
| | | } |
| | | |
| | | // next trigger time (5s后生效,避开预读周期) |
| | | long nextTriggerTime = 0; |
| | | try { |
| | | Date nextValidTime = JobScheduleHelper.generateNextValidTime(xxlJobInfo, new Date(System.currentTimeMillis() + JobScheduleHelper.PRE_READ_MS)); |
| | | if (nextValidTime == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | nextTriggerTime = nextValidTime.getTime(); |
| | | } catch (Exception e) { |
| | | logger.error(e.getMessage(), e); |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type")+I18nUtil.getString("system_unvalid")) ); |
| | | } |
| | | |
| | | xxlJobInfo.setTriggerStatus(1); |
| | | xxlJobInfo.setTriggerLastTime(0); |
| | | xxlJobInfo.setTriggerNextTime(nextTriggerTime); |
| | | |
| | | xxlJobInfo.setUpdateTime(new Date()); |
| | | xxlJobInfoDao.update(xxlJobInfo); |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | |
| | | @Override |
| | | public ReturnT<String> stop(int id) { |
| | | @Override |
| | | public ReturnT<String> start(int id) { |
| | | XxlJobInfo xxlJobInfo = xxlJobInfoDao.loadById(id); |
| | | |
| | | xxlJobInfo.setTriggerStatus(0); |
| | | xxlJobInfo.setTriggerLastTime(0); |
| | | xxlJobInfo.setTriggerNextTime(0); |
| | | // valid |
| | | ScheduleTypeEnum scheduleTypeEnum = ScheduleTypeEnum.match(xxlJobInfo.getScheduleType(), ScheduleTypeEnum.NONE); |
| | | if (ScheduleTypeEnum.NONE == scheduleTypeEnum) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type_none_limit_start"))); |
| | | } |
| | | |
| | | xxlJobInfo.setUpdateTime(new Date()); |
| | | xxlJobInfoDao.update(xxlJobInfo); |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | // next trigger time (5s后生效,避开预读周期) |
| | | long nextTriggerTime = 0; |
| | | try { |
| | | Date nextValidTime = JobScheduleHelper.generateNextValidTime(xxlJobInfo, new Date(System.currentTimeMillis() + JobScheduleHelper.PRE_READ_MS)); |
| | | if (nextValidTime == null) { |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | nextTriggerTime = nextValidTime.getTime(); |
| | | } catch (Exception e) { |
| | | logger.error(e.getMessage(), e); |
| | | return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("schedule_type") + I18nUtil.getString("system_unvalid"))); |
| | | } |
| | | |
| | | @Override |
| | | public Map<String, Object> dashboardInfo() { |
| | | xxlJobInfo.setTriggerStatus(1); |
| | | xxlJobInfo.setTriggerLastTime(0); |
| | | xxlJobInfo.setTriggerNextTime(nextTriggerTime); |
| | | |
| | | int jobInfoCount = xxlJobInfoDao.findAllCount(); |
| | | int jobLogCount = 0; |
| | | int jobLogSuccessCount = 0; |
| | | XxlJobLogReport xxlJobLogReport = xxlJobLogReportDao.queryLogReportTotal(); |
| | | if (xxlJobLogReport != null) { |
| | | jobLogCount = xxlJobLogReport.getRunningCount() + xxlJobLogReport.getSucCount() + xxlJobLogReport.getFailCount(); |
| | | jobLogSuccessCount = xxlJobLogReport.getSucCount(); |
| | | } |
| | | xxlJobInfo.setUpdateTime(new Date()); |
| | | xxlJobInfoDao.update(xxlJobInfo); |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | |
| | | // executor count |
| | | Set<String> executorAddressSet = new HashSet<String>(); |
| | | List<XxlJobGroup> groupList = xxlJobGroupDao.findAll(); |
| | | @Override |
| | | public ReturnT<String> stop(int id) { |
| | | XxlJobInfo xxlJobInfo = xxlJobInfoDao.loadById(id); |
| | | |
| | | if (groupList!=null && !groupList.isEmpty()) { |
| | | for (XxlJobGroup group: groupList) { |
| | | if (group.getRegistryList()!=null && !group.getRegistryList().isEmpty()) { |
| | | executorAddressSet.addAll(group.getRegistryList()); |
| | | } |
| | | } |
| | | } |
| | | xxlJobInfo.setTriggerStatus(0); |
| | | xxlJobInfo.setTriggerLastTime(0); |
| | | xxlJobInfo.setTriggerNextTime(0); |
| | | |
| | | int executorCount = executorAddressSet.size(); |
| | | xxlJobInfo.setUpdateTime(new Date()); |
| | | xxlJobInfoDao.update(xxlJobInfo); |
| | | return ReturnT.SUCCESS; |
| | | } |
| | | |
| | | Map<String, Object> dashboardMap = new HashMap<String, Object>(); |
| | | dashboardMap.put("jobInfoCount", jobInfoCount); |
| | | dashboardMap.put("jobLogCount", jobLogCount); |
| | | dashboardMap.put("jobLogSuccessCount", jobLogSuccessCount); |
| | | dashboardMap.put("executorCount", executorCount); |
| | | return dashboardMap; |
| | | } |
| | | @Override |
| | | public Map<String, Object> dashboardInfo() { |
| | | |
| | | @Override |
| | | public ReturnT<Map<String, Object>> chartInfo(Date startDate, Date endDate) { |
| | | int jobInfoCount = xxlJobInfoDao.findAllCount(); |
| | | int jobLogCount = 0; |
| | | int jobLogSuccessCount = 0; |
| | | XxlJobLogReport xxlJobLogReport = xxlJobLogReportDao.queryLogReportTotal(); |
| | | if (xxlJobLogReport != null) { |
| | | jobLogCount = xxlJobLogReport.getRunningCount() + xxlJobLogReport.getSucCount() + xxlJobLogReport.getFailCount(); |
| | | jobLogSuccessCount = xxlJobLogReport.getSucCount(); |
| | | } |
| | | |
| | | // process |
| | | List<String> triggerDayList = new ArrayList<String>(); |
| | | List<Integer> triggerDayCountRunningList = new ArrayList<Integer>(); |
| | | List<Integer> triggerDayCountSucList = new ArrayList<Integer>(); |
| | | List<Integer> triggerDayCountFailList = new ArrayList<Integer>(); |
| | | int triggerCountRunningTotal = 0; |
| | | int triggerCountSucTotal = 0; |
| | | int triggerCountFailTotal = 0; |
| | | // executor count |
| | | Set<String> executorAddressSet = new HashSet<String>(); |
| | | List<XxlJobGroup> groupList = xxlJobGroupDao.findAll(); |
| | | |
| | | List<XxlJobLogReport> logReportList = xxlJobLogReportDao.queryLogReport(startDate, endDate); |
| | | if (groupList != null && !groupList.isEmpty()) { |
| | | for (XxlJobGroup group : groupList) { |
| | | if (group.getRegistryList() != null && !group.getRegistryList().isEmpty()) { |
| | | executorAddressSet.addAll(group.getRegistryList()); |
| | | } |
| | | } |
| | | } |
| | | |
| | | if (logReportList!=null && logReportList.size()>0) { |
| | | for (XxlJobLogReport item: logReportList) { |
| | | String day = DateUtil.formatDate(item.getTriggerDay()); |
| | | int triggerDayCountRunning = item.getRunningCount(); |
| | | int triggerDayCountSuc = item.getSucCount(); |
| | | int triggerDayCountFail = item.getFailCount(); |
| | | int executorCount = executorAddressSet.size(); |
| | | |
| | | triggerDayList.add(day); |
| | | triggerDayCountRunningList.add(triggerDayCountRunning); |
| | | triggerDayCountSucList.add(triggerDayCountSuc); |
| | | triggerDayCountFailList.add(triggerDayCountFail); |
| | | Map<String, Object> dashboardMap = new HashMap<String, Object>(); |
| | | dashboardMap.put("jobInfoCount", jobInfoCount); |
| | | dashboardMap.put("jobLogCount", jobLogCount); |
| | | dashboardMap.put("jobLogSuccessCount", jobLogSuccessCount); |
| | | dashboardMap.put("executorCount", executorCount); |
| | | return dashboardMap; |
| | | } |
| | | |
| | | triggerCountRunningTotal += triggerDayCountRunning; |
| | | triggerCountSucTotal += triggerDayCountSuc; |
| | | triggerCountFailTotal += triggerDayCountFail; |
| | | } |
| | | } else { |
| | | for (int i = -6; i <= 0; i++) { |
| | | triggerDayList.add(DateUtil.formatDate(DateUtil.addDays(new Date(), i))); |
| | | triggerDayCountRunningList.add(0); |
| | | triggerDayCountSucList.add(0); |
| | | triggerDayCountFailList.add(0); |
| | | } |
| | | } |
| | | @Override |
| | | public ReturnT<Map<String, Object>> chartInfo(Date startDate, Date endDate) { |
| | | |
| | | Map<String, Object> result = new HashMap<String, Object>(); |
| | | result.put("triggerDayList", triggerDayList); |
| | | result.put("triggerDayCountRunningList", triggerDayCountRunningList); |
| | | result.put("triggerDayCountSucList", triggerDayCountSucList); |
| | | result.put("triggerDayCountFailList", triggerDayCountFailList); |
| | | // process |
| | | List<String> triggerDayList = new ArrayList<String>(); |
| | | List<Integer> triggerDayCountRunningList = new ArrayList<Integer>(); |
| | | List<Integer> triggerDayCountSucList = new ArrayList<Integer>(); |
| | | List<Integer> triggerDayCountFailList = new ArrayList<Integer>(); |
| | | int triggerCountRunningTotal = 0; |
| | | int triggerCountSucTotal = 0; |
| | | int triggerCountFailTotal = 0; |
| | | |
| | | result.put("triggerCountRunningTotal", triggerCountRunningTotal); |
| | | result.put("triggerCountSucTotal", triggerCountSucTotal); |
| | | result.put("triggerCountFailTotal", triggerCountFailTotal); |
| | | List<XxlJobLogReport> logReportList = xxlJobLogReportDao.queryLogReport(startDate, endDate); |
| | | |
| | | return new ReturnT<Map<String, Object>>(result); |
| | | } |
| | | if (logReportList != null && logReportList.size() > 0) { |
| | | for (XxlJobLogReport item : logReportList) { |
| | | String day = DateUtil.formatDate(item.getTriggerDay()); |
| | | int triggerDayCountRunning = item.getRunningCount(); |
| | | int triggerDayCountSuc = item.getSucCount(); |
| | | int triggerDayCountFail = item.getFailCount(); |
| | | |
| | | triggerDayList.add(day); |
| | | triggerDayCountRunningList.add(triggerDayCountRunning); |
| | | triggerDayCountSucList.add(triggerDayCountSuc); |
| | | triggerDayCountFailList.add(triggerDayCountFail); |
| | | |
| | | triggerCountRunningTotal += triggerDayCountRunning; |
| | | triggerCountSucTotal += triggerDayCountSuc; |
| | | triggerCountFailTotal += triggerDayCountFail; |
| | | } |
| | | } else { |
| | | for (int i = -6; i <= 0; i++) { |
| | | triggerDayList.add(DateUtil.formatDate(DateUtil.addDays(new Date(), i))); |
| | | triggerDayCountRunningList.add(0); |
| | | triggerDayCountSucList.add(0); |
| | | triggerDayCountFailList.add(0); |
| | | } |
| | | } |
| | | |
| | | Map<String, Object> result = new HashMap<String, Object>(); |
| | | result.put("triggerDayList", triggerDayList); |
| | | result.put("triggerDayCountRunningList", triggerDayCountRunningList); |
| | | result.put("triggerDayCountSucList", triggerDayCountSucList); |
| | | result.put("triggerDayCountFailList", triggerDayCountFailList); |
| | | |
| | | result.put("triggerCountRunningTotal", triggerCountRunningTotal); |
| | | result.put("triggerCountSucTotal", triggerCountSucTotal); |
| | | result.put("triggerCountFailTotal", triggerCountFailTotal); |
| | | |
| | | return new ReturnT<Map<String, Object>>(result); |
| | | } |
| | | |
| | | } |