...
|
...
|
@@ -12,20 +12,23 @@ import com.airport.dao.impl.DaoImpl; |
|
|
import com.airport.util.ConfigUtils;
|
|
|
import com.airport.util.SystemBean;
|
|
|
import com.airport.util.Utils;
|
|
|
import com.airport.util.parse.XMPParse;
|
|
|
import com.caac.imf.api.IMFClient;
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
import org.apache.log4j.Logger;
|
|
|
|
|
|
import java.util.Iterator;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.TimerTask;
|
|
|
import org.apache.log4j.Logger;
|
|
|
|
|
|
public class SendMessageTask extends TimerTask {
|
|
|
private static final Logger logger = Logger.getLogger(SendMessageTask.class);
|
|
|
public class IMFSender extends TimerTask {
|
|
|
private static final Logger logger = Logger.getLogger(IMFSender.class);
|
|
|
private Dao dao = (DaoImpl)SystemBean.getBean("dao");
|
|
|
private IMFClient client;
|
|
|
private String indexFileName;
|
|
|
|
|
|
public SendMessageTask(IMFClient client, String fileName) {
|
|
|
public IMFSender(IMFClient client, String fileName) {
|
|
|
this.indexFileName = fileName;
|
|
|
this.client = client;
|
|
|
}
|
...
|
...
|
@@ -65,7 +68,8 @@ public class SendMessageTask extends TimerTask { |
|
|
logger.info("准备发送数据 FID:" + m.getFid() + " XML.length=:" + m.getContent().length());
|
|
|
String sendMsg = Utils.searchReplace(m.getContent(), header.getSndr(), "SNDR");
|
|
|
sendMsg = Utils.searchReplace(sendMsg, header.getType(), "TYPE");
|
|
|
sendMsg = Utils.searchReplace(sendMsg, header.getStype(), "STYP");
|
|
|
String stype = tranlateXML(m.getContent());
|
|
|
sendMsg = Utils.searchReplace(sendMsg, stype, "STYP");
|
|
|
sendMsg = Utils.searchReplaceSingle(sendMsg, header.getRcvr(), "RCVR");
|
|
|
if (!"".equals(sendMsg)) {
|
|
|
logger.info("开始发送数据 XML:" + sendMsg);
|
...
|
...
|
@@ -79,7 +83,7 @@ public class SendMessageTask extends TimerTask { |
|
|
}
|
|
|
}
|
|
|
|
|
|
this.dao.update(m.getFid(), times);
|
|
|
// this.dao.update(m.getFid(), times);
|
|
|
} else {
|
|
|
logger.info("FID=" + m.getFid() + "XML is null ");
|
|
|
}
|
...
|
...
|
@@ -96,4 +100,20 @@ public class SendMessageTask extends TimerTask { |
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
private static String tranlateXML(String xml) throws Exception {
|
|
|
String stype = XMPParse.getNodeValueFromXmlString(xml, "/MSG/META/STYP");
|
|
|
if (!StringUtils.isBlank(stype)) {
|
|
|
if (ConfigUtils.XTYPE_MAP.containsKey(stype)) {
|
|
|
stype = (String)ConfigUtils.XTYPE_MAP.get(stype);
|
|
|
} else {
|
|
|
logger.info("stype=" + stype + " 在对应关系里找不到这个KEY");
|
|
|
}
|
|
|
} else {
|
|
|
logger.info(" 在XML找不到STYPE这个节点");
|
|
|
stype = "";
|
|
|
}
|
|
|
|
|
|
return stype;
|
|
|
}
|
|
|
} |
...
|
...
|
|