|
|
|
@ -47,7 +47,7 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
sb.append("市\t县(市、区)\t行政区划代码\r\n");
|
|
|
|
|
Map<String, Object> startData = new HashMap<String, Object>();
|
|
|
|
|
for (PreDataInfo preDataInfo : systemInfoList) {
|
|
|
|
|
startData.put(preDataInfo.getAreaCode(), preDataInfo);
|
|
|
|
|
startData.put(preDataInfo.getAreaCode().toLowerCase(), preDataInfo);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
// 以地区为准--一个地区一个xml
|
|
|
|
@ -57,10 +57,10 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
sb.append("\t");
|
|
|
|
|
sb.append(preDataInfo.getDistrictName());
|
|
|
|
|
sb.append("\t");
|
|
|
|
|
sb.append(preDataInfo.getAreaCode());
|
|
|
|
|
sb.append(preDataInfo.getAreaCode().toLowerCase());
|
|
|
|
|
sb.append("\r\n");
|
|
|
|
|
}
|
|
|
|
|
FileOperateHelper.fileReWrite(path + Constant.cfgFileName,
|
|
|
|
|
FileOperateHelper.fileReWriteGBK(path + Constant.cfgFileName,
|
|
|
|
|
sb.toString());
|
|
|
|
|
log.info("makeCfg--end");
|
|
|
|
|
return 1;
|
|
|
|
@ -74,7 +74,7 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD);
|
|
|
|
|
Map<String, List<Object>> map = new HashMap<String, List<Object>>();
|
|
|
|
|
for (PreDataInfo preDataInfo : systemInfoList) {
|
|
|
|
|
putSystemByAreaCode(map, preDataInfo.getAreaCode(), preDataInfo);
|
|
|
|
|
putSystemByAreaCode(map, preDataInfo.getAreaCode().toLowerCase(), preDataInfo);
|
|
|
|
|
}
|
|
|
|
|
// 一个地区一个xml
|
|
|
|
|
for (String key : map.keySet()) {
|
|
|
|
@ -172,30 +172,30 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
case "userTableStatus":
|
|
|
|
|
standardPath = form.getUserTableStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
File file = new File(FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode());
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode()
|
|
|
|
|
+ File.separator + "UserTablespace_" + form.getAreaCode() + "_" + form.getSysCode() + ".sql";
|
|
|
|
|
standardPath = spath + File.separator + "UserTablespace_" + form.getAreaCode().toLowerCase() + "_" + form.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
lastPath = form.getUserTableStatusPathLast();
|
|
|
|
|
break;
|
|
|
|
|
case "ckIndicateStatus":
|
|
|
|
|
standardPath = form.getCkIndicateStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
File file = new File(FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode());
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode()
|
|
|
|
|
+ File.separator + "Checkout_Indicate_" + form.getAreaCode() + "_" + form.getSysCode() + ".sql";
|
|
|
|
|
standardPath = spath + File.separator + "Checkout_Indicate_" + form.getAreaCode().toLowerCase() + "_" + form.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
lastPath = form.getCkIndicateStatusPathLast();
|
|
|
|
|
break;
|
|
|
|
|
case "ckPayStatus":
|
|
|
|
|
standardPath = form.getCkPayStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
File file = new File(FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode());
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + form.getAreaCode()
|
|
|
|
|
+ File.separator + "Checkout_Pay_" + form.getAreaCode() + "_" + form.getSysCode() + ".sql";
|
|
|
|
|
standardPath = spath + File.separator + "Checkout_Pay_" + form.getAreaCode().toLowerCase() + "_" + form.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
lastPath = form.getCkPayStatusPathLast();
|
|
|
|
|
break;
|
|
|
|
@ -213,12 +213,12 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
break;
|
|
|
|
|
// 最新脚本 替换 标准脚本(即 以最新脚本为准 )(归档或审核-替换)
|
|
|
|
|
case "replace":
|
|
|
|
|
FileOperateHelper.fileReWrite(standardPath, fileReader(lastPath));
|
|
|
|
|
FileOperateHelper.fileReWriteGBK(standardPath, fileReader(lastPath));
|
|
|
|
|
fileDelete(lastPath);
|
|
|
|
|
break;
|
|
|
|
|
//新增 标准的脚本(注意 造出 对应的 standardPath standardPath不能 = null '')(上传)
|
|
|
|
|
case "add":
|
|
|
|
|
FileOperateHelper.fileReWrite(standardPath,content);
|
|
|
|
|
FileOperateHelper.fileReWriteGBK(standardPath,content);
|
|
|
|
|
break;
|
|
|
|
|
// (查看)
|
|
|
|
|
case "read":
|
|
|
|
@ -379,7 +379,7 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
private String getFilePath(String prefix, Map<String, String> map,
|
|
|
|
|
SqlFileInfoEntity myf, String affix) {
|
|
|
|
|
StringBuffer sb = new StringBuffer();
|
|
|
|
|
sb.append(prefix).append(myf.getAreaCode()).append("_")
|
|
|
|
|
sb.append(prefix).append(myf.getAreaCode().toLowerCase()).append("_")
|
|
|
|
|
.append(myf.getSysCode()).append(affix);
|
|
|
|
|
String fileName = sb.toString().toLowerCase();
|
|
|
|
|
if (!map.containsKey(fileName)) {
|
|
|
|
@ -439,7 +439,7 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
}
|
|
|
|
|
for (Integer integer : numArr) {
|
|
|
|
|
if (integer != 1) {
|
|
|
|
|
result = result & integer;
|
|
|
|
|
result = result | integer;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
@ -467,4 +467,113 @@ public class ScriptMakeService implements IScriptMakeService {
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, Object> totalOnholeSqlFile(List<SqlFileInfoEntity> forms) {
|
|
|
|
|
Map<String, Object> errMap = new HashMap<String, Object>();
|
|
|
|
|
List<String> errlist = new ArrayList<String>();
|
|
|
|
|
//待归档 status = 2
|
|
|
|
|
for (SqlFileInfoEntity sqlFile : forms) {
|
|
|
|
|
// 用户表空间脚本
|
|
|
|
|
if (sqlFile.getUserTableStatus() == 2) {
|
|
|
|
|
String standardPath = sqlFile.getUserTableStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = spath + File.separator + "UserTablespace_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
String lastPath = sqlFile.getUserTableStatusPathLast();
|
|
|
|
|
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
|
|
|
|
|
errlist.add(lastPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 支付脚本
|
|
|
|
|
if (sqlFile.getCkPayStatus() == 2) {
|
|
|
|
|
String standardPath = sqlFile.getCkPayStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = spath + File.separator + "Checkout_Pay_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
String lastPath = sqlFile.getCkPayStatusPathLast();
|
|
|
|
|
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
|
|
|
|
|
errlist.add(lastPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 可执行脚本
|
|
|
|
|
if (sqlFile.getCkIndicateStatus() == 2) {
|
|
|
|
|
String standardPath = sqlFile.getCkIndicateStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = spath + File.separator + "Checkout_Indicate_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
String lastPath = sqlFile.getCkIndicateStatusPathLast();
|
|
|
|
|
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
|
|
|
|
|
errlist.add(lastPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (errlist.size() > 0) {
|
|
|
|
|
errMap.put("nosqlfile", errlist);
|
|
|
|
|
}
|
|
|
|
|
return errMap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, Object> totalVerifySqlFile(List<SqlFileInfoEntity> forms) {
|
|
|
|
|
Map<String, Object> errMap = new HashMap<String, Object>();
|
|
|
|
|
List<String> errlist = new ArrayList<String>();
|
|
|
|
|
//待归档 status = 2
|
|
|
|
|
for (SqlFileInfoEntity sqlFile : forms) {
|
|
|
|
|
// 用户表空间脚本
|
|
|
|
|
if (sqlFile.getUserTableStatus() == 3) {
|
|
|
|
|
String standardPath = sqlFile.getUserTableStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = spath + File.separator + "UserTablespace_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
String lastPath = sqlFile.getUserTableStatusPathLast();
|
|
|
|
|
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
|
|
|
|
|
errlist.add(lastPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 支付脚本
|
|
|
|
|
if (sqlFile.getCkPayStatus() == 3) {
|
|
|
|
|
String standardPath = sqlFile.getCkPayStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = spath + File.separator + "Checkout_Pay_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
String lastPath = sqlFile.getCkPayStatusPathLast();
|
|
|
|
|
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
|
|
|
|
|
errlist.add(lastPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// 可执行脚本
|
|
|
|
|
if (sqlFile.getCkIndicateStatus() == 3) {
|
|
|
|
|
String standardPath = sqlFile.getCkIndicateStatusPathStandard();
|
|
|
|
|
if (null == standardPath || standardPath.isEmpty()) {
|
|
|
|
|
String spath = FileOperateHelper.addLastSeparator(Configs.SQL_SCRIPT_PATH_STANDARD) + sqlFile.getAreaCode().toLowerCase();
|
|
|
|
|
File file = new File(spath);
|
|
|
|
|
file.mkdir();
|
|
|
|
|
standardPath = spath + File.separator + "Checkout_Indicate_" + sqlFile.getAreaCode().toLowerCase() + "_" + sqlFile.getSysCode() + ".sql";
|
|
|
|
|
}
|
|
|
|
|
String lastPath = sqlFile.getCkIndicateStatusPathLast();
|
|
|
|
|
if(!FileOperateHelper.singleFileMove(lastPath, standardPath)){
|
|
|
|
|
errlist.add(lastPath);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
errMap.put("nosqlfile", errlist);
|
|
|
|
|
return errMap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|