pro.verron.officestamper.core.DocxStamper Maven / Gradle / Ivy
Show all versions of engine Show documentation
package pro.verron.officestamper.core;
import org.docx4j.openpackaging.exceptions.Docx4JException;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
import org.docx4j.openpackaging.parts.relationships.Namespaces;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.expression.spel.SpelParserConfiguration;
import org.springframework.expression.spel.standard.SpelExpressionParser;
import org.springframework.expression.spel.support.StandardEvaluationContext;
import org.springframework.lang.NonNull;
import pro.verron.officestamper.api.*;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.function.Function;
/**
* The DocxStamper class is an implementation of the {@link OfficeStamper}
* interface that is used to stamp DOCX templates with a context object and
* write the result to an output stream.
*
* @author Tom Hombergs
* @author Joseph Verron
* @version ${version}
* @since 1.0.0
*/
public class DocxStamper
implements OfficeStamper {
private static final Logger logger = LoggerFactory.getLogger(DocxStamper.class);
private final List preprocessors;
private final PlaceholderReplacer placeholderReplacer;
private final Function commentProcessorRegistrySupplier;
/**
* Creates a new DocxStamper with the given configuration.
*
* @param configuration the configuration to use for this DocxStamper.
*/
public DocxStamper(OfficeStamperConfiguration configuration) {
this(
configuration.getLineBreakPlaceholder(),
configuration.getEvaluationContextConfigurer(),
configuration.getExpressionFunctions(),
configuration.getResolvers(),
configuration.getCommentProcessors(),
configuration.getPreprocessors(),
configuration.getSpelParserConfiguration(),
configuration.getExceptionResolver());
}
private DocxStamper(
@NonNull String lineBreakPlaceholder,
EvaluationContextConfigurer evaluationContextConfigurer,
Map, Object> expressionFunctions,
List resolvers,
Map, Function> configurationCommentProcessors,
List preprocessors,
SpelParserConfiguration spelParserConfiguration,
ExceptionResolver exceptionResolver
) {
var commentProcessors = new HashMap, Object>();
var methodResolver = new StandardMethodResolver(commentProcessors, expressionFunctions);
var evaluationContext = new StandardEvaluationContext();
evaluationContextConfigurer.configureEvaluationContext(evaluationContext);
evaluationContext.addMethodResolver(methodResolver);
var expressionParser = new SpelExpressionParser(spelParserConfiguration);
var expressionResolver = new ExpressionResolver(evaluationContext, expressionParser);
var typeResolverRegistry = new ObjectResolverRegistry(resolvers);
this.placeholderReplacer = new PlaceholderReplacer(typeResolverRegistry,
expressionResolver,
Placeholders.raw(lineBreakPlaceholder),
exceptionResolver);
for (var entry : configurationCommentProcessors.entrySet()) {
Class> aClass = entry.getKey();
Function processorFunction = entry.getValue();
CommentProcessor value = processorFunction.apply(placeholderReplacer);
commentProcessors.put(aClass, value);
}
this.commentProcessorRegistrySupplier = source -> new CommentProcessorRegistry(source,
expressionResolver,
commentProcessors,
exceptionResolver);
this.preprocessors = new ArrayList<>(preprocessors);
}
/**
* {@inheritDoc}
*
*
* Reads in a .docx template and "stamps" it into the given OutputStream, using the specified context object to
* fill out any expressions it finds.
*
*
* In the .docx template you have the following options to influence the "stamping" process:
*
*
* - Use expressions like ${name} or ${person.isOlderThan(18)} in the template's text. These expressions are
* resolved
* against the contextRoot object you pass into this method and are replaced by the results.
* - Use comments within the .docx template to mark certain paragraphs to be manipulated.
*
*
* Within comments, you can put expressions in which you can use the following methods by default:
*
*
* - displayParagraphIf(boolean) to conditionally display paragraphs or not
* - displayTableRowIf(boolean) to conditionally display table rows or not
* - displayTableIf(boolean) to conditionally display whole tables or not
* - repeatTableRow(List<Object>) to create a new table row for each object in the list and
* resolve expressions
* within the table cells against one of the objects within the list.
*
*
* If you need a wider vocabulary of methods available in the comments, you can create your own ICommentProcessor
* and register it via {@link OfficeStamperConfiguration#addCommentProcessor(Class, Function)}.
*
*/
public void stamp(
InputStream template, Object contextRoot, OutputStream out
) {
try {
WordprocessingMLPackage document = WordprocessingMLPackage.load(template);
stamp(document, contextRoot, out);
} catch (Docx4JException e) {
throw new OfficeStamperException(e);
}
}
/**
* {@inheritDoc}
*
* Same as {@link #stamp(InputStream, Object, OutputStream)} except that you
* may pass in a DOCX4J document as a template instead
* of an InputStream.
*/
@Override public void stamp(
WordprocessingMLPackage document, Object contextRoot, OutputStream out
) {
try {
var source = new TextualDocxPart(document);
preprocess(document);
processComments(source, contextRoot);
replaceExpressions(source, contextRoot);
document.save(out);
} catch (Docx4JException e) {
throw new OfficeStamperException(e);
}
}
private void preprocess(WordprocessingMLPackage document) {
for (PreProcessor preprocessor : preprocessors) {
preprocessor.process(document);
}
}
private void processComments(
DocxPart document,
Object contextObject
) {
document.streamParts(Namespaces.HEADER)
.forEach(header -> runProcessors(header, contextObject));
runProcessors(document, contextObject);
document.streamParts(Namespaces.FOOTER)
.forEach(footer -> runProcessors(footer, contextObject));
}
private void replaceExpressions(
DocxPart document,
Object contextObject
) {
document.streamParts(Namespaces.HEADER)
.forEach(s -> placeholderReplacer.resolveExpressions(s, contextObject));
placeholderReplacer.resolveExpressions(document, contextObject);
document.streamParts(Namespaces.FOOTER)
.forEach(s -> placeholderReplacer.resolveExpressions(s, contextObject));
}
private void runProcessors(DocxPart source, Object contextObject) {
var processors = commentProcessorRegistrySupplier.apply(source);
processors.runProcessors(contextObject);
}
}