mirror of
https://github.com/dromara/RuoYi-Vue-Plus.git
synced 2025-09-23 23:09:47 +08:00
Compare commits
3 Commits
e2801037cf
...
ae5bec994d
Author | SHA1 | Date | |
---|---|---|---|
ae5bec994d | |||
8f3a1b589e | |||
ad6b3d4b3f |
@ -0,0 +1,152 @@
|
|||||||
|
package org.dromara.common.excel.core;
|
||||||
|
|
||||||
|
import cn.hutool.core.collection.CollUtil;
|
||||||
|
import cn.hutool.core.util.ReflectUtil;
|
||||||
|
import cn.hutool.core.util.StrUtil;
|
||||||
|
import cn.idev.excel.annotation.ExcelIgnore;
|
||||||
|
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
||||||
|
import cn.idev.excel.annotation.ExcelProperty;
|
||||||
|
import lombok.SneakyThrows;
|
||||||
|
import org.apache.poi.ss.util.CellRangeAddress;
|
||||||
|
import org.dromara.common.core.utils.reflect.ReflectUtils;
|
||||||
|
import org.dromara.common.excel.annotation.CellMerge;
|
||||||
|
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.util.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 单元格合并处理器
|
||||||
|
*
|
||||||
|
* @author Lion Li
|
||||||
|
*/
|
||||||
|
public class CellMergeHandler {
|
||||||
|
|
||||||
|
private final boolean hasTitle;
|
||||||
|
private int rowIndex;
|
||||||
|
|
||||||
|
private CellMergeHandler(final boolean hasTitle) {
|
||||||
|
this.hasTitle = hasTitle;
|
||||||
|
// 行合并开始下标
|
||||||
|
this.rowIndex = hasTitle ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@SneakyThrows
|
||||||
|
public List<CellRangeAddress> handle(List<?> list) {
|
||||||
|
List<CellRangeAddress> cellList = new ArrayList<>();
|
||||||
|
if (CollUtil.isEmpty(list)) {
|
||||||
|
return cellList;
|
||||||
|
}
|
||||||
|
Class<?> clazz = list.get(0).getClass();
|
||||||
|
boolean annotationPresent = clazz.isAnnotationPresent(ExcelIgnoreUnannotated.class);
|
||||||
|
Field[] fields = ReflectUtils.getFields(clazz, field -> {
|
||||||
|
if ("serialVersionUID".equals(field.getName())) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (field.isAnnotationPresent(ExcelIgnore.class)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return !annotationPresent || field.isAnnotationPresent(ExcelProperty.class);
|
||||||
|
});
|
||||||
|
|
||||||
|
// 有注解的字段
|
||||||
|
List<Field> mergeFields = new ArrayList<>();
|
||||||
|
List<Integer> mergeFieldsIndex = new ArrayList<>();
|
||||||
|
for (int i = 0; i < fields.length; i++) {
|
||||||
|
Field field = fields[i];
|
||||||
|
if (field.isAnnotationPresent(CellMerge.class)) {
|
||||||
|
CellMerge cm = field.getAnnotation(CellMerge.class);
|
||||||
|
mergeFields.add(field);
|
||||||
|
mergeFieldsIndex.add(cm.index() == -1 ? i : cm.index());
|
||||||
|
if (hasTitle) {
|
||||||
|
ExcelProperty property = field.getAnnotation(ExcelProperty.class);
|
||||||
|
rowIndex = Math.max(rowIndex, property.value().length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Map<Field, RepeatCell> map = new HashMap<>();
|
||||||
|
// 生成两两合并单元格
|
||||||
|
for (int i = 0; i < list.size(); i++) {
|
||||||
|
Object rowObj = list.get(i);
|
||||||
|
for (int j = 0; j < mergeFields.size(); j++) {
|
||||||
|
Field field = mergeFields.get(j);
|
||||||
|
Object val = ReflectUtils.invokeGetter(rowObj, field.getName());
|
||||||
|
|
||||||
|
int colNum = mergeFieldsIndex.get(j);
|
||||||
|
if (!map.containsKey(field)) {
|
||||||
|
map.put(field, new RepeatCell(val, i));
|
||||||
|
} else {
|
||||||
|
RepeatCell repeatCell = map.get(field);
|
||||||
|
Object cellValue = repeatCell.value();
|
||||||
|
if (cellValue == null || "".equals(cellValue)) {
|
||||||
|
// 空值跳过不合并
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!cellValue.equals(val)) {
|
||||||
|
if ((i - repeatCell.current() > 1)) {
|
||||||
|
cellList.add(new CellRangeAddress(repeatCell.current() + rowIndex, i + rowIndex - 1, colNum, colNum));
|
||||||
|
}
|
||||||
|
map.put(field, new RepeatCell(val, i));
|
||||||
|
} else if (i == list.size() - 1) {
|
||||||
|
if (!isMerge(list, i, field)) {
|
||||||
|
// 如果最后一行不能合并,检查之前的数据是否需要合并
|
||||||
|
if (i - repeatCell.current() > 1) {
|
||||||
|
cellList.add(new CellRangeAddress(repeatCell.current() + rowIndex, i + rowIndex - 1, colNum, colNum));
|
||||||
|
}
|
||||||
|
} else if (i > repeatCell.current()) {
|
||||||
|
// 如果最后一行可以合并,则直接合并到最后
|
||||||
|
cellList.add(new CellRangeAddress(repeatCell.current() + rowIndex, i + rowIndex, colNum, colNum));
|
||||||
|
}
|
||||||
|
} else if (!isMerge(list, i, field)) {
|
||||||
|
if ((i - repeatCell.current() > 1)) {
|
||||||
|
cellList.add(new CellRangeAddress(repeatCell.current() + rowIndex, i + rowIndex - 1, colNum, colNum));
|
||||||
|
}
|
||||||
|
map.put(field, new RepeatCell(val, i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return cellList;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isMerge(List<?> list, int i, Field field) {
|
||||||
|
boolean isMerge = true;
|
||||||
|
CellMerge cm = field.getAnnotation(CellMerge.class);
|
||||||
|
final String[] mergeBy = cm.mergeBy();
|
||||||
|
if (StrUtil.isAllNotBlank(mergeBy)) {
|
||||||
|
//比对当前list(i)和list(i - 1)的各个属性值一一比对 如果全为真 则为真
|
||||||
|
for (String fieldName : mergeBy) {
|
||||||
|
final Object valCurrent = ReflectUtil.getFieldValue(list.get(i), fieldName);
|
||||||
|
final Object valPre = ReflectUtil.getFieldValue(list.get(i - 1), fieldName);
|
||||||
|
if (!Objects.equals(valPre, valCurrent)) {
|
||||||
|
//依赖字段如有任一不等值,则标记为不可合并
|
||||||
|
isMerge = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return isMerge;
|
||||||
|
}
|
||||||
|
|
||||||
|
record RepeatCell(Object value, int current) {}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建一个单元格合并处理器实例
|
||||||
|
*
|
||||||
|
* @param hasTitle 是否合并标题
|
||||||
|
* @return 单元格合并处理器
|
||||||
|
*/
|
||||||
|
public static CellMergeHandler of(final boolean hasTitle) {
|
||||||
|
return new CellMergeHandler(hasTitle);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建一个单元格合并处理器实例(默认不合并标题)
|
||||||
|
*
|
||||||
|
* @return 单元格合并处理器
|
||||||
|
*/
|
||||||
|
public static CellMergeHandler of() {
|
||||||
|
return new CellMergeHandler(false);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,26 +1,15 @@
|
|||||||
package org.dromara.common.excel.core;
|
package org.dromara.common.excel.core;
|
||||||
|
|
||||||
import cn.hutool.core.collection.CollUtil;
|
import cn.hutool.core.collection.CollUtil;
|
||||||
import cn.hutool.core.util.ReflectUtil;
|
|
||||||
import cn.hutool.core.util.StrUtil;
|
|
||||||
import cn.idev.excel.annotation.ExcelIgnore;
|
|
||||||
import cn.idev.excel.annotation.ExcelIgnoreUnannotated;
|
|
||||||
import cn.idev.excel.annotation.ExcelProperty;
|
|
||||||
import cn.idev.excel.metadata.Head;
|
import cn.idev.excel.metadata.Head;
|
||||||
import cn.idev.excel.write.handler.WorkbookWriteHandler;
|
import cn.idev.excel.write.handler.WorkbookWriteHandler;
|
||||||
import cn.idev.excel.write.handler.context.WorkbookWriteHandlerContext;
|
import cn.idev.excel.write.handler.context.WorkbookWriteHandlerContext;
|
||||||
import cn.idev.excel.write.merge.AbstractMergeStrategy;
|
import cn.idev.excel.write.merge.AbstractMergeStrategy;
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.SneakyThrows;
|
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.poi.ss.usermodel.Cell;
|
import org.apache.poi.ss.usermodel.Cell;
|
||||||
import org.apache.poi.ss.usermodel.Sheet;
|
import org.apache.poi.ss.usermodel.Sheet;
|
||||||
import org.apache.poi.ss.util.CellRangeAddress;
|
import org.apache.poi.ss.util.CellRangeAddress;
|
||||||
import org.dromara.common.core.utils.reflect.ReflectUtils;
|
|
||||||
import org.dromara.common.excel.annotation.CellMerge;
|
|
||||||
|
|
||||||
import java.lang.reflect.Field;
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -32,145 +21,39 @@ import java.util.*;
|
|||||||
public class CellMergeStrategy extends AbstractMergeStrategy implements WorkbookWriteHandler {
|
public class CellMergeStrategy extends AbstractMergeStrategy implements WorkbookWriteHandler {
|
||||||
|
|
||||||
private final List<CellRangeAddress> cellList;
|
private final List<CellRangeAddress> cellList;
|
||||||
private final boolean hasTitle;
|
|
||||||
private int rowIndex;
|
public CellMergeStrategy(List<CellRangeAddress> cellList) {
|
||||||
|
this.cellList = cellList;
|
||||||
|
}
|
||||||
|
|
||||||
public CellMergeStrategy(List<?> list, boolean hasTitle) {
|
public CellMergeStrategy(List<?> list, boolean hasTitle) {
|
||||||
this.hasTitle = hasTitle;
|
this.cellList = CellMergeHandler.of(hasTitle).handle(list);
|
||||||
// 行合并开始下标
|
|
||||||
this.rowIndex = hasTitle ? 1 : 0;
|
|
||||||
this.cellList = handle(list, hasTitle);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void merge(Sheet sheet, Cell cell, Head head, Integer relativeRowIndex) {
|
protected void merge(Sheet sheet, Cell cell, Head head, Integer relativeRowIndex) {
|
||||||
|
if (CollUtil.isEmpty(cellList)){
|
||||||
|
return;
|
||||||
|
}
|
||||||
//单元格写入了,遍历合并区域,如果该Cell在区域内,但非首行,则清空
|
//单元格写入了,遍历合并区域,如果该Cell在区域内,但非首行,则清空
|
||||||
final int rowIndex = cell.getRowIndex();
|
final int rowIndex = cell.getRowIndex();
|
||||||
if (CollUtil.isNotEmpty(cellList)){
|
for (CellRangeAddress cellAddresses : cellList) {
|
||||||
for (CellRangeAddress cellAddresses : cellList) {
|
final int firstRow = cellAddresses.getFirstRow();
|
||||||
final int firstRow = cellAddresses.getFirstRow();
|
if (cellAddresses.isInRange(cell) && rowIndex != firstRow){
|
||||||
if (cellAddresses.isInRange(cell) && rowIndex != firstRow){
|
cell.setBlank();
|
||||||
cell.setBlank();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void afterWorkbookDispose(final WorkbookWriteHandlerContext context) {
|
public void afterWorkbookDispose(final WorkbookWriteHandlerContext context) {
|
||||||
|
if (CollUtil.isEmpty(cellList)){
|
||||||
|
return;
|
||||||
|
}
|
||||||
//当前表格写完后,统一写入
|
//当前表格写完后,统一写入
|
||||||
if (CollUtil.isNotEmpty(cellList)){
|
for (CellRangeAddress item : cellList) {
|
||||||
for (CellRangeAddress item : cellList) {
|
context.getWriteContext().writeSheetHolder().getSheet().addMergedRegion(item);
|
||||||
context.getWriteContext().writeSheetHolder().getSheet().addMergedRegion(item);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@SneakyThrows
|
|
||||||
private List<CellRangeAddress> handle(List<?> list, boolean hasTitle) {
|
|
||||||
List<CellRangeAddress> cellList = new ArrayList<>();
|
|
||||||
if (CollUtil.isEmpty(list)) {
|
|
||||||
return cellList;
|
|
||||||
}
|
|
||||||
Class<?> clazz = list.get(0).getClass();
|
|
||||||
boolean annotationPresent = clazz.isAnnotationPresent(ExcelIgnoreUnannotated.class);
|
|
||||||
Field[] fields = ReflectUtils.getFields(clazz, field -> {
|
|
||||||
if ("serialVersionUID".equals(field.getName())) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (field.isAnnotationPresent(ExcelIgnore.class)) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
return !annotationPresent || field.isAnnotationPresent(ExcelProperty.class);
|
|
||||||
});
|
|
||||||
|
|
||||||
// 有注解的字段
|
|
||||||
List<Field> mergeFields = new ArrayList<>();
|
|
||||||
List<Integer> mergeFieldsIndex = new ArrayList<>();
|
|
||||||
for (int i = 0; i < fields.length; i++) {
|
|
||||||
Field field = fields[i];
|
|
||||||
if (field.isAnnotationPresent(CellMerge.class)) {
|
|
||||||
CellMerge cm = field.getAnnotation(CellMerge.class);
|
|
||||||
mergeFields.add(field);
|
|
||||||
mergeFieldsIndex.add(cm.index() == -1 ? i : cm.index());
|
|
||||||
if (hasTitle) {
|
|
||||||
ExcelProperty property = field.getAnnotation(ExcelProperty.class);
|
|
||||||
rowIndex = Math.max(rowIndex, property.value().length);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<Field, RepeatCell> map = new HashMap<>();
|
|
||||||
// 生成两两合并单元格
|
|
||||||
for (int i = 0; i < list.size(); i++) {
|
|
||||||
Object rowObj = list.get(i);
|
|
||||||
for (int j = 0; j < mergeFields.size(); j++) {
|
|
||||||
Field field = mergeFields.get(j);
|
|
||||||
Object val = ReflectUtils.invokeGetter(rowObj, field.getName());
|
|
||||||
|
|
||||||
int colNum = mergeFieldsIndex.get(j);
|
|
||||||
if (!map.containsKey(field)) {
|
|
||||||
map.put(field, new RepeatCell(val, i));
|
|
||||||
} else {
|
|
||||||
RepeatCell repeatCell = map.get(field);
|
|
||||||
Object cellValue = repeatCell.getValue();
|
|
||||||
if (cellValue == null || "".equals(cellValue)) {
|
|
||||||
// 空值跳过不合并
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!cellValue.equals(val)) {
|
|
||||||
if ((i - repeatCell.getCurrent() > 1)) {
|
|
||||||
cellList.add(new CellRangeAddress(repeatCell.getCurrent() + rowIndex, i + rowIndex - 1, colNum, colNum));
|
|
||||||
}
|
|
||||||
map.put(field, new RepeatCell(val, i));
|
|
||||||
} else if (i == list.size() - 1) {
|
|
||||||
if (!isMerge(list, i, field)) {
|
|
||||||
// 如果最后一行不能合并,检查之前的数据是否需要合并
|
|
||||||
if (i - repeatCell.getCurrent() > 1) {
|
|
||||||
cellList.add(new CellRangeAddress(repeatCell.getCurrent() + rowIndex, i + rowIndex - 1, colNum, colNum));
|
|
||||||
}
|
|
||||||
} else if (i > repeatCell.getCurrent()) {
|
|
||||||
// 如果最后一行可以合并,则直接合并到最后
|
|
||||||
cellList.add(new CellRangeAddress(repeatCell.getCurrent() + rowIndex, i + rowIndex, colNum, colNum));
|
|
||||||
}
|
|
||||||
} else if (!isMerge(list, i, field)) {
|
|
||||||
if ((i - repeatCell.getCurrent() > 1)) {
|
|
||||||
cellList.add(new CellRangeAddress(repeatCell.getCurrent() + rowIndex, i + rowIndex - 1, colNum, colNum));
|
|
||||||
}
|
|
||||||
map.put(field, new RepeatCell(val, i));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return cellList;
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean isMerge(List<?> list, int i, Field field) {
|
|
||||||
boolean isMerge = true;
|
|
||||||
CellMerge cm = field.getAnnotation(CellMerge.class);
|
|
||||||
final String[] mergeBy = cm.mergeBy();
|
|
||||||
if (StrUtil.isAllNotBlank(mergeBy)) {
|
|
||||||
//比对当前list(i)和list(i - 1)的各个属性值一一比对 如果全为真 则为真
|
|
||||||
for (String fieldName : mergeBy) {
|
|
||||||
final Object valCurrent = ReflectUtil.getFieldValue(list.get(i), fieldName);
|
|
||||||
final Object valPre = ReflectUtil.getFieldValue(list.get(i - 1), fieldName);
|
|
||||||
if (!Objects.equals(valPre, valCurrent)) {
|
|
||||||
//依赖字段如有任一不等值,则标记为不可合并
|
|
||||||
isMerge = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return isMerge;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@AllArgsConstructor
|
|
||||||
static class RepeatCell {
|
|
||||||
|
|
||||||
private Object value;
|
|
||||||
|
|
||||||
private int current;
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ package org.dromara.common.oss.core;
|
|||||||
|
|
||||||
import cn.hutool.core.io.IoUtil;
|
import cn.hutool.core.io.IoUtil;
|
||||||
import cn.hutool.core.util.IdUtil;
|
import cn.hutool.core.util.IdUtil;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.dromara.common.core.constant.Constants;
|
import org.dromara.common.core.constant.Constants;
|
||||||
import org.dromara.common.core.utils.DateUtils;
|
import org.dromara.common.core.utils.DateUtils;
|
||||||
import org.dromara.common.core.utils.StringUtils;
|
import org.dromara.common.core.utils.StringUtils;
|
||||||
@ -13,9 +14,7 @@ import org.dromara.common.oss.exception.OssException;
|
|||||||
import org.dromara.common.oss.properties.OssProperties;
|
import org.dromara.common.oss.properties.OssProperties;
|
||||||
import software.amazon.awssdk.auth.credentials.AwsBasicCredentials;
|
import software.amazon.awssdk.auth.credentials.AwsBasicCredentials;
|
||||||
import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider;
|
import software.amazon.awssdk.auth.credentials.StaticCredentialsProvider;
|
||||||
import software.amazon.awssdk.core.ResponseInputStream;
|
import software.amazon.awssdk.core.async.*;
|
||||||
import software.amazon.awssdk.core.async.AsyncResponseTransformer;
|
|
||||||
import software.amazon.awssdk.core.async.BlockingInputStreamAsyncRequestBody;
|
|
||||||
import software.amazon.awssdk.http.nio.netty.NettyNioAsyncHttpClient;
|
import software.amazon.awssdk.http.nio.netty.NettyNioAsyncHttpClient;
|
||||||
import software.amazon.awssdk.regions.Region;
|
import software.amazon.awssdk.regions.Region;
|
||||||
import software.amazon.awssdk.services.s3.S3AsyncClient;
|
import software.amazon.awssdk.services.s3.S3AsyncClient;
|
||||||
@ -29,9 +28,12 @@ import software.amazon.awssdk.transfer.s3.progress.LoggingTransferListener;
|
|||||||
import java.io.*;
|
import java.io.*;
|
||||||
import java.net.URI;
|
import java.net.URI;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
|
import java.nio.channels.Channels;
|
||||||
|
import java.nio.channels.WritableByteChannel;
|
||||||
import java.nio.file.Files;
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.time.Duration;
|
import java.time.Duration;
|
||||||
|
import java.util.Optional;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -40,6 +42,7 @@ import java.util.function.Consumer;
|
|||||||
*
|
*
|
||||||
* @author AprilWind
|
* @author AprilWind
|
||||||
*/
|
*/
|
||||||
|
@Slf4j
|
||||||
public class OssClient {
|
public class OssClient {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -237,30 +240,61 @@ public class OssClient {
|
|||||||
* @param key 文件在 Amazon S3 中的对象键
|
* @param key 文件在 Amazon S3 中的对象键
|
||||||
* @param out 输出流
|
* @param out 输出流
|
||||||
* @param consumer 自定义处理逻辑
|
* @param consumer 自定义处理逻辑
|
||||||
* @return 输出流中写入的字节数(长度)
|
|
||||||
* @throws OssException 如果下载失败,抛出自定义异常
|
* @throws OssException 如果下载失败,抛出自定义异常
|
||||||
*/
|
*/
|
||||||
public void download(String key, OutputStream out, Consumer<Long> consumer) {
|
public void download(String key, OutputStream out, Consumer<Long> consumer) {
|
||||||
|
try {
|
||||||
|
this.download(key, consumer).writeTo(out);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new OssException("文件下载失败,错误信息:[" + e.getMessage() + "]");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下载文件从 Amazon S3 到 输出流
|
||||||
|
*
|
||||||
|
* @param key 文件在 Amazon S3 中的对象键
|
||||||
|
* @param contentLengthConsumer 文件大小消费者函数
|
||||||
|
* @return 写出订阅器
|
||||||
|
* @throws OssException 如果下载失败,抛出自定义异常
|
||||||
|
*/
|
||||||
|
public WriteOutSubscriber<OutputStream> download(String key, Consumer<Long> contentLengthConsumer) {
|
||||||
try {
|
try {
|
||||||
// 构建下载请求
|
// 构建下载请求
|
||||||
DownloadRequest<ResponseInputStream<GetObjectResponse>> downloadRequest = DownloadRequest.builder()
|
DownloadRequest<ResponsePublisher<GetObjectResponse>> publisherDownloadRequest = DownloadRequest.builder()
|
||||||
// 文件对象
|
// 文件对象
|
||||||
.getObjectRequest(y -> y.bucket(properties.getBucketName())
|
.getObjectRequest(y -> y.bucket(properties.getBucketName())
|
||||||
.key(key)
|
.key(key)
|
||||||
.build())
|
.build())
|
||||||
.addTransferListener(LoggingTransferListener.create())
|
.addTransferListener(LoggingTransferListener.create())
|
||||||
// 使用订阅转换器
|
// 使用发布订阅转换器
|
||||||
.responseTransformer(AsyncResponseTransformer.toBlockingInputStream())
|
.responseTransformer(AsyncResponseTransformer.toPublisher())
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
// 使用 S3TransferManager 下载文件
|
// 使用 S3TransferManager 下载文件
|
||||||
Download<ResponseInputStream<GetObjectResponse>> responseFuture = transferManager.download(downloadRequest);
|
Download<ResponsePublisher<GetObjectResponse>> publisherDownload = transferManager.download(publisherDownloadRequest);
|
||||||
// 输出到流中
|
// 获取下载发布订阅转换器
|
||||||
try (ResponseInputStream<GetObjectResponse> responseStream = responseFuture.completionFuture().join().result()) { // auto-closeable stream
|
ResponsePublisher<GetObjectResponse> publisher = publisherDownload.completionFuture().join().result();
|
||||||
if (consumer != null) {
|
// 执行文件大小消费者函数
|
||||||
consumer.accept(responseStream.response().contentLength());
|
Optional.ofNullable(contentLengthConsumer)
|
||||||
|
.ifPresent(lengthConsumer -> lengthConsumer.accept(publisher.response().contentLength()));
|
||||||
|
|
||||||
|
// 构建写出订阅器对象
|
||||||
|
return out -> {
|
||||||
|
// 创建可写入的字节通道
|
||||||
|
try(WritableByteChannel channel = Channels.newChannel(out)){
|
||||||
|
// 订阅数据
|
||||||
|
publisher.subscribe(byteBuffer -> {
|
||||||
|
while (byteBuffer.hasRemaining()) {
|
||||||
|
try {
|
||||||
|
channel.write(byteBuffer);
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).join();
|
||||||
}
|
}
|
||||||
responseStream.transferTo(out); // 阻塞调用线程 blocks the calling thread
|
};
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
throw new OssException("文件下载失败,错误信息:[" + e.getMessage() + "]");
|
throw new OssException("文件下载失败,错误信息:[" + e.getMessage() + "]");
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,15 @@
|
|||||||
|
package org.dromara.common.oss.core;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 写出订阅器
|
||||||
|
*
|
||||||
|
* @author 秋辞未寒
|
||||||
|
*/
|
||||||
|
@FunctionalInterface
|
||||||
|
public interface WriteOutSubscriber<T> {
|
||||||
|
|
||||||
|
void writeTo(T out) throws IOException;
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user