| | |
| | | import com.iailab.framework.common.util.date.DateUtils; |
| | | import com.iailab.framework.common.util.object.ConvertUtils; |
| | | import com.iailab.framework.security.core.util.SecurityFrameworkUtils; |
| | | import com.iailab.framework.tenant.core.context.TenantContextHolder; |
| | | import com.iailab.module.infra.api.config.ConfigApi; |
| | | import com.iailab.module.model.mpk.common.MdkConstant; |
| | | import com.iailab.module.model.mpk.common.utils.DllUtils; |
| | |
| | | import com.iailab.module.model.mpk.dto.ProjectPackageHistoryDTO; |
| | | import com.iailab.module.model.mpk.entity.GeneratorCodeHistoryEntity; |
| | | import com.iailab.module.model.mpk.entity.MpkFileEntity; |
| | | import com.iailab.module.model.mpk.entity.ProjectPackageHistoryEntity; |
| | | import com.iailab.module.model.mpk.entity.ProjectPackageHistoryModelEntity; |
| | | import com.iailab.module.model.mpk.service.*; |
| | | import lombok.extern.slf4j.Slf4j; |
| | |
| | | |
| | | @Value("${mpk.bak-resources}") |
| | | private String mpkResources; |
| | | |
| | | /*@PostConstruct |
| | | public void init() { |
| | | mpkBakFilePath = configApi.getConfigValueByKey("mpkBakFilePath").getCheckedData(); |
| | | }*/ |
| | | |
| | | @Override |
| | | public PageData<MpkFileDTO> page(Map<String, Object> params) { |
| | |
| | | |
| | | @Override |
| | | public byte[] generatorCode(String id, String remark, String zipFileName) { |
| | | Long tenantId = TenantContextHolder.getTenantId(); |
| | | // 备份文件 租户隔离 |
| | | String mpkTenantBakFilePath = mpkBakFilePath + File.separator + tenantId; |
| | | |
| | | MpkFileDTO entity = baseDao.get(id); |
| | | //生成代码 |
| | | //设置velocity资源加载器 |
| | |
| | | String dllSavePath = dirPath.getAbsolutePath() + File.separator + MdkConstant.LIBS + File.separator + "IAIL.MDK.Mid.Jni.dll"; |
| | | createDllFile(dirPath.getAbsolutePath(),cppFilePaths,dllSavePath); |
| | | //备份dll文件,用于后续运行 |
| | | String dllBakPath = mpkBakFilePath + File.separator + MdkConstant.DLL + File.separator + entity.getPyName() + ".dll"; |
| | | String dllBakPath = mpkTenantBakFilePath + File.separator + MdkConstant.DLL + File.separator + entity.getPyName() + ".dll"; |
| | | FileUtil.mkParentDirs(dllBakPath); |
| | | FileUtil.copy(dllSavePath, dllBakPath, true); |
| | | |
| | |
| | | // 打jar包 |
| | | String jarSavePath = pkgJar(dirPath.getAbsolutePath()); |
| | | //备份jar文件,用于后续运行 |
| | | String jarBakPath = mpkBakFilePath + File.separator + MdkConstant.JAR + File.separator + entity.getPyName() + ".jar"; |
| | | String jarBakPath = mpkTenantBakFilePath + File.separator + MdkConstant.JAR + File.separator + entity.getPyName() + ".jar"; |
| | | FileUtil.mkParentDirs(dllBakPath); |
| | | FileUtil.copy(jarSavePath, jarBakPath, true); |
| | | // 打zip包 |
| | | String zipPath = mpkBakFilePath + File.separator + zipFileName; |
| | | String zipPath = mpkTenantBakFilePath + File.separator + zipFileName; |
| | | ZipUtil.zip(dirPath.getAbsolutePath(), zipPath); |
| | | byte[] bytes = FileUtil.readBytes(zipPath); |
| | | |
| | |
| | | @Override |
| | | @DSTransactional(rollbackFor = Exception.class) |
| | | public byte[] packageModel(List<String> ids, String projectId, String projectName, String zipFileName, String logs, String version) throws IOException, InterruptedException { |
| | | Long tenantId = TenantContextHolder.getTenantId(); |
| | | // 备份文件 租户隔离 |
| | | String mpkTenantBakFilePath = mpkBakFilePath + File.separator + tenantId; |
| | | |
| | | List<MpkFileDTO> entities = baseDao.selectByIds(ids); |
| | | |
| | | //模板数据 |
| | |
| | | //备份dll,发布时使用 |
| | | File dllFile = new File(dllSavePath); |
| | | if (dllFile.exists()) { |
| | | File dllBakFile = new File(mpkBakFilePath + File.separator + projectId + MdkConstant.SPLIT + historyId + ".dll"); |
| | | File dllBakFile = new File(mpkBakFilePath + File.separator + MdkConstant.PROJECT_UNPUBLISH + File.separator + projectId + MdkConstant.SPLIT + historyId + ".dll"); |
| | | FileUtil.copy(dllFile, dllBakFile, true); |
| | | }else { |
| | | log.error("dll文件不存在,无法备份。" + dllSavePath); |
| | |
| | | //备份jar包,发布时使用 |
| | | File jarFile = new File(jarSavePath); |
| | | if (jarFile.exists()) { |
| | | File jarBakFile = new File(mpkBakFilePath + File.separator + projectId + MdkConstant.SPLIT + historyId + ".jar"); |
| | | File jarBakFile = new File(mpkBakFilePath + File.separator + MdkConstant.PROJECT_UNPUBLISH + File.separator + projectId + MdkConstant.SPLIT + historyId + ".jar"); |
| | | FileUtil.copy(jarFile, jarBakFile, true); |
| | | }else { |
| | | log.error("jar文件不存在,无法备份。" + jarSavePath); |
| | | } |
| | | |
| | | // 本次更新日志 |
| | | ProjectPackageHistoryDTO dto = new ProjectPackageHistoryDTO(); |
| | | dto.setId(historyId); |
| | | dto.setProjectId(projectId); |
| | | dto.setFileName(zipFileName); |
| | | dto.setLog(logs); |
| | | dto.setVersion(version); |
| | | dto.setModelNames(entities.stream().map(MpkFileDTO::getPyName).collect(Collectors.joining(","))); |
| | | dto.setCreateTime(new Date()); |
| | | ProjectPackageHistoryEntity projectPackageHistoryEntity = new ProjectPackageHistoryEntity(); |
| | | projectPackageHistoryEntity.setId(historyId); |
| | | projectPackageHistoryEntity.setProjectId(projectId); |
| | | projectPackageHistoryEntity.setFileName(zipFileName); |
| | | projectPackageHistoryEntity.setLog(logs); |
| | | projectPackageHistoryEntity.setVersion(version); |
| | | projectPackageHistoryEntity.setModelNames(entities.stream().map(MpkFileDTO::getPyName).collect(Collectors.joining(","))); |
| | | projectPackageHistoryEntity.setCreateTime(new Date()); |
| | | // 生成更新日志 |
| | | createLog(projectId, projectName, dirPath.getAbsolutePath(), dto, version); |
| | | createLog(projectId, projectName, dirPath.getAbsolutePath(), projectPackageHistoryEntity, version); |
| | | // 打zip包 |
| | | String zipPath = mpkBakFilePath + File.separator + zipFileName; |
| | | String zipPath = mpkTenantBakFilePath + File.separator + zipFileName; |
| | | ZipUtil.zip(dirPath.getAbsolutePath(), zipPath); |
| | | byte[] bytes = FileUtil.readBytes(zipPath); |
| | | // 记录打包日志 |
| | | dto.setFilePath(zipPath); |
| | | projectPackageHistoryService.save(dto); |
| | | projectPackageHistoryEntity.setFilePath(zipPath); |
| | | projectPackageHistoryService.insert(projectPackageHistoryEntity); |
| | | // 插入打包历史-模型关联表 |
| | | List<ProjectPackageHistoryModelEntity> historyModelList = new ArrayList<>(entities.size()); |
| | | entities.forEach(e -> { |
| | |
| | | } |
| | | historyModelList.add(entity); |
| | | }); |
| | | projectPackageHistoryModelService.insertBatch(historyModelList); |
| | | projectPackageHistoryModelService.insertList(historyModelList); |
| | | // 删除临时文件 |
| | | FileUtils.deleteDirectory(dirPath); |
| | | return bytes; |
| | |
| | | |
| | | @Override |
| | | public Map<String, String> savePyFile(MultipartFile file) throws IOException { |
| | | File dir = new File(mpkBakFilePath); |
| | | Long tenantId = TenantContextHolder.getTenantId(); |
| | | // 备份文件 租户隔离 |
| | | String mpkTenantBakFilePath = mpkBakFilePath + File.separator + tenantId; |
| | | |
| | | File dir = new File(mpkTenantBakFilePath); |
| | | if (!dir.exists()) { |
| | | dir.mkdirs(); |
| | | } |
| | |
| | | String projectId = (String) params.get("projectId"); |
| | | |
| | | // 判断新的dll和jar文件是否存在 |
| | | String jarFileBakPath = mpkBakFilePath + File.separator + projectId + MdkConstant.SPLIT + historyId + ".jar"; |
| | | String dllFileBakPath = mpkBakFilePath + File.separator + projectId + MdkConstant.SPLIT + historyId + ".dll"; |
| | | String jarFileBakPath = mpkBakFilePath + File.separator + MdkConstant.PROJECT_UNPUBLISH + File.separator + projectId + MdkConstant.SPLIT + historyId + ".jar"; |
| | | String dllFileBakPath = mpkBakFilePath + File.separator + MdkConstant.PROJECT_UNPUBLISH + File.separator + projectId + MdkConstant.SPLIT + historyId + ".dll"; |
| | | if (!FileUtil.exist(jarFileBakPath)) { |
| | | throw new RuntimeException("jar文件不存在," + jarFileBakPath); |
| | | } |
| | |
| | | return CommonResult.success(); |
| | | } |
| | | |
| | | private void createLog(String projectId, String projectName, String dirPath, ProjectPackageHistoryDTO dto, String version) throws IOException { |
| | | private void createLog(String projectId, String projectName, String dirPath, ProjectPackageHistoryEntity projectPackageHistoryEntity, String version) { |
| | | Map<String, Object> map = new HashMap<>(); |
| | | map.put("projectId", projectId); |
| | | List<ProjectPackageHistoryDTO> list = projectPackageHistoryService.list(map); |
| | | list.add(dto); |
| | | List<ProjectPackageHistoryEntity> list = projectPackageHistoryService.list(map); |
| | | list.add(projectPackageHistoryEntity); |
| | | // 按照日期分组再排序 |
| | | HashMap<String, List<ProjectPackageHistoryDTO>> dataMap = list.stream().collect( |
| | | HashMap<String, List<ProjectPackageHistoryEntity>> dataMap = list.stream().collect( |
| | | Collectors.groupingBy(e -> DateUtils.format(e.getCreateTime(), DateUtils.DATE_PATTERN_POINT), |
| | | LinkedHashMap::new, |
| | | Collectors.collectingAndThen(Collectors.toList(), e -> e.stream().sorted(Comparator.comparing(ProjectPackageHistoryDTO::getCreateTime)).collect(Collectors.toList())))); |
| | | Collectors.collectingAndThen(Collectors.toList(), e -> e.stream().sorted(Comparator.comparing(ProjectPackageHistoryEntity::getCreateTime)).collect(Collectors.toList())))); |
| | | |
| | | Map<String, Object> data = new HashMap<>(); |
| | | data.put("dataMap", dataMap); |