|
|
|
@ -4,7 +4,6 @@ import java.io.File;
|
|
|
|
|
import java.io.FileOutputStream;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
import java.util.Collection;
|
|
|
|
|
import java.util.Date;
|
|
|
|
|
import java.util.HashMap;
|
|
|
|
|
import java.util.List;
|
|
|
|
@ -13,25 +12,22 @@ import java.util.Map;
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
|
|
|
|
|
|
import org.apache.log4j.Logger;
|
|
|
|
|
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
|
|
|
|
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
|
|
import org.springframework.core.io.ClassPathResource;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
|
|
|
|
import com.platform.utils.BeanCopy;
|
|
|
|
|
import com.platform.utils.Configs;
|
|
|
|
|
import com.platform.utils.Constant;
|
|
|
|
|
import com.platform.utils.DateForm;
|
|
|
|
|
import com.platform.controller.ExcelController;
|
|
|
|
|
import com.platform.dao.IRegionalismCodeDao;
|
|
|
|
|
import com.platform.dao.ISystemCodeDao;
|
|
|
|
|
import com.platform.dao.PreDataInfoDao;
|
|
|
|
|
import com.platform.dao.VolumeDao;
|
|
|
|
|
import com.platform.entities.PagerOptions;
|
|
|
|
|
import com.platform.entities.PreDataInfo;
|
|
|
|
|
import com.platform.entities.RegionalismEntity;
|
|
|
|
|
import com.platform.entities.SystemEntity;
|
|
|
|
|
import com.platform.service.IPreDataInfoService;
|
|
|
|
|
import com.platform.utils.BeanCopy;
|
|
|
|
|
import com.platform.utils.Configs;
|
|
|
|
|
import com.platform.utils.Constant;
|
|
|
|
|
import com.platform.utils.DateForm;
|
|
|
|
|
import com.platform.utils.excelUtils.ExcelOperation;
|
|
|
|
|
|
|
|
|
|
@Service(value = "preDataInfoService")
|
|
|
|
@ -51,12 +47,23 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
@Override
|
|
|
|
|
public List<PreDataInfo> findAll() throws Exception {
|
|
|
|
|
List<PreDataInfo> result = preDataInfoDao.findAll();
|
|
|
|
|
Map<String, String> sqlFilePathsStandard = new HashMap<String, String>();
|
|
|
|
|
sqlFilePathsStandard = getAllFile(sqlFilePathsStandard,
|
|
|
|
|
Configs.SQL_SCRIPT_PATH_STANDARD);
|
|
|
|
|
setScript(result, sqlFilePathsStandard);
|
|
|
|
|
for (PreDataInfo preDataInfo : result) {
|
|
|
|
|
preDataInfo.setWorkRange(new ArrayList<String>());
|
|
|
|
|
preDataInfo.setSqlList(new ArrayList<String>());
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<PreDataInfo> findByParam(PagerOptions op) {
|
|
|
|
|
List<PreDataInfo> result = preDataInfoDao.getLimitedDataInfoEntities(op);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, List> importExcel(List<String> paths) throws Exception {
|
|
|
|
|
Map<String, List> errmap = new HashMap<String, List>();
|
|
|
|
@ -97,8 +104,9 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
}
|
|
|
|
|
//Excel导入
|
|
|
|
|
try {
|
|
|
|
|
PreDataInfo pre = new PreDataInfo();
|
|
|
|
|
//excel数据 --> java bean
|
|
|
|
|
List<PreDataInfo> subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, PreDataInfo.class, "id", "workRange","sysCode","updateTime");
|
|
|
|
|
List<PreDataInfo> subPreData = ExcelOperation.readExcel4Update(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, pre, "id", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList");
|
|
|
|
|
if (null != subPreData && subPreData.size() > 0) {
|
|
|
|
|
//是否是 同一个县区的 系统--是则 加入
|
|
|
|
|
boolean isSameArea = true;
|
|
|
|
@ -118,11 +126,11 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
| IllegalAccessException | InstantiationException e) {
|
|
|
|
|
e.printStackTrace();
|
|
|
|
|
}
|
|
|
|
|
finally{
|
|
|
|
|
if (null != workbook) {
|
|
|
|
|
workbook.close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// finally{
|
|
|
|
|
// if (null != workbook) {
|
|
|
|
|
// workbook.close();
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (errFile.size() > 0) {
|
|
|
|
@ -164,14 +172,14 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
if (sysNames.size() > 0) {
|
|
|
|
|
listSystem = systemCodeDao.findByName(sysNames);
|
|
|
|
|
}
|
|
|
|
|
Map<String, Object> syscodeMap = new HashMap<String, Object>();
|
|
|
|
|
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
|
|
|
|
|
for (SystemEntity systemEntity : listSystem) {
|
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), String.valueOf(systemEntity.getCode()));
|
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
|
|
|
|
|
}
|
|
|
|
|
for ( PreDataInfo systemEntity : list4AddSystem) {
|
|
|
|
|
PreDataInfo systemFull = new PreDataInfo();
|
|
|
|
|
BeanCopy.copyBean(systemEntity, systemFull);
|
|
|
|
|
systemFull.setSysCode((int) syscodeMap.get(systemFull.getSysName()));
|
|
|
|
|
systemFull.setSysCode(syscodeMap.get(systemFull.getSysName()));
|
|
|
|
|
systemFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
|
|
|
|
|
all2Insert.add(systemFull);
|
|
|
|
|
}
|
|
|
|
@ -196,14 +204,14 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
if (sysNamesArea.size() > 0) {
|
|
|
|
|
listSystem = systemCodeDao.findByName(sysNamesArea);
|
|
|
|
|
}
|
|
|
|
|
Map<String, Object> syscodeMap = new HashMap<String, Object>();
|
|
|
|
|
Map<String, Integer> syscodeMap = new HashMap<String, Integer>();
|
|
|
|
|
for (SystemEntity systemEntity : listSystem) {
|
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), String.valueOf(systemEntity.getCode()));
|
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
|
|
|
|
|
}
|
|
|
|
|
for (PreDataInfo preDataInfo : list4AddArea) {
|
|
|
|
|
PreDataInfo areaFull = new PreDataInfo();
|
|
|
|
|
BeanCopy.copyBean(preDataInfo, areaFull);
|
|
|
|
|
areaFull.setSysCode((int) syscodeMap.get(areaFull.getSysName()));
|
|
|
|
|
areaFull.setSysCode(syscodeMap.get(areaFull.getSysName()));
|
|
|
|
|
areaFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
|
|
|
|
|
allAreaInsert.add(areaFull);
|
|
|
|
|
}
|
|
|
|
@ -226,12 +234,13 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
listSystem4Update = systemCodeDao.findByName(sysNamesArea);
|
|
|
|
|
}
|
|
|
|
|
for (SystemEntity systemEntity : listSystem4Update) {
|
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), String.valueOf(systemEntity.getCode()));
|
|
|
|
|
syscodeMap.put(systemEntity.getSystemName(), systemEntity.getCode());
|
|
|
|
|
}
|
|
|
|
|
for (PreDataInfo preUpdate : list4Update) {
|
|
|
|
|
PreDataInfo UpdateFull = new PreDataInfo();
|
|
|
|
|
BeanCopy.copyBean(preUpdate, UpdateFull);
|
|
|
|
|
UpdateFull.setSysCode((int) syscodeMap.get(UpdateFull.getSysName()));
|
|
|
|
|
|
|
|
|
|
UpdateFull.setSysCode(syscodeMap.get(UpdateFull.getSysName()));
|
|
|
|
|
UpdateFull.setUpdateTime(DateForm.date2StringBysecond(new Date()));
|
|
|
|
|
allUpdate.add(UpdateFull);
|
|
|
|
|
}
|
|
|
|
@ -242,6 +251,45 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
return errmap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, List> exportExcel(String path) throws Exception {
|
|
|
|
|
Map<String, List> map = new HashMap<String, List>();
|
|
|
|
|
List<String> errList = new ArrayList<String>();
|
|
|
|
|
List<PreDataInfo> list = findAll();
|
|
|
|
|
// InputStreamReader in= new InputStreamReader(Resource.class.getResourceAsStream(templateFilePath), "UTF-8");
|
|
|
|
|
ClassPathResource res = new ClassPathResource(Constant.SYSTEM_INFO_EXCEL_TEMPLATE_FIEL_PATH);
|
|
|
|
|
//此处 耗时太久:(原因:excel 2007 以后采用的方式不同造成的建议升级 到 poi 3.15以上)
|
|
|
|
|
XSSFWorkbook workbook = null;
|
|
|
|
|
XSSFWorkbook result = null;
|
|
|
|
|
try {
|
|
|
|
|
workbook = new XSSFWorkbook(res.getInputStream());
|
|
|
|
|
result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, 25, list, "id", "workRange","sysCode","updateTime","userTablespaceStatus", "checkoutIndicateStatus", "checkoutPayStatus", "userTablespacePath", "checkoutIndicatePath", "checkoutPayPath", "sqlList");
|
|
|
|
|
} catch (IllegalArgumentException
|
|
|
|
|
| IllegalAccessException | IOException e) {
|
|
|
|
|
errList.add(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
//不能进行close,
|
|
|
|
|
// workbook.close();
|
|
|
|
|
FileOutputStream fileOut = null;
|
|
|
|
|
try {
|
|
|
|
|
File f = new File(path);
|
|
|
|
|
f.createNewFile();
|
|
|
|
|
fileOut = new FileOutputStream(f);
|
|
|
|
|
result.write(fileOut);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
errList.add(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
finally{
|
|
|
|
|
if (null != fileOut) {
|
|
|
|
|
fileOut.close();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (errList.size() > 0) {
|
|
|
|
|
map.put("err", errList);
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** 给system_info增加新系统
|
|
|
|
|
* @param list4AddSystem
|
|
|
|
|
* @return
|
|
|
|
@ -310,52 +358,90 @@ public class PreDataInfoServiceImpl implements IPreDataInfoService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public List<PreDataInfo> findByParam(PagerOptions op) {
|
|
|
|
|
List<PreDataInfo> result = preDataInfoDao.getLimitedDataInfoEntities(op);
|
|
|
|
|
return result;
|
|
|
|
|
/**
|
|
|
|
|
* 遍历文件
|
|
|
|
|
*
|
|
|
|
|
* @param ps must not null
|
|
|
|
|
* @param path
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private Map<String, String> getAllFile(Map<String, String> ps, String path) {
|
|
|
|
|
File f = new File(path);
|
|
|
|
|
String name = f.getName();
|
|
|
|
|
// 如果是 sql文件
|
|
|
|
|
if (name.endsWith(".sql") || name.endsWith(".SQL"))
|
|
|
|
|
ps.put(name.toLowerCase(), f.getAbsolutePath());
|
|
|
|
|
if (f.exists()) {
|
|
|
|
|
String[] subpaths = f.list();
|
|
|
|
|
if (null != subpaths) {
|
|
|
|
|
for (String tmppath : subpaths) {
|
|
|
|
|
getAllFile(ps, f.getAbsolutePath() + "/" + tmppath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, List> exportExcel(String path) throws Exception {
|
|
|
|
|
Map<String, List> map = new HashMap<String, List>();
|
|
|
|
|
List<String> errList = new ArrayList<String>();
|
|
|
|
|
List<PreDataInfo> list = findAll();
|
|
|
|
|
// InputStreamReader in= new InputStreamReader(Resource.class.getResourceAsStream(templateFilePath), "UTF-8");
|
|
|
|
|
ClassPathResource res = new ClassPathResource(Constant.SYSTEM_INFO_EXCEL_TEMPLATE_FIEL_PATH);
|
|
|
|
|
//此处 耗时太久:(原因:excel 2007 以后采用的方式不同造成的建议升级 到 poi 3.15以上)
|
|
|
|
|
XSSFWorkbook workbook = null;
|
|
|
|
|
XSSFWorkbook result = null;
|
|
|
|
|
try {
|
|
|
|
|
workbook = new XSSFWorkbook(res.getInputStream());
|
|
|
|
|
result = ExcelOperation.writeExcelTemplate(workbook, Constant.EXCEL_TEMPLATE_INIT_ROW, 0, 25, list, "id", "workRange","sysCode","updateTime");
|
|
|
|
|
} catch (IllegalArgumentException
|
|
|
|
|
| IllegalAccessException | IOException e) {
|
|
|
|
|
errList.add(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
finally{
|
|
|
|
|
if (null != workbook) {
|
|
|
|
|
workbook.close();
|
|
|
|
|
/** 设置脚本信息
|
|
|
|
|
* @param systemDataInfo
|
|
|
|
|
* @param sqlFilePathsStandard
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private List<PreDataInfo> setScript(List<PreDataInfo> systemDataInfo,
|
|
|
|
|
Map<String, String> sqlFilePathsStandard) {
|
|
|
|
|
List<PreDataInfo> fileEntitys = new ArrayList<PreDataInfo>();
|
|
|
|
|
for (PreDataInfo preDataInfo : systemDataInfo) {
|
|
|
|
|
// 归档表空间脚本的位置-
|
|
|
|
|
String TablePathStandard = getFilePath("UserTablespace_",
|
|
|
|
|
sqlFilePathsStandard, preDataInfo, ".sql");
|
|
|
|
|
if (null != TablePathStandard && !"".equals(TablePathStandard)) {
|
|
|
|
|
preDataInfo.setUserTablespaceStatus("是");
|
|
|
|
|
preDataInfo.setUserTablespacePath("UserTablespace_"+preDataInfo.getAreaCode()+"_" + preDataInfo.getSysCode()+ ".sql");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
FileOutputStream fileOut = null;
|
|
|
|
|
try {
|
|
|
|
|
File f = new File(path);
|
|
|
|
|
f.createNewFile();
|
|
|
|
|
fileOut = new FileOutputStream(f);
|
|
|
|
|
result.write(fileOut);
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
errList.add(e.getMessage());
|
|
|
|
|
}
|
|
|
|
|
finally{
|
|
|
|
|
if (null != fileOut) {
|
|
|
|
|
fileOut.close();
|
|
|
|
|
// 归档预算 脚本的位置-
|
|
|
|
|
String indicatePathStandard = getFilePath("Checkout_Indicate_",
|
|
|
|
|
sqlFilePathsStandard, preDataInfo, ".sql");
|
|
|
|
|
if (null != indicatePathStandard && !"".equals(indicatePathStandard)) {
|
|
|
|
|
preDataInfo.setCheckoutIndicateStatus("是");
|
|
|
|
|
preDataInfo.setCheckoutIndicatePath("Checkout_Indicate_"+preDataInfo.getAreaCode()+"_" + preDataInfo.getSysCode()+ ".sql");
|
|
|
|
|
}
|
|
|
|
|
// 归档表空间脚本的位置-
|
|
|
|
|
String payPathStandard = getFilePath("Checkout_Pay_",
|
|
|
|
|
sqlFilePathsStandard, preDataInfo, ".sql");
|
|
|
|
|
if (null != payPathStandard && !"".equals(payPathStandard)) {
|
|
|
|
|
preDataInfo.setCheckoutIndicateStatus("是");
|
|
|
|
|
preDataInfo.setCheckoutIndicatePath("Checkout_Pay_"+preDataInfo.getAreaCode()+"_" + preDataInfo.getSysCode()+ ".sql");
|
|
|
|
|
}
|
|
|
|
|
// 设置 状态
|
|
|
|
|
if (!"ORACLE".equals(preDataInfo.getDataBaseType().toUpperCase())) {
|
|
|
|
|
preDataInfo.setUserTablespaceStatus("-");
|
|
|
|
|
}
|
|
|
|
|
fileEntitys.add(preDataInfo);
|
|
|
|
|
}
|
|
|
|
|
if (errList.size() > 0) {
|
|
|
|
|
map.put("err", errList);
|
|
|
|
|
return fileEntitys;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 查找文件
|
|
|
|
|
*
|
|
|
|
|
* @param prefix
|
|
|
|
|
* @param map
|
|
|
|
|
* @param myf
|
|
|
|
|
* @param affix
|
|
|
|
|
* @return
|
|
|
|
|
*/
|
|
|
|
|
private String getFilePath(String prefix, Map<String, String> map,
|
|
|
|
|
PreDataInfo pre, String affix) {
|
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
|
sb.append(prefix).append(pre.getAreaCode()).append("_")
|
|
|
|
|
.append(pre.getSysCode()).append(affix);
|
|
|
|
|
String fileName = sb.toString().toLowerCase();
|
|
|
|
|
if (!map.containsKey(fileName)) {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
return map;
|
|
|
|
|
// 地区字母 小写 -- 文件属性小写
|
|
|
|
|
String pathStandard = map.get(fileName);
|
|
|
|
|
return pathStandard;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|