|
@@ -2,13 +2,22 @@ package com.persagy.proxy.adm.controller;
|
|
|
|
|
|
import java.io.File;
|
|
|
import java.io.FileNotFoundException;
|
|
|
+import java.io.FileOutputStream;
|
|
|
+import java.io.IOException;
|
|
|
import java.net.URLEncoder;
|
|
|
import java.nio.charset.StandardCharsets;
|
|
|
+import java.util.ArrayList;
|
|
|
+import java.util.HashSet;
|
|
|
import java.util.List;
|
|
|
+import java.util.Set;
|
|
|
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
|
|
|
+import org.apache.poi.xssf.usermodel.XSSFCell;
|
|
|
+import org.apache.poi.xssf.usermodel.XSSFRow;
|
|
|
+import org.apache.poi.xssf.usermodel.XSSFSheet;
|
|
|
+import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.util.ResourceUtils;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -18,9 +27,10 @@ import org.springframework.web.multipart.MultipartFile;
|
|
|
|
|
|
import com.alibaba.excel.EasyExcel;
|
|
|
import com.alibaba.excel.ExcelWriter;
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.fasterxml.jackson.databind.node.ObjectNode;
|
|
|
import com.google.common.collect.Lists;
|
|
|
import com.persagy.proxy.adm.constant.AdmCommonConstant;
|
|
|
-import com.persagy.proxy.adm.handler.RelationImportExcelDataHandler;
|
|
|
import com.persagy.proxy.adm.model.AdmRelationObject;
|
|
|
import com.persagy.proxy.adm.request.AdmResponse;
|
|
|
import com.persagy.proxy.adm.service.IRelationReportService;
|
|
@@ -232,7 +242,7 @@ public class RelationReportController {
|
|
|
/************************************************** 文件上传 ***********************************************/
|
|
|
|
|
|
/**
|
|
|
- * 文件导入
|
|
|
+ * 文件导入,这里由于需要回写文件,且存储到本地,采用原始POI文件解析、上传、回写、存储
|
|
|
*
|
|
|
* @param relType
|
|
|
* @param code
|
|
@@ -240,24 +250,99 @@ public class RelationReportController {
|
|
|
* @param request
|
|
|
* @param response
|
|
|
*/
|
|
|
+ @SuppressWarnings("resource")
|
|
|
@RequestMapping("/graphic/import")
|
|
|
public AdmResponse importFile(@RequestParam("file") MultipartFile file, @RequestParam String relType, @RequestParam(required = false) String zoneType,
|
|
|
HttpServletRequest request, HttpServletResponse response) {
|
|
|
String failure = null;
|
|
|
+ FileOutputStream fileOutputStream = null;
|
|
|
try {
|
|
|
if (file == null) {
|
|
|
return AdmResponse.failure("未选择文件");
|
|
|
}
|
|
|
+
|
|
|
+ int failurNum = 0;
|
|
|
+ int successNum = 0;
|
|
|
+ String graphId = null;
|
|
|
+ // 临时存储行号
|
|
|
+ Set<Integer> rowNums = new HashSet<Integer>();
|
|
|
+ // 批量更新数据
|
|
|
+ List<ObjectNode> relationObjects = new ArrayList<ObjectNode>();
|
|
|
+
|
|
|
String groupCode = request.getHeader(AdmCommonConstant.GROUP_CODE_HEADER);
|
|
|
String projectId = request.getHeader(AdmCommonConstant.PROJECT_ID_HEADER);
|
|
|
|
|
|
- RelationImportExcelDataHandler excelDataHandler = new RelationImportExcelDataHandler(groupCode, projectId, relType, queryRelationObjectContext);
|
|
|
- EasyExcel.read(file.getInputStream(), AdmRelationObject.class, excelDataHandler).sheet(EXPORT_SHEET_NAME).doRead();
|
|
|
+ XSSFWorkbook workbook = new XSSFWorkbook(file.getInputStream());
|
|
|
+ XSSFSheet sheet = workbook.getSheet("关系维护");
|
|
|
+ // 获取识别码的属性
|
|
|
+ String code = sheet.getRow(2).getCell(1).toString();
|
|
|
+ int lastRowNum = sheet.getLastRowNum();
|
|
|
+ for (int i = 4; i < lastRowNum; i++) {
|
|
|
+ XSSFRow xssfRow = sheet.getRow(i);
|
|
|
+ if (xssfRow == null) {
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ // 封装cell数据
|
|
|
+ XSSFCell masterCodeCell = xssfRow.getCell(0);
|
|
|
+ XSSFCell slaveCodeCell = xssfRow.getCell(8);
|
|
|
+ XSSFCell masterIdCell = xssfRow.getCell(3);
|
|
|
+ XSSFCell slaveIdCell = xssfRow.getCell(11);
|
|
|
+
|
|
|
+ AdmRelationObject relationObject = new AdmRelationObject();
|
|
|
+ relationObject.setMasterCode(masterCodeCell == null ? null : masterCodeCell.getStringCellValue());
|
|
|
+ relationObject.setSlaveCode(slaveCodeCell == null ? null : slaveCodeCell.getStringCellValue());
|
|
|
+ relationObject.setMasterId(masterIdCell == null ? null : masterIdCell.getStringCellValue());
|
|
|
+ relationObject.setSlaveId(slaveIdCell == null ? null : slaveIdCell.getStringCellValue());
|
|
|
+
|
|
|
+ // 校验数据
|
|
|
+ Object result = this.queryRelationObjectContext.checkRelationObject(relationObject, groupCode, projectId, relType, code);
|
|
|
+ if (result instanceof String) {
|
|
|
+ failurNum++;
|
|
|
+ xssfRow.createCell(16).setCellValue((String)result);
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ ObjectNode relation = (ObjectNode) result;
|
|
|
+ graphId = relation.get("graphId") == null ? graphId : relation.get("graphId").asText();
|
|
|
+
|
|
|
+ // 每一千条数据,批量新增一次
|
|
|
+ rowNums.add(i);
|
|
|
+ relationObjects.add(relation);
|
|
|
+ if (relationObjects.size() >= 1000) {
|
|
|
+ boolean objects = this.queryRelationObjectContext.saveRelationObjects(relationObjects, groupCode, projectId, relType);
|
|
|
+ if (objects) {
|
|
|
+ successNum += relationObjects.size();
|
|
|
+ } else {
|
|
|
+ failurNum += relationObjects.size();
|
|
|
+ for (int rowNum : rowNums) {
|
|
|
+ sheet.getRow(rowNum).createCell(16).setCellValue("调用中台,存储失败");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ rowNums.clear();
|
|
|
+ relationObjects.clear();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ try {
|
|
|
+ // 调用中台存储完成之后,此文件存储至本地
|
|
|
+ String uploadFile = projectId + AdmCommonConstant.LINE_THROUGH + relType + AdmCommonConstant.EXCEL_SUFFIX_XLSX;
|
|
|
+ File templateFile = this.createTemplateFile(uploadFile);
|
|
|
+ fileOutputStream = new FileOutputStream(templateFile);
|
|
|
+ workbook.write(fileOutputStream);
|
|
|
+ } catch (Exception e) {
|
|
|
+ log.error("文件存储失败", e);
|
|
|
+ }
|
|
|
|
|
|
- return AdmResponse.success(Lists.newArrayList(excelDataHandler.afterWriteObject()));
|
|
|
+ return AdmResponse.success(Lists.newArrayList(this.getImportResult(graphId, successNum, failurNum)));
|
|
|
} catch (Exception e) {
|
|
|
log.error("文件导入失败", e);
|
|
|
failure = e.getMessage();
|
|
|
+ } finally {
|
|
|
+ if (fileOutputStream != null) {
|
|
|
+ try {
|
|
|
+ fileOutputStream.flush();
|
|
|
+ fileOutputStream.close();
|
|
|
+ } catch (IOException e) {}
|
|
|
+ }
|
|
|
}
|
|
|
return AdmResponse.failure(failure);
|
|
|
}
|
|
@@ -265,7 +350,7 @@ public class RelationReportController {
|
|
|
|
|
|
|
|
|
|
|
|
- /************************************************** 本地文件获取 ***********************************************/
|
|
|
+ /************************************************** 本地文件获取、创建 ***********************************************/
|
|
|
|
|
|
|
|
|
/**
|
|
@@ -310,5 +395,42 @@ public class RelationReportController {
|
|
|
}
|
|
|
return file;
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 创建本地文件,这里不再在classpath下创建
|
|
|
+ *
|
|
|
+ * @param uploadFile 文件名称,带后缀
|
|
|
+ * @throws IOException
|
|
|
+ */
|
|
|
+ private File createTemplateFile(String uploadFile) throws IOException {
|
|
|
+ String path = AdmCommonConstant.SERVER_ROOT_PATH + "/template/" + uploadFile;
|
|
|
+ File file = new File(path);
|
|
|
+ if (file == null || !file.exists()) {
|
|
|
+ file.createNewFile();
|
|
|
+ }
|
|
|
+ return file;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取导入结果
|
|
|
+ *
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private JSONObject getImportResult(String graphId, int successNum, int failureNum) {
|
|
|
+ JSONObject result = new JSONObject();
|
|
|
+ result.put("relationType", graphId);
|
|
|
+ result.put("successCount", successNum);
|
|
|
+ result.put("failCount", failureNum);
|
|
|
+ String state = null;
|
|
|
+ if (successNum > 0 && failureNum > 0) {
|
|
|
+ state = "1";
|
|
|
+ } else if (successNum > 0 && failureNum == 0) {
|
|
|
+ state = "0";
|
|
|
+ } else {
|
|
|
+ state = "2";
|
|
|
+ }
|
|
|
+ result.put("state", state);
|
|
|
+ return result;
|
|
|
+ }
|
|
|
|
|
|
}
|