| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 | package com.xxl.job.admin.service.impl;import com.xxl.job.admin.core.model.XxlJobInfo;import com.xxl.job.admin.core.model.XxlJobLog;import com.xxl.job.admin.core.thread.JobTriggerPoolHelper;import com.xxl.job.admin.core.trigger.TriggerTypeEnum;import com.xxl.job.admin.core.util.I18nUtil;import com.xxl.job.admin.dao.XxlJobGroupDao;import com.xxl.job.admin.dao.XxlJobInfoDao;import com.xxl.job.admin.dao.XxlJobLogDao;import com.xxl.job.admin.dao.XxlJobRegistryDao;import com.xxl.job.core.biz.AdminBiz;import com.xxl.job.core.biz.model.HandleCallbackParam;import com.xxl.job.core.biz.model.RegistryParam;import com.xxl.job.core.biz.model.ReturnT;import com.xxl.job.core.handler.IJobHandler;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import org.springframework.stereotype.Service;import org.springframework.util.StringUtils;import javax.annotation.Resource;import java.text.MessageFormat;import java.util.Date;import java.util.List;/** * @author xuxueli 2017-07-27 21:54:20 */@Servicepublic class AdminBizImpl implements AdminBiz {    private static Logger logger = LoggerFactory.getLogger(AdminBizImpl.class);    @Resource    public XxlJobLogDao xxlJobLogDao;    @Resource    private XxlJobInfoDao xxlJobInfoDao;    @Resource    private XxlJobRegistryDao xxlJobRegistryDao;    @Resource    private XxlJobGroupDao xxlJobGroupDao;    @Override    public ReturnT<String> callback(List<HandleCallbackParam> callbackParamList) {        for (HandleCallbackParam handleCallbackParam: callbackParamList) {            ReturnT<String> callbackResult = callback(handleCallbackParam);            logger.debug(">>>>>>>>> JobApiController.callback {}, handleCallbackParam={}, callbackResult={}",                    (callbackResult.getCode()==IJobHandler.SUCCESS.getCode()?"success":"fail"), handleCallbackParam, callbackResult);        }        return ReturnT.SUCCESS;    }    private ReturnT<String> callback(HandleCallbackParam handleCallbackParam) {        // valid log item        XxlJobLog log = xxlJobLogDao.load(handleCallbackParam.getLogId());        if (log == null) {            return new ReturnT<String>(ReturnT.FAIL_CODE, "log item not found.");        }        if (log.getHandleCode() > 0) {            return new ReturnT<String>(ReturnT.FAIL_CODE, "log repeate callback.");     // avoid repeat callback, trigger child job etc        }        // trigger success, to trigger child job        String callbackMsg = null;        if (IJobHandler.SUCCESS.getCode() == handleCallbackParam.getExecuteResult().getCode()) {            XxlJobInfo xxlJobInfo = xxlJobInfoDao.loadById(log.getJobId());            if (xxlJobInfo!=null && xxlJobInfo.getChildJobId()!=null && xxlJobInfo.getChildJobId().trim().length()>0) {                callbackMsg = "<br><br><span style=\"color:#00c0ef;\" > >>>>>>>>>>>"+ I18nUtil.getString("jobconf_trigger_child_run") +"<<<<<<<<<<< </span><br>";                String[] childJobIds = xxlJobInfo.getChildJobId().split(",");                for (int i = 0; i < childJobIds.length; i++) {                    int childJobId = (childJobIds[i]!=null && childJobIds[i].trim().length()>0 && isNumeric(childJobIds[i]))?Integer.valueOf(childJobIds[i]):-1;                    if (childJobId > 0) {                        JobTriggerPoolHelper.trigger(childJobId, TriggerTypeEnum.PARENT, -1, null, null, null);                        ReturnT<String> triggerChildResult = ReturnT.SUCCESS;                        // add msg                        callbackMsg += MessageFormat.format(I18nUtil.getString("jobconf_callback_child_msg1"),                                (i+1),                                childJobIds.length,                                childJobIds[i],                                (triggerChildResult.getCode()==ReturnT.SUCCESS_CODE?I18nUtil.getString("system_success"):I18nUtil.getString("system_fail")),                                triggerChildResult.getMsg());                    } else {                        callbackMsg += MessageFormat.format(I18nUtil.getString("jobconf_callback_child_msg2"),                                (i+1),                                childJobIds.length,                                childJobIds[i]);                    }                }            }        }        // handle msg        StringBuffer handleMsg = new StringBuffer();        if (log.getHandleMsg()!=null) {            handleMsg.append(log.getHandleMsg()).append("<br>");        }        if (handleCallbackParam.getExecuteResult().getMsg() != null) {            handleMsg.append(handleCallbackParam.getExecuteResult().getMsg());        }        if (callbackMsg != null) {            handleMsg.append(callbackMsg);        }        if (handleMsg.length() > 15000) {            handleMsg = new StringBuffer(handleMsg.substring(0, 15000));  // text最大64kb 避免长度过长        }        // success, save log        log.setHandleTime(new Date());        log.setHandleCode(handleCallbackParam.getExecuteResult().getCode());        log.setHandleMsg(handleMsg.toString());        xxlJobLogDao.updateHandleInfo(log);        return ReturnT.SUCCESS;    }    private boolean isNumeric(String str){        try {            int result = Integer.valueOf(str);            return true;        } catch (NumberFormatException e) {            return false;        }    }    @Override    public ReturnT<String> registry(RegistryParam registryParam) {        // valid        if (!StringUtils.hasText(registryParam.getRegistryGroup())                || !StringUtils.hasText(registryParam.getRegistryKey())                || !StringUtils.hasText(registryParam.getRegistryValue())) {            return new ReturnT<String>(ReturnT.FAIL_CODE, "Illegal Argument.");        }        int ret = xxlJobRegistryDao.registryUpdate(registryParam.getRegistryGroup(), registryParam.getRegistryKey(), registryParam.getRegistryValue(), new Date());        if (ret < 1) {            xxlJobRegistryDao.registrySave(registryParam.getRegistryGroup(), registryParam.getRegistryKey(), registryParam.getRegistryValue(), new Date());            // fresh            freshGroupRegistryInfo(registryParam);        }        return ReturnT.SUCCESS;    }    @Override    public ReturnT<String> registryRemove(RegistryParam registryParam) {        // valid        if (!StringUtils.hasText(registryParam.getRegistryGroup())                || !StringUtils.hasText(registryParam.getRegistryKey())                || !StringUtils.hasText(registryParam.getRegistryValue())) {            return new ReturnT<String>(ReturnT.FAIL_CODE, "Illegal Argument.");        }        int ret = xxlJobRegistryDao.registryDelete(registryParam.getRegistryGroup(), registryParam.getRegistryKey(), registryParam.getRegistryValue());        if (ret > 0) {            // fresh            freshGroupRegistryInfo(registryParam);        }        return ReturnT.SUCCESS;    }    private void freshGroupRegistryInfo(RegistryParam registryParam){        // Under consideration, prevent affecting core tables    }}
 |