fix:1.完成邮件分析成功发送给redis 2.解决获取邮件按条件查询bug
This commit is contained in:
parent
950407d6da
commit
32ebf4915c
|
@ -126,7 +126,7 @@ public class EmailServiceManager {
|
||||||
//如果邮箱邮件数量 > 0
|
//如果邮箱邮件数量 > 0
|
||||||
final int messageCount = folder.getMessageCount();
|
final int messageCount = folder.getMessageCount();
|
||||||
if(messageCount > 0){
|
if(messageCount > 0){
|
||||||
SearchTerm searchTerm = new ReceivedDateTerm(ComparisonTerm.GT,this.systemStartupTime);
|
SearchTerm searchTerm = new ReceivedDateTerm(ComparisonTerm.GE,this.systemStartupTime);
|
||||||
Message[] messages = folder.search(searchTerm);
|
Message[] messages = folder.search(searchTerm);
|
||||||
Arrays.sort(messages, (o1, o2) -> {
|
Arrays.sort(messages, (o1, o2) -> {
|
||||||
try {
|
try {
|
||||||
|
@ -296,7 +296,7 @@ public class EmailServiceManager {
|
||||||
public void close(){
|
public void close(){
|
||||||
try {
|
try {
|
||||||
if(null != folder){
|
if(null != folder){
|
||||||
folder.close();
|
folder.close(true);
|
||||||
}
|
}
|
||||||
if(null != store){
|
if(null != store){
|
||||||
store.close();
|
store.close();
|
||||||
|
|
|
@ -300,7 +300,7 @@ public class FTPUtils {
|
||||||
public void close(){
|
public void close(){
|
||||||
try{
|
try{
|
||||||
if (client != null){
|
if (client != null){
|
||||||
client.logout();
|
// client.logout();
|
||||||
client.disconnect();
|
client.disconnect();
|
||||||
}
|
}
|
||||||
}catch (IOException e){
|
}catch (IOException e){
|
||||||
|
|
|
@ -2,17 +2,17 @@ package org.jeecg.modules.spectrum;
|
||||||
|
|
||||||
import cn.hutool.core.io.FileUtil;
|
import cn.hutool.core.io.FileUtil;
|
||||||
import com.google.common.collect.Lists;
|
import com.google.common.collect.Lists;
|
||||||
|
import com.google.common.collect.Maps;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.commons.io.FileUtils;
|
import org.apache.commons.io.FileUtils;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
import org.jeecg.common.constant.StringConstant;
|
import org.jeecg.common.constant.StringConstant;
|
||||||
import org.jeecg.common.properties.SpectrumPathProperties;
|
import org.jeecg.common.properties.SpectrumPathProperties;
|
||||||
import org.jeecg.common.util.DateUtils;
|
import org.jeecg.common.util.DateUtils;
|
||||||
|
import org.jeecg.modules.base.dto.Info;
|
||||||
import org.jeecg.modules.base.entity.original.GardsSampleData;
|
import org.jeecg.modules.base.entity.original.GardsSampleData;
|
||||||
import org.jeecg.modules.base.entity.rnauto.GardsAnalyses;
|
import org.jeecg.modules.base.entity.rnauto.GardsAnalyses;
|
||||||
import org.jeecg.modules.base.enums.DataType;
|
import org.jeecg.modules.base.enums.*;
|
||||||
import org.jeecg.modules.base.enums.DataTypeAbbr;
|
|
||||||
import org.jeecg.modules.base.enums.SampleStatus;
|
|
||||||
import org.jeecg.modules.config.datasource.DataSourceSwitcher;
|
import org.jeecg.modules.config.datasource.DataSourceSwitcher;
|
||||||
import org.jeecg.modules.exception.BAnalyseException;
|
import org.jeecg.modules.exception.BAnalyseException;
|
||||||
import org.jeecg.modules.exception.FileNotExistException;
|
import org.jeecg.modules.exception.FileNotExistException;
|
||||||
|
@ -25,6 +25,9 @@ import org.springframework.core.io.ClassPathResource;
|
||||||
import org.springframework.core.io.Resource;
|
import org.springframework.core.io.Resource;
|
||||||
import org.springframework.transaction.TransactionStatus;
|
import org.springframework.transaction.TransactionStatus;
|
||||||
import java.io.*;
|
import java.io.*;
|
||||||
|
import java.time.Instant;
|
||||||
|
import java.time.LocalDateTime;
|
||||||
|
import java.time.ZoneId;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
@ -148,7 +151,7 @@ public class Sample_B_Analysis implements BlockConstant {
|
||||||
/**
|
/**
|
||||||
* 执行解析过程
|
* 执行解析过程
|
||||||
*/
|
*/
|
||||||
public void start() throws BAnalyseException {
|
public void analysis() throws BAnalyseException {
|
||||||
//标记整个分析过程是否分析失败
|
//标记整个分析过程是否分析失败
|
||||||
boolean analyseFail = false;
|
boolean analyseFail = false;
|
||||||
try{
|
try{
|
||||||
|
@ -168,6 +171,8 @@ public class Sample_B_Analysis implements BlockConstant {
|
||||||
//生成报告
|
//生成报告
|
||||||
Sample_B_Analysis.B_AnalysisReport report = new Sample_B_Analysis.B_AnalysisReport();
|
Sample_B_Analysis.B_AnalysisReport report = new Sample_B_Analysis.B_AnalysisReport();
|
||||||
report.start();
|
report.start();
|
||||||
|
//发送数据到redis
|
||||||
|
pushToRedis();
|
||||||
}catch (Exception e){
|
}catch (Exception e){
|
||||||
analyseFail = true;
|
analyseFail = true;
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
@ -332,6 +337,29 @@ public class Sample_B_Analysis implements BlockConstant {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 分析成功数据发送到Redis
|
||||||
|
*/
|
||||||
|
private void pushToRedis(){
|
||||||
|
Info info = new Info();
|
||||||
|
info.setStationId(this.sampleData.getStationId().toString());
|
||||||
|
info.setSampleId(this.sampleData.getSampleId().toString());
|
||||||
|
info.setSampleName(this.phdFileName);
|
||||||
|
final Instant instant = this.sampleData.getCollectStart().toInstant();
|
||||||
|
final LocalDateTime collectTime = instant.atZone(ZoneId.systemDefault()).toLocalDateTime();
|
||||||
|
info.setCollectionDate(collectTime);
|
||||||
|
info.setDatasource(DSType.ARMDARR.getType());
|
||||||
|
info.setFullOrPrel(this.sampleData.getSpectralQualifie());
|
||||||
|
info.setBetaOrGamma(SpectrumType.BETA.getType());
|
||||||
|
Map<String,String> nuclides = Maps.newHashMap();
|
||||||
|
nuclides.put(XE_131m,String.valueOf(analyseResult.Xe131m_con));
|
||||||
|
nuclides.put(XE_133,String.valueOf(analyseResult.Xe133_con));
|
||||||
|
nuclides.put(XE_133m,String.valueOf(analyseResult.Xe133m_con));
|
||||||
|
nuclides.put(XE_135,String.valueOf(analyseResult.Xe135_con));
|
||||||
|
info.setNuclides(nuclides);
|
||||||
|
spectrumServiceQuotes.getRedisStreamUtil().pushAnalysis(info);
|
||||||
|
}
|
||||||
|
|
||||||
public Sample_B_Analysis.B_AnalysisReport getReport(){
|
public Sample_B_Analysis.B_AnalysisReport getReport(){
|
||||||
|
|
||||||
return new Sample_B_Analysis.B_AnalysisReport();
|
return new Sample_B_Analysis.B_AnalysisReport();
|
||||||
|
|
|
@ -76,7 +76,7 @@ public class SamplephdSpectrum extends S_D_Q_G_SpectrumHandler{
|
||||||
protected void autoAnalysis() throws Exception {
|
protected void autoAnalysis() throws Exception {
|
||||||
if(this.sourceData.system_type.equals(SystemType.BETA.getType())){
|
if(this.sourceData.system_type.equals(SystemType.BETA.getType())){
|
||||||
Sample_B_Analysis bAnalysis = new Sample_B_Analysis(this);
|
Sample_B_Analysis bAnalysis = new Sample_B_Analysis(this);
|
||||||
bAnalysis.start();
|
bAnalysis.analysis();
|
||||||
}
|
}
|
||||||
if (this.sourceData.system_type.equals(SystemType.PARTICULATE.getType()) || this.sourceData.system_type.equals(SystemType.GAMMA.getType())) {
|
if (this.sourceData.system_type.equals(SystemType.PARTICULATE.getType()) || this.sourceData.system_type.equals(SystemType.GAMMA.getType())) {
|
||||||
Sample_G_Analysis sample_g_analysis = new Sample_G_Analysis(super.sourceData, super.spectrumServiceQuotes, super.sampleData,super.ftpUtil);
|
Sample_G_Analysis sample_g_analysis = new Sample_G_Analysis(super.sourceData, super.spectrumServiceQuotes, super.sampleData,super.ftpUtil);
|
||||||
|
|
|
@ -5,6 +5,7 @@ import lombok.RequiredArgsConstructor;
|
||||||
import org.jeecg.common.properties.SoftwareProperties;
|
import org.jeecg.common.properties.SoftwareProperties;
|
||||||
import org.jeecg.common.properties.SpectrumPathProperties;
|
import org.jeecg.common.properties.SpectrumPathProperties;
|
||||||
import org.jeecg.common.properties.TaskProperties;
|
import org.jeecg.common.properties.TaskProperties;
|
||||||
|
import org.jeecg.common.util.RedisStreamUtil;
|
||||||
import org.jeecg.modules.datasource.OraDataSourceProperties;
|
import org.jeecg.modules.datasource.OraDataSourceProperties;
|
||||||
import org.jeecg.modules.ftp.FTPProperties;
|
import org.jeecg.modules.ftp.FTPProperties;
|
||||||
import org.jeecg.modules.service.*;
|
import org.jeecg.modules.service.*;
|
||||||
|
@ -70,4 +71,6 @@ public class SpectrumServiceQuotes {
|
||||||
|
|
||||||
private final SoftwareProperties softwareProperties;
|
private final SoftwareProperties softwareProperties;
|
||||||
|
|
||||||
|
private final RedisStreamUtil redisStreamUtil;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user