Java tutorial
/* * Copyright 2015-2102 RonCoo(http://www.roncoo.com) Group. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.jms.notify.core; import java.util.concurrent.Delayed; import java.util.concurrent.TimeUnit; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import com.alibaba.fastjson.JSONObject; import com.jms.notify.App; import com.jms.notify.entity.NotifyParam; import com.jms.notify.entity.RpNotifyRecord; import com.jms.notify.enums.NotifyStatusEnum; import com.jms.notify.exception.BizException; import com.jms.notify.utils.httpclient.SimpleHttpParam; import com.jms.notify.utils.httpclient.SimpleHttpResult; import com.jms.notify.utils.httpclient.SimpleHttpUtils; /** * <b>: * </b> * @author xianchaoye * */ public class NotifyTask implements Runnable, Delayed { private static final Log LOG = LogFactory.getLog(NotifyTask.class); private long executeTime; private RpNotifyRecord notifyRecord; private NotifyQueue notifyQueue; private NotifyParam notifyParam; private NotifyPersist notifyPersist = App.notifyPersist; public NotifyTask() { } public NotifyTask(RpNotifyRecord notifyRecord, NotifyQueue notifyQueue, NotifyParam notifyParam) { super(); this.notifyRecord = notifyRecord; this.notifyQueue = notifyQueue; this.notifyParam = notifyParam; this.executeTime = getExecuteTime(notifyRecord); } private long getExecuteTime(RpNotifyRecord record) { long lastTime = record.getLastNotifyTime().getTime(); Integer nextNotifyTime = notifyParam.getNotifyParams().get(record.getNotifyTimes()); return (nextNotifyTime == null ? 0 : nextNotifyTime * 1000) + lastTime; } public int compareTo(Delayed o) { NotifyTask task = (NotifyTask) o; return executeTime > task.executeTime ? 1 : (executeTime < task.executeTime ? -1 : 0); } public long getDelay(TimeUnit unit) { return unit.convert(executeTime - System.currentTimeMillis(), unit.SECONDS); } public void run() { // ? Integer notifyTimes = notifyRecord.getNotifyTimes(); // try { LOG.info("Notify Url " + notifyRecord.getUrl() + " ;notify id:" + notifyRecord.getId() + ";notify times:" + notifyRecord.getNotifyTimes()); /** httpClient */ SimpleHttpParam param = new SimpleHttpParam(notifyRecord.getUrl()); SimpleHttpResult result = SimpleHttpUtils.httpRequest(param); /* * OkHttpClient client = new OkHttpClient(); Request request = new * Request.Builder().url(notifyRecord.getUrl()).build(); Response * response = client.newCall(request).execute(); */ notifyRecord.setNotifyTimes(notifyTimes + 1); String successValue = notifyParam.getSuccessValue(); String responseMsg = ""; Integer responseStatus = result.getStatusCode(); // ?200? if (result != null && (responseStatus == 200 || responseStatus == 201 || responseStatus == 202 || responseStatus == 203 || responseStatus == 204 || responseStatus == 205 || responseStatus == 206)) { responseMsg = result.getContent().trim(); responseMsg = responseMsg.length() >= 600 ? responseMsg.substring(0, 600) : responseMsg; LOG.info("?? " + notifyRecord.getMerchantOrderNo() + " HTTP_STATUS" + responseStatus + " ?" + responseMsg); // ? if (responseMsg.trim().equals(successValue)) { notifyPersist.updateNotifyRord(notifyRecord.getId(), notifyRecord.getNotifyTimes(), NotifyStatusEnum.SUCCESS.name()); } else { notifyQueue.addElementToList(notifyRecord); notifyPersist.updateNotifyRord(notifyRecord.getId(), notifyRecord.getNotifyTimes(), NotifyStatusEnum.HTTP_REQUEST_SUCCESS.name()); } LOG.info("Update NotifyRecord:" + JSONObject.toJSONString(notifyRecord) + ";responseMsg:" + responseMsg); } else { notifyQueue.addElementToList(notifyRecord); // ???? notifyPersist.updateNotifyRord(notifyRecord.getId(), notifyRecord.getNotifyTimes(), NotifyStatusEnum.HTTP_REQUEST_FALIED.name()); } // notifyPersist.saveNotifyRecordLogs(notifyRecord.getId(), notifyRecord.getMerchantNo(), notifyRecord.getMerchantOrderNo(), notifyRecord.getUrl(), responseMsg, responseStatus); LOG.info("Insert NotifyRecordLog, merchantNo:" + notifyRecord.getMerchantNo() + ",merchantOrderNo:" + notifyRecord.getMerchantOrderNo()); } catch (BizException e) { LOG.error("NotifyTask", e); } catch (Exception e) { LOG.error("NotifyTask", e); notifyQueue.addElementToList(notifyRecord); notifyPersist.updateNotifyRord(notifyRecord.getId(), notifyRecord.getNotifyTimes(), NotifyStatusEnum.HTTP_REQUEST_FALIED.name()); notifyPersist.saveNotifyRecordLogs(notifyRecord.getId(), notifyRecord.getMerchantNo(), notifyRecord.getMerchantOrderNo(), notifyRecord.getUrl(), "", 0); } } }