Merge remote-tracking branch 'origin/SelfStation' into SelfStation
This commit is contained in:
commit
9107cdf13e
|
@ -308,7 +308,7 @@ public class EmailLogManager {
|
||||||
LocalDateTime now = LocalDateTime.now();
|
LocalDateTime now = LocalDateTime.now();
|
||||||
StringBuilder logFilePath = new StringBuilder();
|
StringBuilder logFilePath = new StringBuilder();
|
||||||
logFilePath.append(spectrumPathProperties.getRootPath());
|
logFilePath.append(spectrumPathProperties.getRootPath());
|
||||||
logFilePath.append(File.separator);
|
// logFilePath.append(File.separator);
|
||||||
logFilePath.append(spectrumPathProperties.getLogPath());
|
logFilePath.append(spectrumPathProperties.getLogPath());
|
||||||
logFilePath.append(File.separator);
|
logFilePath.append(File.separator);
|
||||||
logFilePath.append(FIXED_FILE_NAME);
|
logFilePath.append(FIXED_FILE_NAME);
|
||||||
|
|
|
@ -544,7 +544,7 @@ public class EmailServiceManager {
|
||||||
fileName.append(SAVE_EML_SUFFIX);
|
fileName.append(SAVE_EML_SUFFIX);
|
||||||
final String rootPath = spectrumPathProperties.getRootPath();
|
final String rootPath = spectrumPathProperties.getRootPath();
|
||||||
final String emlPath = spectrumPathProperties.getEmlPath();
|
final String emlPath = spectrumPathProperties.getEmlPath();
|
||||||
emlFile = new File(rootPath+File.separator+emlPath+File.separator+fileName);
|
emlFile = new File(rootPath+emlPath+File.separator+fileName);
|
||||||
message.writeTo(new FileOutputStream(emlFile));
|
message.writeTo(new FileOutputStream(emlFile));
|
||||||
} catch (MessagingException | IOException e) {
|
} catch (MessagingException | IOException e) {
|
||||||
//下载邮件失败
|
//下载邮件失败
|
||||||
|
|
|
@ -72,7 +72,7 @@ public class ErrorLogManager {
|
||||||
|
|
||||||
StringBuilder logFilePath = new StringBuilder();
|
StringBuilder logFilePath = new StringBuilder();
|
||||||
logFilePath.append(spectrumPathProperties.getRootPath());
|
logFilePath.append(spectrumPathProperties.getRootPath());
|
||||||
logFilePath.append(File.separator);
|
// logFilePath.append(File.separator);
|
||||||
logFilePath.append(spectrumPathProperties.getLogPath());
|
logFilePath.append(spectrumPathProperties.getLogPath());
|
||||||
logFilePath.append(File.separator);
|
logFilePath.append(File.separator);
|
||||||
logFilePath.append("error");
|
logFilePath.append("error");
|
||||||
|
|
|
@ -68,7 +68,7 @@ public class FileSourceHandleManager{
|
||||||
//手动放置能谱文件获取路径
|
//手动放置能谱文件获取路径
|
||||||
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
||||||
final String filePath = spectrumServiceQuotes.getSpectrumPathProperties().getFilesourcePath();
|
final String filePath = spectrumServiceQuotes.getSpectrumPathProperties().getFilesourcePath();
|
||||||
List<File> spectrumFiles = FileOperation.getFiles(rootPath+ File.separator+filePath,taskProperties.getFilesourceDirReceiveNum());
|
List<File> spectrumFiles = FileOperation.getFiles(rootPath+ filePath,taskProperties.getFilesourceDirReceiveNum());
|
||||||
if(!CollectionUtils.isEmpty(spectrumFiles)){
|
if(!CollectionUtils.isEmpty(spectrumFiles)){
|
||||||
CountDownLatch taskLatch = new CountDownLatch(spectrumFiles.size());
|
CountDownLatch taskLatch = new CountDownLatch(spectrumFiles.size());
|
||||||
for(File spectrumFile : spectrumFiles){
|
for(File spectrumFile : spectrumFiles){
|
||||||
|
|
|
@ -263,7 +263,7 @@ public class StatReportManager implements ApplicationListener<ApplicationEvent>{
|
||||||
final String statisticsPath = spectrumPathProperties.getStatisticsPath();
|
final String statisticsPath = spectrumPathProperties.getStatisticsPath();
|
||||||
StringBuilder finalPath = new StringBuilder();
|
StringBuilder finalPath = new StringBuilder();
|
||||||
finalPath.append(spectrumPathProperties.getRootPath());
|
finalPath.append(spectrumPathProperties.getRootPath());
|
||||||
finalPath.append(File.separator);
|
// finalPath.append(File.separator);
|
||||||
finalPath.append(spectrumPathProperties.getSaveFilePath());
|
finalPath.append(spectrumPathProperties.getSaveFilePath());
|
||||||
finalPath.append(File.separator);
|
finalPath.append(File.separator);
|
||||||
finalPath.append(spectrumPathProperties.getStatisticsPath());
|
finalPath.append(spectrumPathProperties.getStatisticsPath());
|
||||||
|
|
|
@ -69,7 +69,7 @@ public class UndealHandleManager{
|
||||||
//ftp解析失败文件存储路径
|
//ftp解析失败文件存储路径
|
||||||
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
||||||
final String filePath = spectrumServiceQuotes.getSpectrumPathProperties().getUndealPath();
|
final String filePath = spectrumServiceQuotes.getSpectrumPathProperties().getUndealPath();
|
||||||
List<File> spectrumFiles = FileOperation.getFiles(rootPath+ File.separator+filePath,taskProperties.getUndealDirReceiveNum());
|
List<File> spectrumFiles = FileOperation.getFiles(rootPath+ filePath,taskProperties.getUndealDirReceiveNum());
|
||||||
if(!CollectionUtils.isEmpty(spectrumFiles)){
|
if(!CollectionUtils.isEmpty(spectrumFiles)){
|
||||||
CountDownLatch taskLatch = new CountDownLatch(spectrumFiles.size());
|
CountDownLatch taskLatch = new CountDownLatch(spectrumFiles.size());
|
||||||
for(File spectrumFile : spectrumFiles){
|
for(File spectrumFile : spectrumFiles){
|
||||||
|
|
|
@ -157,7 +157,7 @@ public abstract class AbstractSpectrumHandler extends AbstractChain {
|
||||||
final SpectrumPathProperties properties = this.spectrumServiceQuotes.getSpectrumPathProperties();
|
final SpectrumPathProperties properties = this.spectrumServiceQuotes.getSpectrumPathProperties();
|
||||||
StringBuilder finalPath = new StringBuilder();
|
StringBuilder finalPath = new StringBuilder();
|
||||||
finalPath.append(properties.getRootPath());
|
finalPath.append(properties.getRootPath());
|
||||||
finalPath.append(File.separator);
|
// finalPath.append(File.separator);
|
||||||
finalPath.append(properties.getSaveFilePath());
|
finalPath.append(properties.getSaveFilePath());
|
||||||
finalPath.append(File.separator);
|
finalPath.append(File.separator);
|
||||||
finalPath.append(fileSavePath);
|
finalPath.append(fileSavePath);
|
||||||
|
@ -266,13 +266,13 @@ public abstract class AbstractSpectrumHandler extends AbstractChain {
|
||||||
//解析失败会把文件移动到errorfile目录
|
//解析失败会把文件移动到errorfile目录
|
||||||
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
||||||
final String errorFilePath = spectrumServiceQuotes.getSpectrumPathProperties().getErrorFilePath();
|
final String errorFilePath = spectrumServiceQuotes.getSpectrumPathProperties().getErrorFilePath();
|
||||||
final String finalPath = rootPath+File.separator+errorFilePath;
|
final String finalPath = rootPath+errorFilePath;
|
||||||
FileOperation.moveFile(spectrumFile,finalPath,true);
|
FileOperation.moveFile(spectrumFile,finalPath,true);
|
||||||
} else {
|
} else {
|
||||||
//解析失败会把文件移动到undeal目录
|
//解析失败会把文件移动到undeal目录
|
||||||
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
final String rootPath = spectrumServiceQuotes.getSpectrumPathProperties().getRootPath();
|
||||||
final String undealPath = spectrumServiceQuotes.getSpectrumPathProperties().getUndealPath();
|
final String undealPath = spectrumServiceQuotes.getSpectrumPathProperties().getUndealPath();
|
||||||
final String finalPath = rootPath+File.separator+undealPath;
|
final String finalPath = rootPath+undealPath;
|
||||||
//判断文件是否在savefile下已经保存过
|
//判断文件是否在savefile下已经保存过
|
||||||
final String savefileName = spectrumServiceQuotes.getSpectrumPathProperties().getSaveFilePath().substring(1);
|
final String savefileName = spectrumServiceQuotes.getSpectrumPathProperties().getSaveFilePath().substring(1);
|
||||||
//若文件已经在savefile了进行复制
|
//若文件已经在savefile了进行复制
|
||||||
|
@ -318,7 +318,7 @@ public abstract class AbstractSpectrumHandler extends AbstractChain {
|
||||||
if(SpectrumSource.FORM_FILE_UNDEL.getSourceType().equals(spectrumSource)){
|
if(SpectrumSource.FORM_FILE_UNDEL.getSourceType().equals(spectrumSource)){
|
||||||
StringBuilder undealFilePath = new StringBuilder();
|
StringBuilder undealFilePath = new StringBuilder();
|
||||||
undealFilePath.append(spectrumServiceQuotes.getSpectrumPathProperties().getRootPath());
|
undealFilePath.append(spectrumServiceQuotes.getSpectrumPathProperties().getRootPath());
|
||||||
undealFilePath.append(File.separator);
|
// undealFilePath.append(File.separator);
|
||||||
undealFilePath.append(spectrumServiceQuotes.getSpectrumPathProperties().getUndealPath());
|
undealFilePath.append(spectrumServiceQuotes.getSpectrumPathProperties().getUndealPath());
|
||||||
undealFilePath.append(File.separator);
|
undealFilePath.append(File.separator);
|
||||||
undealFilePath.append(this.spectrumFile.getName());
|
undealFilePath.append(this.spectrumFile.getName());
|
||||||
|
|
|
@ -804,7 +804,7 @@ public class Sample_B_Analysis implements BlockConstant {
|
||||||
private void saveReportToSavefileArr() throws IOException {
|
private void saveReportToSavefileArr() throws IOException {
|
||||||
StringBuilder finalReportPath = new StringBuilder();
|
StringBuilder finalReportPath = new StringBuilder();
|
||||||
finalReportPath.append(spectrumServiceQuotes.getSpectrumPathProperties().getRootPath());
|
finalReportPath.append(spectrumServiceQuotes.getSpectrumPathProperties().getRootPath());
|
||||||
finalReportPath.append(File.separator);
|
// finalReportPath.append(File.separator);
|
||||||
finalReportPath.append(spectrumServiceQuotes.getSpectrumPathProperties().getSaveFilePath());
|
finalReportPath.append(spectrumServiceQuotes.getSpectrumPathProperties().getSaveFilePath());
|
||||||
finalReportPath.append(File.separator);
|
finalReportPath.append(File.separator);
|
||||||
finalReportPath.append(arrFilePath);
|
finalReportPath.append(arrFilePath);
|
||||||
|
|
|
@ -186,8 +186,7 @@ public class Sample_G_Analysis {
|
||||||
String reportContent = gammaFileUtil.GetReportContent(middleData);
|
String reportContent = gammaFileUtil.GetReportContent(middleData);
|
||||||
String reportPath = StringUtils.substringBeforeLast(middleData.getAnalyses_ReportPath(), StringPool.SLASH);
|
String reportPath = StringUtils.substringBeforeLast(middleData.getAnalyses_ReportPath(), StringPool.SLASH);
|
||||||
String reportName = StringUtils.substringAfterLast(middleData.getAnalyses_ReportPath(), StringPool.SLASH) + ".txt";
|
String reportName = StringUtils.substringAfterLast(middleData.getAnalyses_ReportPath(), StringPool.SLASH) + ".txt";
|
||||||
String savePath = spectrumPathProperties.getRootPath() + File.separator +
|
String savePath = spectrumPathProperties.getRootPath() + spectrumPathProperties.getSaveFilePath() + File.separator + reportPath +
|
||||||
spectrumPathProperties.getSaveFilePath() + File.separator + reportPath +
|
|
||||||
File.separator + reportName;
|
File.separator + reportName;
|
||||||
// 保存文件
|
// 保存文件
|
||||||
FileOperation.saveOrAppendFile(savePath, reportContent, false);
|
FileOperation.saveOrAppendFile(savePath, reportContent, false);
|
||||||
|
@ -356,8 +355,7 @@ public class Sample_G_Analysis {
|
||||||
* @param middleData
|
* @param middleData
|
||||||
*/
|
*/
|
||||||
private void writeLog(String logFilePath, GStoreMiddleProcessData middleData) {
|
private void writeLog(String logFilePath, GStoreMiddleProcessData middleData) {
|
||||||
logFilePath = spectrumPathProperties.getRootPath() + File.separator +
|
logFilePath = spectrumPathProperties.getRootPath() + spectrumPathProperties.getLogPath() + File.separator + logFilePath;
|
||||||
spectrumPathProperties.getLogPath() + File.separator + logFilePath;
|
|
||||||
String sampleId = middleData.getSample_id();
|
String sampleId = middleData.getSample_id();
|
||||||
MyLogFormatUtil myLogFormatUtil = new MyLogFormatUtil();
|
MyLogFormatUtil myLogFormatUtil = new MyLogFormatUtil();
|
||||||
List<String> writes = new LinkedList<>();
|
List<String> writes = new LinkedList<>();
|
||||||
|
|
|
@ -1062,7 +1062,7 @@ public class GammaServiceImpl extends AbstractLogOrReport implements IGammaServi
|
||||||
result.error500("The comparison file path does not exist");
|
result.error500("The comparison file path does not exist");
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
compareFilePath = StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + compareFilePath;
|
compareFilePath = ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + compareFilePath;
|
||||||
File compareFile = ftpUtil.downloadFile(compareFilePath, "betaGamma");
|
File compareFile = ftpUtil.downloadFile(compareFilePath, "betaGamma");
|
||||||
if (Objects.isNull(compareFile)) {
|
if (Objects.isNull(compareFile)) {
|
||||||
result.error500("The comparison file path does not exist");
|
result.error500("The comparison file path does not exist");
|
||||||
|
@ -1146,7 +1146,7 @@ public class GammaServiceImpl extends AbstractLogOrReport implements IGammaServi
|
||||||
result.error500("The comparison file path does not exist");
|
result.error500("The comparison file path does not exist");
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
stripFilePath = StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + stripFilePath;
|
stripFilePath = ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + stripFilePath;
|
||||||
File stripFile = ftpUtil.downloadFile(stripFilePath, "betaGamma");
|
File stripFile = ftpUtil.downloadFile(stripFilePath, "betaGamma");
|
||||||
if (Objects.isNull(stripFile)) {
|
if (Objects.isNull(stripFile)) {
|
||||||
result.error500("The comparison file path does not exist");
|
result.error500("The comparison file path does not exist");
|
||||||
|
|
|
@ -518,7 +518,7 @@ public class SpectrumAnalysisServiceImpl extends AbstractLogOrReport implements
|
||||||
}
|
}
|
||||||
//判断det信息是否存在
|
//判断det信息是否存在
|
||||||
if (Objects.nonNull(detBg)) {
|
if (Objects.nonNull(detBg)) {
|
||||||
betaDataFile.setDetFilePathName(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH +dbSpectrumFilePath.getDetBgFilePath());
|
betaDataFile.setDetFilePathName(ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH +dbSpectrumFilePath.getDetBgFilePath());
|
||||||
betaDataFile.setDetFileName(detFileName);
|
betaDataFile.setDetFileName(detFileName);
|
||||||
detTmp = ftpUtil.downloadFile(betaDataFile.getDetFilePathName(), "betaGamma");
|
detTmp = ftpUtil.downloadFile(betaDataFile.getDetFilePathName(), "betaGamma");
|
||||||
if (Objects.nonNull(detTmp)) {
|
if (Objects.nonNull(detTmp)) {
|
||||||
|
@ -532,7 +532,7 @@ public class SpectrumAnalysisServiceImpl extends AbstractLogOrReport implements
|
||||||
}
|
}
|
||||||
//判断qc信息是否存在
|
//判断qc信息是否存在
|
||||||
if (Objects.nonNull(qc)) {
|
if (Objects.nonNull(qc)) {
|
||||||
betaDataFile.setQcFilePathName(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH +dbQcFilePath);
|
betaDataFile.setQcFilePathName(ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH +dbQcFilePath);
|
||||||
betaDataFile.setQcFileName(qcFileName);
|
betaDataFile.setQcFileName(qcFileName);
|
||||||
qcTmp = ftpUtil.downloadFile(betaDataFile.getQcFilePathName(), "betaGamma");
|
qcTmp = ftpUtil.downloadFile(betaDataFile.getQcFilePathName(), "betaGamma");
|
||||||
if (Objects.nonNull(qcTmp)) {
|
if (Objects.nonNull(qcTmp)) {
|
||||||
|
@ -612,7 +612,7 @@ public class SpectrumAnalysisServiceImpl extends AbstractLogOrReport implements
|
||||||
//获取用户名
|
//获取用户名
|
||||||
String userName = JwtUtil.getUserNameByToken(request);
|
String userName = JwtUtil.getUserNameByToken(request);
|
||||||
//上传文件路径
|
//上传文件路径
|
||||||
String path = StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getUploadPath() + StringPool.SLASH + userName;
|
String path = ftpUtil.getFtpRootPath() + spectrumPathProperties.getUploadPath() + StringPool.SLASH + userName;
|
||||||
Map<String, Object> resultMap = new HashMap<>();
|
Map<String, Object> resultMap = new HashMap<>();
|
||||||
Map<String, Object> sampleMap = new HashMap<>();
|
Map<String, Object> sampleMap = new HashMap<>();
|
||||||
Map<String, Object> gasBgMap = new HashMap<>();
|
Map<String, Object> gasBgMap = new HashMap<>();
|
||||||
|
@ -892,7 +892,7 @@ public class SpectrumAnalysisServiceImpl extends AbstractLogOrReport implements
|
||||||
InputStream inputStream = null;
|
InputStream inputStream = null;
|
||||||
ServletOutputStream outputStream = null;
|
ServletOutputStream outputStream = null;
|
||||||
try {
|
try {
|
||||||
inputStream = ftpUtil.downloadFileStream(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + reportPath + ".txt");
|
inputStream = ftpUtil.downloadFileStream(ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + reportPath + ".txt");
|
||||||
if (Objects.nonNull(inputStream)){
|
if (Objects.nonNull(inputStream)){
|
||||||
outputStream = response.getOutputStream();
|
outputStream = response.getOutputStream();
|
||||||
byte[] buffer = new byte[1024];
|
byte[] buffer = new byte[1024];
|
||||||
|
@ -3736,7 +3736,7 @@ public class SpectrumAnalysisServiceImpl extends AbstractLogOrReport implements
|
||||||
InputStream inputStream = null;
|
InputStream inputStream = null;
|
||||||
ServletOutputStream outputStream = null;
|
ServletOutputStream outputStream = null;
|
||||||
try {
|
try {
|
||||||
inputStream = ftpUtil.downloadFileStream(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getLogPath() + StringPool.SLASH + logPath);
|
inputStream = ftpUtil.downloadFileStream(ftpUtil.getFtpRootPath() + spectrumPathProperties.getLogPath() + StringPool.SLASH + logPath);
|
||||||
if (Objects.nonNull(inputStream)){
|
if (Objects.nonNull(inputStream)){
|
||||||
outputStream = response.getOutputStream();
|
outputStream = response.getOutputStream();
|
||||||
byte[] buffer = new byte[1024];
|
byte[] buffer = new byte[1024];
|
||||||
|
@ -4042,19 +4042,19 @@ public class SpectrumAnalysisServiceImpl extends AbstractLogOrReport implements
|
||||||
try {
|
try {
|
||||||
if (StringUtils.isNotBlank(betaDataFile.getSampleTmpPath())) {
|
if (StringUtils.isNotBlank(betaDataFile.getSampleTmpPath())) {
|
||||||
File sampleTmp = new File(betaDataFile.getSampleTmpPath());
|
File sampleTmp = new File(betaDataFile.getSampleTmpPath());
|
||||||
ftpUtil.saveFile(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + sampleFilePathName.substring(0, sampleFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getSampleFileName(), new FileInputStream(sampleTmp));
|
ftpUtil.saveFile(ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + sampleFilePathName.substring(0, sampleFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getSampleFileName(), new FileInputStream(sampleTmp));
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotBlank(betaDataFile.getGasTmpPath())) {
|
if (StringUtils.isNotBlank(betaDataFile.getGasTmpPath())) {
|
||||||
File gasTmp = new File(betaDataFile.getGasTmpPath());
|
File gasTmp = new File(betaDataFile.getGasTmpPath());
|
||||||
ftpUtil.saveFile(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + gasFilePathName.substring(0, gasFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getGasFileName(), new FileInputStream(gasTmp));
|
ftpUtil.saveFile(ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + gasFilePathName.substring(0, gasFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getGasFileName(), new FileInputStream(gasTmp));
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotBlank(betaDataFile.getDetTmpPath())) {
|
if (StringUtils.isNotBlank(betaDataFile.getDetTmpPath())) {
|
||||||
File detTmp = new File(betaDataFile.getDetTmpPath());
|
File detTmp = new File(betaDataFile.getDetTmpPath());
|
||||||
ftpUtil.saveFile(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + detFilePathName.substring(0, detFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getDetFileName(), new FileInputStream(detTmp));
|
ftpUtil.saveFile(ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + detFilePathName.substring(0, detFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getDetFileName(), new FileInputStream(detTmp));
|
||||||
}
|
}
|
||||||
if (StringUtils.isNotBlank(betaDataFile.getQcTmpPath())) {
|
if (StringUtils.isNotBlank(betaDataFile.getQcTmpPath())) {
|
||||||
File qcTmp = new File(betaDataFile.getQcTmpPath());
|
File qcTmp = new File(betaDataFile.getQcTmpPath());
|
||||||
ftpUtil.saveFile(StringPool.SLASH + ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + qcFilePathName.substring(0, qcFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getQcFileName(), new FileInputStream(qcTmp));
|
ftpUtil.saveFile(ftpUtil.getFtpRootPath() + spectrumPathProperties.getSaveFilePath() + StringPool.SLASH + qcFilePathName.substring(0, qcFilePathName.lastIndexOf(StringPool.SLASH)), anlyseResultIn.getQcFileName(), new FileInputStream(qcTmp));
|
||||||
}
|
}
|
||||||
//分析成功后存储日志文件和报告文件
|
//分析成功后存储日志文件和报告文件
|
||||||
{
|
{
|
||||||
|
|
|
@ -63,8 +63,7 @@ public class SpectrumFileServiceImpl implements ISpectrumFileService {
|
||||||
ZipInputStream zipInputStream = null;
|
ZipInputStream zipInputStream = null;
|
||||||
String slash = SymbolConstant.SINGLE_SLASH;
|
String slash = SymbolConstant.SINGLE_SLASH;
|
||||||
|
|
||||||
String filePath = slash + spectrumPathProperties.getUploadPath()
|
String filePath = spectrumPathProperties.getUploadPath() + slash + username;
|
||||||
+ slash + username;
|
|
||||||
String tempFilePath = System.getProperty("java.io.tmpdir") + username + slash;
|
String tempFilePath = System.getProperty("java.io.tmpdir") + username + slash;
|
||||||
List<String> fileNames = new ArrayList<>();
|
List<String> fileNames = new ArrayList<>();
|
||||||
List<File> fileList = new ArrayList<>();
|
List<File> fileList = new ArrayList<>();
|
||||||
|
@ -106,9 +105,7 @@ public class SpectrumFileServiceImpl implements ISpectrumFileService {
|
||||||
if (!regexPattern.matcher(fileName).find() && !regexPattern1.matcher(fileName).find()) {
|
if (!regexPattern.matcher(fileName).find() && !regexPattern1.matcher(fileName).find()) {
|
||||||
EnergySpectrumStruct struct = phdFileUtil.analyzeFileSourceData(oneFile);
|
EnergySpectrumStruct struct = phdFileUtil.analyzeFileSourceData(oneFile);
|
||||||
String suffix = nameStandUtil.GetSuffix(struct.data_type, struct.spectrum_quantity, String.valueOf(struct.acquisition_live_time));
|
String suffix = nameStandUtil.GetSuffix(struct.data_type, struct.spectrum_quantity, String.valueOf(struct.acquisition_live_time));
|
||||||
String filePreffix = struct.detector_code + StringPool.DASH + struct.acquisition_start_date.replace(StringPool.SLASH, StringPool.EMPTY)+StringPool.UNDERSCORE
|
fileName = nameStandUtil.GetFileNameFromDateTime(struct.measurement_id, suffix);
|
||||||
+ struct.acquisition_start_time.substring(0, 5).replace(StringPool.COLON, StringPool.EMPTY);
|
|
||||||
fileName = filePreffix+suffix;
|
|
||||||
}
|
}
|
||||||
String fullFilePath = rootPath + filePath + slash + fileName;
|
String fullFilePath = rootPath + filePath + slash + fileName;
|
||||||
FileInputStream local = new FileInputStream(oneFile);
|
FileInputStream local = new FileInputStream(oneFile);
|
||||||
|
|
|
@ -15,11 +15,11 @@ db:
|
||||||
password:
|
password:
|
||||||
'0': ${MYSQL-PWD:123456}
|
'0': ${MYSQL-PWD:123456}
|
||||||
url:
|
url:
|
||||||
'0': jdbc:postgresql://${MYSQL-HOST:182.92.183.230}:${MYSQL-PORT:5432}/${MYSQL-DB:nacos}?tcpKeepAlive=true&reWriteBatchedInserts=true&ApplicationName=nacos_java
|
'0': jdbc:postgresql://${MYSQL-HOST:127.0.0.1}:${MYSQL-PORT:5432}/${MYSQL-DB:nacos}?tcpKeepAlive=true&reWriteBatchedInserts=true&ApplicationName=nacos_java
|
||||||
#'0': jdbc:postgresql://${MYSQL-HOST:172.21.50.118}:${MYSQL-PORT:5432}/${MYSQL-DB:nacos}?tcpKeepAlive=true&reWriteBatchedInserts=true&ApplicationName=nacos_java
|
#'0': jdbc:postgresql://${MYSQL-HOST:172.21.50.118}:${MYSQL-PORT:5432}/${MYSQL-DB:nacos}?tcpKeepAlive=true&reWriteBatchedInserts=true&ApplicationName=nacos_java
|
||||||
user:
|
user:
|
||||||
'0': ${MYSQL-USER:temp}
|
#'0': ${MYSQL-USER:temp}
|
||||||
#'0': ${MYSQL-USER:postgres}
|
'0': ${MYSQL-USER:postgres}
|
||||||
pool:
|
pool:
|
||||||
config:
|
config:
|
||||||
driver-class-name: org.postgresql.Driver
|
driver-class-name: org.postgresql.Driver
|
||||||
|
|
Loading…
Reference in New Issue
Block a user