|
@@ -1,27 +1,13 @@
|
|
package com.xxl.job.admin.service.impl;
|
|
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.JobLogHelper;
|
|
import com.xxl.job.admin.core.thread.JobRegistryHelper;
|
|
import com.xxl.job.admin.core.thread.JobRegistryHelper;
|
|
-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.AdminBiz;
|
|
import com.xxl.job.core.biz.model.HandleCallbackParam;
|
|
import com.xxl.job.core.biz.model.HandleCallbackParam;
|
|
import com.xxl.job.core.biz.model.RegistryParam;
|
|
import com.xxl.job.core.biz.model.RegistryParam;
|
|
import com.xxl.job.core.biz.model.ReturnT;
|
|
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.stereotype.Service;
|
|
|
|
|
|
-import javax.annotation.Resource;
|
|
|
|
-import java.text.MessageFormat;
|
|
|
|
-import java.util.Date;
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -29,104 +15,11 @@ import java.util.List;
|
|
*/
|
|
*/
|
|
@Service
|
|
@Service
|
|
public class AdminBizImpl implements AdminBiz {
|
|
public 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
|
|
@Override
|
|
public ReturnT<String> callback(List<HandleCallbackParam> callbackParamList) {
|
|
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;
|
|
|
|
- }
|
|
|
|
|
|
+ return JobLogHelper.getInstance().callback(callbackParamList);
|
|
}
|
|
}
|
|
|
|
|
|
@Override
|
|
@Override
|