From ed8c7a5effd0d423ce1118b680ecdca6fe732609 Mon Sep 17 00:00:00 2001 From: 13693261870 <252740454@qq.com> Date: 星期三, 02 七月 2025 16:43:13 +0800 Subject: [PATCH] Merge branch 'master' of http://192.168.11.205:9000/r/P2022036_Service --- src/main/java/com/lf/server/service/show/DataLibService.java | 458 ++++++++++++++++++++++----------------------------------- 1 files changed, 177 insertions(+), 281 deletions(-) diff --git a/src/main/java/com/lf/server/service/show/DataLibService.java b/src/main/java/com/lf/server/service/show/DataLibService.java index 9e7b76c..5abe6ac 100644 --- a/src/main/java/com/lf/server/service/show/DataLibService.java +++ b/src/main/java/com/lf/server/service/show/DataLibService.java @@ -1,8 +1,8 @@ package com.lf.server.service.show; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; -import com.lf.server.entity.all.BaseEntity; import com.lf.server.entity.ctrl.DownloadReqEntity; +import com.lf.server.entity.ctrl.KeyValueEntity; import com.lf.server.entity.data.DownloadEntity; import com.lf.server.entity.sys.AttachEntity; import com.lf.server.entity.sys.UserEntity; @@ -11,13 +11,14 @@ import com.lf.server.mapper.all.GeomBaseMapper; import com.lf.server.mapper.data.DownloadMapper; import com.lf.server.service.all.BaseQueryService; -import com.lf.server.service.data.DownloadService; +import com.lf.server.service.data.MetaService; import net.lingala.zip4j.ZipFile; import net.lingala.zip4j.model.ZipParameters; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import org.springframework.util.StringUtils; import java.io.File; import java.util.*; @@ -27,15 +28,16 @@ * @author WWW */ @Service +@SuppressWarnings("ALL") public class DataLibService { @Autowired PathHelper pathHelper; @Autowired - DownloadMapper downloadMapper; + MetaService metaService; @Autowired - DownloadService downloadService; + DownloadMapper downloadMapper; @Autowired BaseQueryService baseQueryService; @@ -59,23 +61,17 @@ public List<String> selectDbOverflowDep4Wkt(UserEntity ue, DownloadReqEntity dr) { List<String> rs = new ArrayList<>(); for (String entity : dr.getEntities()) { - try { - GeomBaseMapper<?> baseMapper = ClassHelper.getGeoBaseMapper(entity); - if (null == baseMapper) { - continue; - } - - QueryWrapper wrapper = getWrapper4DbOverflow(ue, dr); - Integer srid = baseQueryService.getSrid(baseMapper); - if (null != srid) { - wrapper.apply(String.format("ST_Intersects(ST_PolygonFromText('%s', %d), geom)", dr.getWkt(), srid)); - } - - List<String> ids = baseMapper.selectObjs(wrapper); - addDepCodes(rs, ids); - } catch (Exception ex) { - log.error(ex.getMessage(), ex); + GeomBaseMapper<?> baseMapper = ClassHelper.getGeoBaseMapper(entity); + if (null == baseMapper) { + continue; } + + QueryWrapper wrapper = getWrapper4DbOverflow(ue, dr); + Integer srid = baseQueryService.getSrid(baseMapper); + wrapper.apply(String.format("ST_Intersects(ST_PolygonFromText('%s', %d), geom)", dr.getWkt(), srid)); + + List<String> ids = baseMapper.selectObjs(wrapper); + addDepCodes(rs, ids); } return rs; @@ -86,19 +82,14 @@ */ public List<String> selectDbOverflowDep4Prop(UserEntity ue, DownloadReqEntity dr) { List<String> rs = new ArrayList<>(); - try { - BasicMapper<?> baseMapper = ClassHelper.getBasicMapper(dr.getEntities().get(0)); - if (null == baseMapper) { - return rs; - } - - QueryWrapper wrapper = getWrapper4DbOverflow(ue, dr); - - List<String> ids = baseMapper.selectObjs(wrapper); - addDepCodes(rs, ids); - } catch (Exception ex) { - log.error(ex.getMessage(), ex); + BasicMapper<?> baseMapper = ClassHelper.getBasicMapper(dr.getEntities().get(0)); + if (null == baseMapper) { + return rs; } + + QueryWrapper wrapper = getWrapper4DbOverflow(ue, dr); + List<String> ids = baseMapper.selectObjs(wrapper); + addDepCodes(rs, ids); return rs; } @@ -138,6 +129,9 @@ } for (String id : ids) { + if (StringHelper.isEmpty(id)) { + continue; + } if (!rs.contains(id)) { rs.add(id); } @@ -147,42 +141,55 @@ /** * 璇锋眰DB鏁版嵁涓嬭浇 */ - public String downloadDbReq(UserEntity ue, DownloadReqEntity dr) { - Map<String, List<?>> map = queryData(dr); - if (map.size() == 0) { + public String downloadDbReq(UserEntity ue, DownloadReqEntity dr) throws Exception { + Map<String, List<?>> dataMap = new HashMap<>(2); + Map<String, List<AttachEntity>> annexMap = new HashMap<>(2); + queryData(dr, dataMap, annexMap); + if (dataMap.size() == 0) { return null; } - return null; + String tempName = StringHelper.YMDHMS2_FORMAT.format(new Date()); + String tempPath = pathHelper.getTempPath(tempName); + String gdbPath = tempPath + File.separator + "tabs.gdb"; + + File gdbFile = new File(gdbPath); + if (gdbFile.exists() && gdbFile.isDirectory()) { + FileHelper.deleteDir(gdbPath); + } + GdbHelper.createGdb(gdbPath, dataMap); + + String zipFile = pathHelper.getDownloadFullPath() + File.separator + tempName + ".gdb.zip"; + ZipFile zip = Zip4jHelper.createZipFile(zipFile, dr.getPwd()); + ZipParameters params = Zip4jHelper.getZipParams(true); + zip.addFolder(new File(gdbPath), params); + // zip.addFolder(new File(annexPath), params) + metaService.addAnnex(zip, params, annexMap); + + String dbPwd = Md5Helper.reverse(Md5Helper.generate(dr.getPwd())); + DownloadEntity de = getDownloadEntity(ue, zipFile, dbPwd); + int rows = downloadMapper.insert(de); + + return rows > 0 ? de.getGuid() : null; } /** - * 鏌ヨ鏁版嵁 + * 鏌ヨ鏁版嵁+闄勪欢 */ - private Map<String, List<?>> queryData(DownloadReqEntity dr) { - Map<String, List<?>> map = new HashMap<>(3); - for (String enity : dr.getEntities()) { + private void queryData(DownloadReqEntity dr, Map<String, List<?>> dataMap, Map<String, List<AttachEntity>> annexMap) { + for (String entity : dr.getEntities()) { try { - BasicMapper baseMapper = ClassHelper.getBasicMapper(enity); + BasicMapper baseMapper = ClassHelper.getBasicMapper(entity); if (null == baseMapper) { continue; } QueryWrapper wrapper = createQueryWrapper(baseMapper, dr); - List<?> list = baseMapper.selectList(wrapper); - if (null == list || list.size() == 0) { - continue; - } - - if (!map.containsKey(enity)) { - map.put(enity, list); - } + metaService.addData(entity, baseMapper, wrapper, dataMap, annexMap); } catch (Exception ex) { log.error(ex.getMessage(), ex); } } - - return map; } /** @@ -196,12 +203,13 @@ wrapper.apply(dirs); } if (!StringHelper.isEmpty(dr.getDepcode())) { + // wrapper.apply(String.format("depid like '%s'", StringHelper.getRightLike(dr.getDepcode()))) wrapper.likeRight("depid", dr.getDepcode()); } - if (baseMapper instanceof GeomBaseMapper && !StringHelper.isEmpty(dr.getWkt())) { + if (baseMapper instanceof GeomBaseMapper) { wrapper.select("ST_AsText(geom) as geom, *"); - Integer srid = baseQueryService.getSrid((GeomBaseMapper) baseMapper); - if (null != srid) { + if (!StringHelper.isEmpty(dr.getWkt())) { + Integer srid = baseQueryService.getSrid((GeomBaseMapper) baseMapper); wrapper.apply(String.format("ST_Intersects(ST_PolygonFromText('%s', %d), geom)", dr.getWkt(), srid)); } } @@ -215,92 +223,39 @@ } /** - * 璇锋眰DB鏁版嵁涓嬭浇-绌洪棿鏌ヨ + * 鍒涘缓闄勪欢 * */ - public String downloadDbReq4Wkt(UserEntity ue, DownloadReqEntity dr) throws Exception { - String depcode = null == dr.getDepcodes() || dr.getDepcodes().isEmpty() ? null : dr.getDepcodes().get(0); - Map<String, List<?>> map = queryData(dr.getEntities(), depcode, dr.getDirs(), dr.getWkt()); - if (map.size() == 0) { - return null; + private void createAnnex(String annexPath, Map<String, List<AttachEntity>> annexMap) { + if (annexMap.size() == 0) { + return; } - String tempName = StringHelper.YMDHMS2_FORMAT.format(new Date()); - String tempPath = pathHelper.getTempPath(tempName); - // String filePath = "D:\\LF\\temp\\20221219202706\\2022.gdb" - String filePath = tempPath + File.separator + tempName + ".gdb"; + String uploadPath = pathHelper.getConfig().getUploadPath(); + for (String key : annexMap.keySet()) { + String targetPath = annexPath + File.separator + key; + File targetFile = new File(targetPath); + if (!targetFile.exists() || !targetFile.isDirectory()) { + targetFile.mkdirs(); + } - File file = new File(filePath); - if (file.exists() && file.isDirectory()) { - FileHelper.deleteDir(filePath); - } - GdbHelper.createGdb(filePath, map); + for (AttachEntity ae : annexMap.get(key)) { + try { + File srcFile = new File(uploadPath + File.separator + ae.getPath()); + if (!srcFile.exists() || srcFile.isDirectory()) { + continue; + } - String zipName = tempName + ".gdb.zip"; - String zipFile = pathHelper.getDownloadFullPath() + File.separator + zipName; + File destFile = new File(targetPath + File.separator + ae.getName()); + if (destFile.exists() && !destFile.isDirectory()) { + continue; + } - ZipFile zip = Zip4jHelper.createZipFile(zipFile, dr.getPwd()); - ZipParameters params = Zip4jHelper.getZipParams(true); - addZipFiles(zip, params, file.listFiles()); - - String dbPwd = Md5Helper.reverse(Md5Helper.generate(dr.getPwd())); - DownloadEntity downloadEntity = getDownloadEntity(ue, zipFile, dbPwd); - int rows = downloadMapper.insert(downloadEntity); - - return rows > 0 ? downloadEntity.getGuid() : null; - } - - /** - * 鏌ヨ鏁版嵁 - */ - private Map<String, List<?>> queryData(List<String> entities, String depcode, String dirs, String wkt) { - Map<String, List<?>> map = new HashMap<>(5); - for (String enity : entities) { - try { - GeomBaseMapper<?> baseMapper = ClassHelper.getGeoBaseMapper(enity); - if (null == baseMapper) { - continue; + FileHelper.copyFile(srcFile, destFile); + } catch (Exception ex) { + log.error(ex.getMessage(), ex); } - - QueryWrapper wrapper = createWrapper(baseMapper, depcode, dirs, wkt); - List<?> list = baseMapper.selectList(wrapper); - if (null == list || list.size() == 0) { - continue; - } - - if (!map.containsKey(enity)) { - map.put(enity, list); - } - } catch (Exception ex) { - log.error(ex.getMessage(), ex); } } - - return map; - } - - /** - * 鍒涘缓QueryWrapper - */ - private QueryWrapper createWrapper(BasicMapper baseMapper, String depcode, String dirs, String wkt) { - QueryWrapper wrapper = new QueryWrapper(); - if (baseMapper instanceof GeomBaseMapper) { - wrapper.select("ST_AsText(geom) as geom, *"); - - Integer srid = baseQueryService.getSrid((GeomBaseMapper) baseMapper); - if (null != srid) { - wrapper.apply(String.format("ST_Intersects(ST_PolygonFromText('%s', %d), geom)", wkt, srid)); - } - } - if (!StringHelper.isEmpty(depcode)) { - wrapper.likeRight("depid", depcode); - } - - dirs = DataLibService.copeCodes(dirs, "dirid"); - if (!StringHelper.isEmpty(dirs)) { - wrapper.apply(dirs); - } - - return wrapper; } /** @@ -309,7 +264,7 @@ private DownloadEntity getDownloadEntity(UserEntity ue, String file, String pwd) { DownloadEntity de = new DownloadEntity(); de.setName(FileHelper.getFileName(file)); - // 1-Shp鏂囦欢锛�2-涓撻鍥撅紝3-鍏冩暟鎹紝4-涓氬姟鏁版嵁锛�5-绠¢亾鍒嗘瀽锛�6-缁熻鎶ュ憡 + // 1-Shp鏂囦欢锛�2-涓撻鍥撅紝3-鍏冩暟鎹紝4-涓氬姟鏁版嵁锛�5-绠¢亾鍒嗘瀽锛�6-缁熻鎶ュ憡锛�7-闄勪欢鏂囦欢锛�8-鐡︾墖鏂囦欢 de.setType(4); de.setSizes(FileHelper.sizeToMb(new File(file).length())); de.setDepid(ue.getDepid()); @@ -325,85 +280,6 @@ } /** - * 璇锋眰DB鏁版嵁涓嬭浇-灞炴�ф煡璇� - */ - public String downloadDbReq4Prop(UserEntity ue, DownloadReqEntity dr) throws Exception { - String dirs = dr.getDirs(); - String entity = dr.getEntities().get(0); - String depcode = null == dr.getDepcodes() || dr.getDepcodes().isEmpty() ? null : dr.getDepcodes().get(0); - - BasicMapper baseMapper = ClassHelper.getBasicMapper(entity); - if (baseMapper == null) { - return null; - } - - QueryWrapper wrapper = new QueryWrapper(); - baseQueryService.addFilterWrapper(wrapper, dr.getFilter()); - if (baseMapper instanceof GeomBaseMapper) { - wrapper.select("ST_AsText(geom) as geom, *"); - } - if (!StringHelper.isEmpty(depcode)) { - wrapper.likeRight("depid", depcode); - } - - dirs = DataLibService.copeCodes(dirs, "dirid"); - if (!StringHelper.isEmpty(dirs)) { - wrapper.apply(dirs); - } - - List<?> list = baseMapper.selectList(wrapper); - if (null == list || 0 == list.size()) { - return null; - } - - String tab = BaseQueryService.getTabName(baseMapper); - String ids = getAnnexFilter(StringHelper.isEmpty(depcode) && StringHelper.isEmpty(dirs) && StringHelper.isEmpty(dr.getFilter()), list); - List<AttachEntity> annex = baseQueryService.selectAnnexByTab(tab, ids); - - Map<String, List<?>> map = new HashMap<>(1); - map.put(entity, list); - - return zipData(ue, map, annex, dr.getPwd()); - } - - /** - * 鎵撳寘鏁版嵁 - */ - private String zipData(UserEntity ue, Map<String, List<?>> map, List<AttachEntity> annex, String pwd) throws Exception { - String tempName = StringHelper.YMDHMS2_FORMAT.format(new Date()); - String tempPath = pathHelper.getTempPath(tempName); - String gdbPath = tempPath + File.separator + tempName + ".gdb"; - String annexPath = tempPath + File.separator + "annex"; - - File file = new File(gdbPath); - if (file.exists() && file.isDirectory()) { - FileHelper.deleteDir(gdbPath); - } - file = new File(annexPath); - if (!file.exists() || !file.isDirectory()) { - file.mkdirs(); - } - - GdbHelper.createGdb(gdbPath, map); - createAnnex(annexPath, annex); - - String zipName = tempName + ".gdb.zip"; - String zipFile = pathHelper.getDownloadFullPath() + File.separator + zipName; - - ZipFile zip = Zip4jHelper.createZipFile(zipFile, pwd); - ZipParameters params = Zip4jHelper.getZipParams(true); - // addZipFiles(zip, params, file.listFiles()) - zip.addFolder(new File(gdbPath), params); - zip.addFolder(new File(annexPath), params); - - String dbPwd = Md5Helper.reverse(Md5Helper.generate(pwd)); - DownloadEntity downloadEntity = getDownloadEntity(ue, zipFile, dbPwd); - int rows = downloadMapper.insert(downloadEntity); - - return rows > 0 ? downloadEntity.getGuid() : null; - } - - /** * 澶勭悊缂栫爜 */ public static String copeCodes(String codes, String field) { @@ -411,15 +287,23 @@ return null; } - List<String> list = codesAsList(codes); - removeDuplicate(list); - setRightLike(list, field); + //List<String> list = Arrays.asList(codes.split(",")); + //List<String> list = codesAsList(codes); + //list = copeDirCodes(list); + //setRightLike(list, field); - return StringHelper.join(list, " or "); + //return "(" + StringHelper.join(list, " or ") + ")"; + + List<String> list = new ArrayList<>(); + for (String dir : codes.split(",")) { + list.add("^" + dir); + } + + return field + " ~ '" + StringHelper.join(list, "|") + "'"; } /** - * 鍗曚綅缂栫爜杞泦鍚� + * 鍗曚綅缂栫爜杞泦鍚� * */ private static List<String> codesAsList(String codes) { List<String> list = Arrays.asList(codes.split(",")); @@ -432,39 +316,75 @@ } /** - * 鍘婚櫎閲嶅 + * 澶勭悊鐩綍缂栫爜 * */ - private static void removeDuplicate(List<String> list) { - int i = 0; - while (i < list.size()) { - int j = findStr(list, i); - if (j > -1) { - list.remove(j); + private static List<String> copeDirCodes(List<String> list) { + List<String> prjList = getDirCodesByLen(list, 0, 2); + List<String> appList = getDirCodesByLen(list, 3, 30); + if (prjList.isEmpty() && appList.isEmpty()) { + return list; + } + if (prjList.isEmpty()) { + return appList; + } + if (appList.isEmpty()) { + return prjList; + } + + return filterCodes(prjList, appList); + } + + /** + * 鏍规嵁闀垮害鑾峰彇鍗曚綅缂栫爜 * + */ + private static List<String> getDirCodesByLen(List<String> list, int start, int end) { + List<String> rs = new ArrayList<>(); + for (String code : list) { + if (StringHelper.isEmpty(code)) { continue; } - i++; - } - } - - /** - * 鏌ユ壘瀛楃涓� - */ - private static int findStr(List<String> list, int i) { - String source = list.get(i); - for (int j = i + 1, c = list.size(); j < c; j++) { - if (list.get(j).startsWith(source)) { - return j; + if (code.length() >= start && code.length() <= end) { + rs.add(code); } } - return -1; + return rs; } /** - * 璁剧疆 鍙砽ike + * 杩囨护椤圭洰缂栫爜 * + */ + private static List<String> filterCodes(List<String> prjList, List<String> appList) { + int i = 0; + while (i < appList.size()) { + boolean flag = false; + for (String prj : prjList) { + if (appList.get(i).startsWith(prj)) { + flag = true; + break; + } + } + + if (!flag) { + appList.remove(i); + continue; + } + i++; + } + + return appList; + } + + /** + * 璁剧疆 鍙砽ike * */ private static void setRightLike(List<String> list, String field) { + if (list.isEmpty()) { + list.add("1 = 2"); + return; + } + for (int i = 0, c = list.size(); i < c; i++) { String str = String.format("%s like '%s%%'", field, list.get(i)); list.set(i, str); @@ -472,61 +392,37 @@ } /** - * 娣诲姞Zip鏂囦欢 + * 鏍规嵁璧勬枡绫诲埆鑾峰彇鐩綍缂栫爜 */ - private void addZipFiles(ZipFile zip, ZipParameters params, File[] files) { - if (null == files || files.length == 0) { - return; - } - - for (File f : files) { - try { - zip.addFile(f, params); - } catch (Exception ex) { - log.error(ex.getMessage(), ex); - } - } - } - - /** - * 鑾峰彇鏌ヨ闄勪欢鏉′欢 - */ - private String getAnnexFilter(boolean flag, List<?> list) { - if (flag) { + public String getDirsByTypes(String types, String dirs, String field) { + if (StringUtils.isEmpty(types) && StringUtils.isEmpty(dirs)) { return null; } - List<Integer> gids = new ArrayList<>(); - for (Object obj : list) { - BaseEntity be = (BaseEntity) obj; - gids.add(be.getGid()); + if (!StringUtils.isEmpty(types)) { + List<KeyValueEntity> list = baseQueryService.selectDirsByTypes(types.split(","), copeCodes(dirs, "code")); + if (null == list || list.isEmpty()) { + return "1 = 2"; + } + + return copeDirs(list, field); } - return StringHelper.join(gids, ","); + return copeCodes(dirs, field); } /** - * 娣诲姞闄勪欢鏂囦欢 + * 澶勭悊鐩綍缂栫爜锛歞ircode ~ '^0A|^0E' */ - private void createAnnex(String targetPath, List<AttachEntity> list) { - if (null == list || list.isEmpty()) { - return; - } - - int i = 1; - String uploadPath = pathHelper.getConfig().getUploadPath(); - for (AttachEntity attach : list) { - try { - File srcFile = new File(uploadPath + File.separator + attach.getPath()); - if (!srcFile.exists() || srcFile.isDirectory()) { - continue; - } - - File destFile = new File(targetPath + File.separator + i++ + "_" + attach.getName()); - FileHelper.copyFile(srcFile, destFile); - } catch (Exception ex) { - log.error(ex.getMessage(), ex); + public static String copeDirs(List<KeyValueEntity> kvs, String field) { + List<String> list = new ArrayList<>(); + for (KeyValueEntity kv : kvs) { + String[] dirs = kv.getValue().split(","); + for (String dir : dirs) { + list.add("^" + dir); } } + + return field + " ~ '" + StringHelper.join(list, "|") + "'"; } } -- Gitblit v1.9.3