Search in sources :

Example 11 with XxlJobInfo

use of com.xxl.job.admin.core.model.XxlJobInfo in project xxl-job by xuxueli.

the class XxlJobServiceImpl method pageList.

@Override
public Map<String, Object> pageList(int start, int length, int jobGroup, String jobDesc, String executorHandler, String filterTime) {
    // page list
    List<XxlJobInfo> list = xxlJobInfoDao.pageList(start, length, jobGroup, jobDesc, executorHandler);
    int list_count = xxlJobInfoDao.pageListCount(start, length, jobGroup, jobDesc, executorHandler);
    // fill job info
    if (list != null && list.size() > 0) {
        for (XxlJobInfo jobInfo : list) {
            XxlJobDynamicScheduler.fillJobInfo(jobInfo);
        }
    }
    // 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;
}
Also used : XxlJobInfo(com.xxl.job.admin.core.model.XxlJobInfo)

Example 12 with XxlJobInfo

use of com.xxl.job.admin.core.model.XxlJobInfo in project xxl-job by xuxueli.

the class XxlJobServiceImpl method remove.

@Override
public ReturnT<String> remove(int id) {
    XxlJobInfo xxlJobInfo = xxlJobInfoDao.loadById(id);
    String group = String.valueOf(xxlJobInfo.getJobGroup());
    String name = String.valueOf(xxlJobInfo.getId());
    try {
        XxlJobDynamicScheduler.removeJob(name, group);
        xxlJobInfoDao.delete(id);
        xxlJobLogDao.delete(id);
        xxlJobLogGlueDao.deleteByJobId(id);
        return ReturnT.SUCCESS;
    } catch (SchedulerException e) {
        logger.error(e.getMessage(), e);
    }
    return ReturnT.FAIL;
}
Also used : SchedulerException(org.quartz.SchedulerException) XxlJobInfo(com.xxl.job.admin.core.model.XxlJobInfo)

Example 13 with XxlJobInfo

use of com.xxl.job.admin.core.model.XxlJobInfo in project xxl-job by xuxueli.

the class XxlJobServiceImpl method add.

@Override
public ReturnT<String> add(XxlJobInfo jobInfo) {
    // valid
    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 (!CronExpression.isValidExpression(jobInfo.getJobCron())) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, I18nUtil.getString("jobinfo_field_cron_unvalid"));
    }
    if (StringUtils.isBlank(jobInfo.getJobDesc())) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_jobdesc")));
    }
    if (StringUtils.isBlank(jobInfo.getAuthor())) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_author")));
    }
    if (ExecutorRouteStrategyEnum.match(jobInfo.getExecutorRouteStrategy(), null) == null) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorRouteStrategy") + 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")));
    }
    if (ExecutorFailStrategyEnum.match(jobInfo.getExecutorFailStrategy(), null) == null) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorFailStrategy") + I18nUtil.getString("system_unvalid")));
    }
    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()) && StringUtils.isBlank(jobInfo.getExecutorHandler())) {
        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", ""));
    }
    // ChildJobId valid
    if (StringUtils.isNotBlank(jobInfo.getChildJobId())) {
        String[] childJobIds = StringUtils.split(jobInfo.getChildJobId(), ",");
        for (String childJobIdItem : childJobIds) {
            if (StringUtils.isNotBlank(childJobIdItem) && StringUtils.isNumeric(childJobIdItem)) {
                XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.valueOf(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));
            }
        }
        jobInfo.setChildJobId(StringUtils.join(childJobIds, ","));
    }
    // add in db
    xxlJobInfoDao.save(jobInfo);
    if (jobInfo.getId() < 1) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_add") + I18nUtil.getString("system_fail")));
    }
    // add in quartz
    String qz_group = String.valueOf(jobInfo.getJobGroup());
    String qz_name = String.valueOf(jobInfo.getId());
    try {
        XxlJobDynamicScheduler.addJob(qz_name, qz_group, jobInfo.getJobCron());
        // XxlJobDynamicScheduler.pauseJob(qz_name, qz_group);
        return ReturnT.SUCCESS;
    } catch (SchedulerException e) {
        logger.error(e.getMessage(), e);
        try {
            xxlJobInfoDao.delete(jobInfo.getId());
            XxlJobDynamicScheduler.removeJob(qz_name, qz_group);
        } catch (SchedulerException e1) {
            logger.error(e.getMessage(), e1);
        }
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_add") + I18nUtil.getString("system_fail")) + ":" + e.getMessage());
    }
}
Also used : XxlJobGroup(com.xxl.job.admin.core.model.XxlJobGroup) SchedulerException(org.quartz.SchedulerException) ReturnT(com.xxl.job.core.biz.model.ReturnT) XxlJobInfo(com.xxl.job.admin.core.model.XxlJobInfo)

Example 14 with XxlJobInfo

use of com.xxl.job.admin.core.model.XxlJobInfo in project xxl-job by xuxueli.

the class XxlJobServiceImpl method update.

@Override
public ReturnT<String> update(XxlJobInfo jobInfo) {
    // valid
    if (!CronExpression.isValidExpression(jobInfo.getJobCron())) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, I18nUtil.getString("jobinfo_field_cron_unvalid"));
    }
    if (StringUtils.isBlank(jobInfo.getJobDesc())) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_jobdesc")));
    }
    if (StringUtils.isBlank(jobInfo.getAuthor())) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("system_please_input") + I18nUtil.getString("jobinfo_field_author")));
    }
    if (ExecutorRouteStrategyEnum.match(jobInfo.getExecutorRouteStrategy(), null) == null) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorRouteStrategy") + 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")));
    }
    if (ExecutorFailStrategyEnum.match(jobInfo.getExecutorFailStrategy(), null) == null) {
        return new ReturnT<String>(ReturnT.FAIL_CODE, (I18nUtil.getString("jobinfo_field_executorFailStrategy") + I18nUtil.getString("system_unvalid")));
    }
    // ChildJobId valid
    if (StringUtils.isNotBlank(jobInfo.getChildJobId())) {
        String[] childJobIds = StringUtils.split(jobInfo.getChildJobId(), ",");
        for (String childJobIdItem : childJobIds) {
            if (StringUtils.isNotBlank(childJobIdItem) && StringUtils.isNumeric(childJobIdItem)) {
                XxlJobInfo childJobInfo = xxlJobInfoDao.loadById(Integer.valueOf(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));
                }
                // avoid cycle relate
                if (childJobInfo.getId() == jobInfo.getId()) {
                    return new ReturnT<String>(ReturnT.FAIL_CODE, MessageFormat.format(I18nUtil.getString("jobinfo_field_childJobId_limit"), childJobIdItem));
                }
            } else {
                return new ReturnT<String>(ReturnT.FAIL_CODE, MessageFormat.format((I18nUtil.getString("jobinfo_field_childJobId") + "({0})" + I18nUtil.getString("system_unvalid")), childJobIdItem));
            }
        }
        jobInfo.setChildJobId(StringUtils.join(childJobIds, ","));
    }
    // 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")));
    }
    // String old_cron = exists_jobInfo.getJobCron();
    exists_jobInfo.setJobCron(jobInfo.getJobCron());
    exists_jobInfo.setJobDesc(jobInfo.getJobDesc());
    exists_jobInfo.setAuthor(jobInfo.getAuthor());
    exists_jobInfo.setAlarmEmail(jobInfo.getAlarmEmail());
    exists_jobInfo.setExecutorRouteStrategy(jobInfo.getExecutorRouteStrategy());
    exists_jobInfo.setExecutorHandler(jobInfo.getExecutorHandler());
    exists_jobInfo.setExecutorParam(jobInfo.getExecutorParam());
    exists_jobInfo.setExecutorBlockStrategy(jobInfo.getExecutorBlockStrategy());
    exists_jobInfo.setExecutorFailStrategy(jobInfo.getExecutorFailStrategy());
    exists_jobInfo.setChildJobId(jobInfo.getChildJobId());
    xxlJobInfoDao.update(exists_jobInfo);
    // fresh quartz
    String qz_group = String.valueOf(exists_jobInfo.getJobGroup());
    String qz_name = String.valueOf(exists_jobInfo.getId());
    try {
        boolean ret = XxlJobDynamicScheduler.rescheduleJob(qz_group, qz_name, exists_jobInfo.getJobCron());
        return ret ? ReturnT.SUCCESS : ReturnT.FAIL;
    } catch (SchedulerException e) {
        logger.error(e.getMessage(), e);
    }
    return ReturnT.FAIL;
}
Also used : SchedulerException(org.quartz.SchedulerException) ReturnT(com.xxl.job.core.biz.model.ReturnT) XxlJobInfo(com.xxl.job.admin.core.model.XxlJobInfo)

Example 15 with XxlJobInfo

use of com.xxl.job.admin.core.model.XxlJobInfo in project xxl-job by xuxueli.

the class JobCodeController method index.

@RequestMapping
public String index(Model model, int jobId) {
    XxlJobInfo jobInfo = xxlJobInfoDao.loadById(jobId);
    List<XxlJobLogGlue> jobLogGlues = xxlJobLogGlueDao.findByJobId(jobId);
    if (jobInfo == null) {
        throw new RuntimeException(I18nUtil.getString("jobinfo_glue_jobid_unvalid"));
    }
    if (GlueTypeEnum.BEAN == GlueTypeEnum.match(jobInfo.getGlueType())) {
        throw new RuntimeException(I18nUtil.getString("jobinfo_glue_gluetype_unvalid"));
    }
    // Glue类型-字典
    model.addAttribute("GlueTypeEnum", GlueTypeEnum.values());
    model.addAttribute("jobInfo", jobInfo);
    model.addAttribute("jobLogGlues", jobLogGlues);
    return "jobcode/jobcode.index";
}
Also used : XxlJobLogGlue(com.xxl.job.admin.core.model.XxlJobLogGlue) XxlJobInfo(com.xxl.job.admin.core.model.XxlJobInfo) RequestMapping(org.springframework.web.bind.annotation.RequestMapping)

Aggregations

XxlJobInfo (com.xxl.job.admin.core.model.XxlJobInfo)15 ReturnT (com.xxl.job.core.biz.model.ReturnT)7 SchedulerException (org.quartz.SchedulerException)6 Date (java.util.Date)5 XxlJobGroup (com.xxl.job.admin.core.model.XxlJobGroup)4 RequestMapping (org.springframework.web.bind.annotation.RequestMapping)4 XxlJobLog (com.xxl.job.admin.core.model.XxlJobLog)3 XxlJobLogGlue (com.xxl.job.admin.core.model.XxlJobLogGlue)2 ResponseBody (org.springframework.web.bind.annotation.ResponseBody)2 ExecutorFailStrategyEnum (com.xxl.job.admin.core.enums.ExecutorFailStrategyEnum)1 ExecutorRouteStrategyEnum (com.xxl.job.admin.core.route.ExecutorRouteStrategyEnum)1 ExecutorBiz (com.xxl.job.core.biz.ExecutorBiz)1 TriggerParam (com.xxl.job.core.biz.model.TriggerParam)1 ExecutorBlockStrategyEnum (com.xxl.job.core.enums.ExecutorBlockStrategyEnum)1 ParseException (java.text.ParseException)1 ArrayList (java.util.ArrayList)1 Test (org.junit.Test)1