All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.github.liaochong.myexcel.core.DefaultStreamExcelBuilder Maven / Gradle / Ivy
/*
* Copyright 2017 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.liaochong.myexcel.core;
import com.github.liaochong.myexcel.core.container.Pair;
import com.github.liaochong.myexcel.core.parser.ParseConfig;
import com.github.liaochong.myexcel.core.parser.Table;
import com.github.liaochong.myexcel.core.parser.Tr;
import com.github.liaochong.myexcel.core.reflect.ClassFieldContainer;
import com.github.liaochong.myexcel.core.strategy.AutoWidthStrategy;
import com.github.liaochong.myexcel.core.strategy.WidthStrategy;
import com.github.liaochong.myexcel.core.templatehandler.TemplateHandler;
import com.github.liaochong.myexcel.utils.ReflectUtil;
import com.github.liaochong.myexcel.utils.TempFileOperator;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.slf4j.Logger;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.stream.Collectors;
/**
* @author liaochong
* @version 1.0
*/
public class DefaultStreamExcelBuilder extends AbstractSimpleExcelBuilder implements SimpleStreamExcelBuilder {
private static final Logger log = org.slf4j.LoggerFactory.getLogger(DefaultStreamExcelBuilder.class);
/**
* 设置需要渲染的数据的类类型
*/
private final Class dataType;
/**
* 流工厂
*/
private HtmlToExcelStreamFactory htmlToExcelStreamFactory;
/**
* workbook
*/
private Workbook workbook;
/**
* 待追加excel
*/
private Path excel;
/**
* 任务取消
*/
private volatile boolean cancel;
/**
* 分组
*/
private Class>[] groups;
/**
* 模板处理器
*/
private TemplateHandler templateHandler;
private final List> asyncAppendFutures = new LinkedList<>();
private final HtmlToExcelStreamFactory.HtmlToExcelStreamFactoryContext context = new HtmlToExcelStreamFactory.HtmlToExcelStreamFactoryContext();
private DefaultStreamExcelBuilder(Class dataType) {
this(dataType, (Workbook) null);
}
private DefaultStreamExcelBuilder(Class dataType, Workbook workbook) {
super(false);
this.dataType = dataType;
this.workbook = workbook;
configuration.setWidthStrategy(WidthStrategy.NO_AUTO);
this.isMapBuild = dataType == Map.class;
}
private DefaultStreamExcelBuilder(Class dataType, Path excel) {
super(false);
this.dataType = dataType;
this.excel = excel;
configuration.setWidthStrategy(WidthStrategy.NO_AUTO);
this.isMapBuild = dataType == Map.class;
}
/**
* 获取实例,设定需要渲染的数据的类类型
*
* @param dataType 数据的类类型
* @param T
* @return DefaultStreamExcelBuilder
*/
public static DefaultStreamExcelBuilder of(Class dataType) {
return new DefaultStreamExcelBuilder<>(dataType);
}
/**
* 获取实例,设定需要渲染的数据的类类型
*
* @param dataType 数据的类类型
* @param workbook workbook
* @param T
* @return DefaultStreamExcelBuilder
*/
public static DefaultStreamExcelBuilder of(Class dataType, Workbook workbook) {
return new DefaultStreamExcelBuilder<>(dataType, workbook);
}
/**
* 获取实例,设定需要渲染的数据的类类型
*
* @param dataType 数据的类类型
* @param excel excel
* @param T
* @return DefaultStreamExcelBuilder
*/
public static DefaultStreamExcelBuilder of(Class dataType, Path excel) {
return new DefaultStreamExcelBuilder<>(dataType, excel);
}
/**
* 获取实例,设定需要渲染的数据的类类型
*
* @param dataType 数据的类类型
* @param excelInputStream excelInputStream
* @param T
* @return DefaultStreamExcelBuilder
*/
public static DefaultStreamExcelBuilder of(Class dataType, InputStream excelInputStream) {
return of(dataType, TempFileOperator.convertToFile(excelInputStream));
}
/**
* 已过时,请使用of方法代替
* 4.0版本移除
*
* @return DefaultStreamExcelBuilder
*/
@Deprecated
public static DefaultStreamExcelBuilder getInstance() {
return new DefaultStreamExcelBuilder<>(Map.class);
}
/**
* 已过时,请使用of方法代替
* 4.0版本移除
*
* @param workbook 工作簿
* @return DefaultStreamExcelBuilder
*/
@Deprecated
public static DefaultStreamExcelBuilder getInstance(Workbook workbook) {
return new DefaultStreamExcelBuilder<>(Map.class, workbook);
}
public DefaultStreamExcelBuilder titles(List titles) {
this.titles = titles;
return this;
}
public DefaultStreamExcelBuilder sheetName(String sheetName) {
configuration.sheetName = sheetName;
return this;
}
public DefaultStreamExcelBuilder fieldDisplayOrder(List fieldDisplayOrder) {
this.fieldDisplayOrder = fieldDisplayOrder;
return this;
}
public DefaultStreamExcelBuilder workbookType(WorkbookType workbookType) {
if (workbook != null) {
throw new IllegalArgumentException("Workbook type confirmed, not modifiable");
}
configuration.workbookType = workbookType;
return this;
}
/**
* 设置为无样式
*
* @return DefaultStreamExcelBuilder
*/
public DefaultStreamExcelBuilder noStyle() {
this.styleParser.setNoStyle(true);
return this;
}
public DefaultStreamExcelBuilder widthStrategy(WidthStrategy widthStrategy) {
configuration.setWidthStrategy(widthStrategy);
return this;
}
@Deprecated
public DefaultStreamExcelBuilder autoWidthStrategy(AutoWidthStrategy autoWidthStrategy) {
configuration.setWidthStrategy(AutoWidthStrategy.map(autoWidthStrategy));
return this;
}
public DefaultStreamExcelBuilder fixedTitles() {
this.context.fixedTitles = true;
return this;
}
public DefaultStreamExcelBuilder widths(int... widths) {
for (int i = 0; i < widths.length; i++) {
customWidthMap.put(i, widths[i]);
}
return this;
}
public DefaultStreamExcelBuilder width(int columnIndex, int width) {
customWidthMap.put(columnIndex, width);
return this;
}
public DefaultStreamExcelBuilder hideColumns(int... columnIndexs) {
for (int columnIndex : columnIndexs) {
width(columnIndex, 0);
}
return this;
}
@Override
public DefaultStreamExcelBuilder threadPool(ExecutorService executorService) {
this.context.executorService = executorService;
return this;
}
@Override
public DefaultStreamExcelBuilder hasStyle() {
this.styleParser.setNoStyle(false);
return this;
}
@Override
public DefaultStreamExcelBuilder capacity(int capacity) {
if (capacity < 1) {
throw new IllegalArgumentException("Capacity must be greater than 0");
}
this.context.capacity = capacity;
return this;
}
@Override
public DefaultStreamExcelBuilder pathConsumer(Consumer pathConsumer) {
this.context.pathConsumer = pathConsumer;
return this;
}
@Override
public DefaultStreamExcelBuilder groups(Class>... groups) {
this.groups = groups;
return this;
}
public DefaultStreamExcelBuilder waitQueueSize(int waitQueueSize) {
this.context.trWaitQueue = new LinkedBlockingQueue<>(waitQueueSize);
return this;
}
@Deprecated
public DefaultStreamExcelBuilder globalStyle(String... styles) {
return style(styles);
}
public DefaultStreamExcelBuilder style(String... styles) {
this.styleParser.setNoStyle(false);
configuration.style = Arrays.stream(styles).collect(Collectors.toSet());
return this;
}
public DefaultStreamExcelBuilder templateHandler(Class extends TemplateHandler> templateHandlerClass) {
templateHandler = ReflectUtil.newInstance(templateHandlerClass);
return this;
}
public DefaultStreamExcelBuilder startSheet(Consumer startSheetConsumer) {
this.context.startSheetConsumer = startSheetConsumer;
return this;
}
public DefaultStreamExcelBuilder freezePane(FreezePane freezePane) {
this.context.freezePane = freezePane;
return this;
}
public DefaultStreamExcelBuilder titleRowHeight(int titleRowHeight) {
this.configuration.titleRowHeight = titleRowHeight;
return this;
}
public DefaultStreamExcelBuilder rowHeight(int rowHeight) {
this.configuration.rowHeight = rowHeight;
return this;
}
public DefaultStreamExcelBuilder binding(Object... applicationBeans) {
this.binding(new HashSet<>(Arrays.asList(applicationBeans)));
return this;
}
public DefaultStreamExcelBuilder binding(Set applicationBeans) {
if (applicationBeans.isEmpty()) {
log.warn("binding application beans failure");
return this;
}
Map, Object> map = applicationBeans.stream().collect(Collectors.toMap(Object::getClass, b -> b));
this.configuration.applicationBeans = map;
return this;
}
public DefaultStreamExcelBuilder autoMerge() {
this.configuration.autoMerge = true;
return this;
}
/**
* 流式构建启动,包含一些初始化操作
*
* @return DefaultExcelBuilder
*/
@Override
public DefaultStreamExcelBuilder start() {
if (isMapBuild) {
this.parseGlobalStyle();
} else {
ClassFieldContainer classFieldContainer = ReflectUtil.getAllFieldsOfClass(dataType);
filteredFields = getFilteredFields(classFieldContainer, groups);
}
context.styleParser = styleParser;
htmlToExcelStreamFactory = new HtmlToExcelStreamFactory(context);
htmlToExcelStreamFactory.widthStrategy(configuration.widthStrategy);
if (workbook == null) {
htmlToExcelStreamFactory.workbookType(configuration.workbookType);
}
Table table = this.createTable();
List head = this.createThead();
if (head != null) {
htmlToExcelStreamFactory.appendTitles(head);
}
htmlToExcelStreamFactory.start(table, workbook);
if (excel != null && Files.exists(excel)) {
log.info("start reading existing excel data.");
SaxExcelReader reader = SaxExcelReader.of(dataType)
.readAllSheet();
if (titleLevel > 0) {
reader.rowFilter(row -> row.getRowNum() > titleLevel - 1);
}
reader.readThen(excel.toFile(), (Consumer) this::append);
}
return this;
}
@Override
public void append(List dataList) {
if (cancel) {
log.info("Canceled build task");
return;
}
if (dataList == null || dataList.isEmpty()) {
return;
}
for (T data : dataList) {
this.append(data);
}
}
@SuppressWarnings("unchecked")
@Override
public void append(T data) {
if (cancel) {
log.info("Canceled build task");
return;
}
if (data == null) {
return;
}
if (isMapBuild) {
List> contents = assemblingMapContents((Map) data);
this.appendTr(contents);
return;
}
if (hasMultiColumn) {
List>> contents = this.getMultiRenderContent(data, filteredFields);
for (List> content : contents) {
this.appendTr(content);
}
} else {
List> contents = this.getOriginalRenderContent(data, filteredFields);
this.appendTr(contents);
}
}
private void appendTr(List> contents) {
Tr tr = this.createTr(contents);
htmlToExcelStreamFactory.append(tr);
}
public void append(String templateFilePath, Map renderData) {
templateHandler.classpathTemplate(templateFilePath);
this.doAppend(renderData);
}
public void append(String templateDir, String templateFileName, Map renderData) {
templateHandler.fileTemplate(templateDir, templateFileName);
this.doAppend(renderData);
}
public void asyncAppend(ListSupplier supplier) {
CompletableFuture future;
if (this.context.executorService == null) {
future = CompletableFuture.runAsync(() -> {
this.append(supplier.getAsList());
});
} else {
future = CompletableFuture.runAsync(() -> {
this.append(supplier.getAsList());
}, this.context.executorService);
}
synchronized (this) {
asyncAppendFutures.add(future);
}
}
public void asyncAppend(Supplier supplier) {
CompletableFuture future;
if (this.context.executorService == null) {
future = CompletableFuture.runAsync(() -> {
this.append(supplier.get());
});
} else {
future = CompletableFuture.runAsync(() -> {
this.append(supplier.get());
}, this.context.executorService);
}
synchronized (this) {
asyncAppendFutures.add(future);
}
}
@Override
public Workbook build() {
joinAsyncAppendFutures();
return htmlToExcelStreamFactory.build();
}
@Override
public List buildAsPaths() {
joinAsyncAppendFutures();
return htmlToExcelStreamFactory.buildAsPaths();
}
@Override
public Path buildAsZip(String fileName) {
joinAsyncAppendFutures();
return htmlToExcelStreamFactory.buildAsZip(fileName);
}
@Override
public void close() throws IOException {
if (htmlToExcelStreamFactory != null) {
htmlToExcelStreamFactory.clear();
htmlToExcelStreamFactory = null;
}
}
public void cancel() {
cancel = true;
htmlToExcelStreamFactory.cancel();
}
/**
* clear方法仅可在异常情况下调用
*/
public void clear() {
htmlToExcelStreamFactory.clear();
}
private void doAppend(Map renderData) {
List tables;
try {
tables = templateHandler.render(renderData, new ParseConfig(configuration.widthStrategy));
} catch (Exception e) {
throw new RuntimeException(e);
}
if (tables == null || tables.isEmpty()) {
return;
}
for (Table table : tables) {
table.trList.forEach(htmlToExcelStreamFactory::append);
}
}
private void joinAsyncAppendFutures() {
if (!asyncAppendFutures.isEmpty()) {
asyncAppendFutures.forEach(CompletableFuture::join);
}
}
}