org.sejda.sambox.output.PDFBodyWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sambox Show documentation
Show all versions of sambox Show documentation
An Apache PDFBox fork intended to be used as PDF processor for Sejda and PDFsam
related projects
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 org.sejda.sambox.output;
import static java.util.Objects.nonNull;
import static java.util.Optional.ofNullable;
import static org.sejda.commons.util.RequireUtils.requireNotNullArg;
import static org.sejda.commons.util.RequireUtils.requireState;
import java.io.Closeable;
import java.io.IOException;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.Queue;
import org.sejda.sambox.cos.COSArray;
import org.sejda.sambox.cos.COSBase;
import org.sejda.sambox.cos.COSDictionary;
import org.sejda.sambox.cos.COSDocument;
import org.sejda.sambox.cos.COSName;
import org.sejda.sambox.cos.COSNull;
import org.sejda.sambox.cos.COSStream;
import org.sejda.sambox.cos.COSVisitor;
import org.sejda.sambox.cos.IndirectCOSObject;
import org.sejda.sambox.cos.IndirectCOSObjectReference;
import org.sejda.sambox.input.ExistingIndirectCOSObject;
import org.sejda.sambox.input.IncrementablePDDocument;
/**
* Base component providing methods to write the body of a pdf document. This implementation starts from the document
* trailer and visits the whole document graph updating the {@link PDFWriteContext}. An
* {@link IndirectCOSObjectReference} is created by the context for each {@link COSDictionary} and
* {@link ExistingIndirectCOSObject}, if not previously created. Once all the values of a {@link COSDictionary} or
* {@link COSArray} have been explored, the {@link COSDictionary}/ {@link COSArray} is written as a pdf object, this
* allows an async implementation to write objects while the body writer is still performing its algorithm.
*
* @author Andrea Vacondio
*/
class PDFBodyWriter implements COSVisitor, Closeable
{
private Queue stack = new LinkedList<>();
private PDFWriteContext context;
private boolean open = true;
PDFBodyObjectsWriter objectsWriter;
PDFBodyWriter(PDFWriteContext context, PDFBodyObjectsWriter objectsWriter)
{
requireNotNullArg(context, "Write context cannot be null");
requireNotNullArg(objectsWriter, "Objects writer cannot be null");
this.context = context;
this.objectsWriter = objectsWriter;
}
PDFWriteContext context()
{
return context;
}
/**
* Writes the given document
*
* @param document
* @throws IOException
*/
public void write(IncrementablePDDocument document) throws IOException
{
requireState(open, "The writer is closed");
document.newIndirects().forEach(o -> stack.add(context.getOrCreateIndirectReferenceFor(o)));
document.trailer().getCOSObject().accept(this);
stack.addAll(document.replacements());
startWriting();
}
/**
* Writes the body of the given document
*
* @param document
* @throws IOException
*/
public void write(COSDocument document) throws IOException
{
requireState(open, "The writer is closed");
document.accept(this);
}
@Override
public void visit(COSDocument document) throws IOException
{
for (COSName k : Arrays.asList(COSName.ROOT, COSName.ENCRYPT))
{
ofNullable(document.getTrailer().getCOSObject().getItem(k)).ifPresent(
r -> stack.add(context.createNonStorableInObjectStreamIndirectReferenceFor(r)));
}
ofNullable(document.getTrailer().getCOSObject().getItem(COSName.INFO))
.ifPresent(this::createIndirectReferenceIfNeededFor);
startWriting();
}
/**
* Starts writing whatever has been stacked
*
* @throws IOException
*/
void startWriting() throws IOException
{
while (!stack.isEmpty())
{
IndirectCOSObjectReference item = stack.poll();
item.getCOSObject().accept(this);
objectsWriter.writeObject(item);
}
objectsWriter.onWriteCompletion();
}
@Override
public void visit(COSArray array) throws IOException
{
for (int i = 0; i < array.size(); i++)
{
COSBase item = ofNullable(array.get(i)).orElse(COSNull.NULL);
if (shouldBeIndirect(item))
{
onPotentialIndirectObject(item);
}
else
{
item.accept(this);
}
}
}
@Override
public void visit(COSDictionary value) throws IOException
{
for (COSName key : value.keySet())
{
COSBase item = ofNullable(value.getItem(key)).orElse(COSNull.NULL);
if (shouldBeIndirect(item) || COSName.THREADS.equals(key))
{
onPotentialIndirectObject(item);
}
else
{
item.accept(this);
}
}
}
@Override
public void visit(COSStream value) throws IOException
{
value.removeItem(COSName.LENGTH);
if (context.hasWriteOption(WriteOption.COMPRESS_STREAMS))
{
value.addCompression();
}
// with encrypted docs we write length as an indirect ref
value.indirectLength(nonNull(context.encryptor()));
if (value.indirectLength())
{
IndirectCOSObjectReference length = context
.createNonStorableInObjectStreamIndirectReference();
value.setItem(COSName.LENGTH, length);
stack.add(length);
}
this.visit((COSDictionary) value);
}
private boolean shouldBeIndirect(COSBase item)
{
return (item instanceof ExistingIndirectCOSObject || item instanceof COSDictionary
|| item instanceof IndirectCOSObject);
}
/**
* Called during the visit on the objects graph, when a potential indirect object is met. Default implementation
* creates a new indirect reference for it.
*
* @param item
* @throws IOException
*/
public void onPotentialIndirectObject(COSBase item) throws IOException
{
createIndirectReferenceIfNeededFor(item);
}
final void createIndirectReferenceIfNeededFor(COSBase item)
{
if (!context.hasIndirectReferenceFor(item))
{
stack.add(context.createIndirectReferenceFor(item));
}
}
@Override
public void close() throws IOException
{
objectsWriter.close();
context = null;
this.open = false;
}
}